* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    overflow-x: hidden;
    background: #f5f5f5;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
}

.menu-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a3a52;
    color: white;
    border: none;
    padding: 12px 20px 12px 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.menu-btn:hover {
    background: #2a4a62;
}

.menu-btn::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: white;
    box-shadow: 0 -6px 0 white, 0 6px 0 white;
}

.logo-container {
    height: 45px;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 250px;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #1a3a52;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0,0,0,0.3);
}

.side-nav.active {
    left: 0;
}

.side-nav-content {
    padding: 100px 0 40px;
}

.nav-list {
    list-style: none;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-list a:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: #5cb85c;
    padding-left: 35px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 80px;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-text {
    color: white;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    padding: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Pause Button */
.pause-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pause-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.pause-btn.paused .pause-icon {
    display: none;
}

.pause-btn.paused .play-icon {
    display: block !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .logo-container {
        height: 40px;
    }
    
    .menu-btn {
        padding: 10px 16px 10px 44px;
        font-size: 12px;
    }
    
    .menu-btn::before {
        left: 15px;
        width: 18px;
    }
    
    .hero-carousel {
        margin-top: 70px;
        height: calc(100vh - 70px);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow.prev {
        left: 15px;
    }
    
    .carousel-arrow.next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 25px;
    }
    
    .pause-btn {
        bottom: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
    }
    
    .side-nav {
        width: 280px;
        left: -280px;
    }
}

@media (max-width: 480px) {
    .carousel-text {
        font-size: 1.5rem;
    }
    
    .nav-list a {
        font-size: 15px;
        padding: 16px 25px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Green Banner */
.green-banner {
    background: linear-gradient(135deg, #2d5f3f 0%, #4a8c5e 100%);
    padding: 30px 0;
    text-align: center;
}

.green-banner p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Welcome Section */
.welcome-section {
    background: #f4e4c1;
    padding: 80px 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.welcome-text p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Latest News Section */
.news-section {
    background: #2c3e50;
    padding: 80px 0;
}

.news-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 60px;
}

.read-more {
    color: #4a8c5e;
    font-weight: 600;
    margin: 0;
}

/* Pic of the Day Section */
.pic-of-day-section {
    background: #2c3e50;
    padding: 60px 0 0;
}

.pic-of-day-title {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
    margin-bottom: 40px;
}

.gold-text {
    color: #d4a574;
    font-weight: 400;
}

.pic-of-day-image {
    width: 100%;
    margin-top: 40px;
}

.pic-of-day-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: #2c3e50;
    padding: 60px 0 40px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact-info p {
    color: #b0b8c1;
    font-size: 15px;
    line-height: 1.8;
    margin: 5px 0;
}

.contact-info .phone {
    margin-top: 15px;
    font-size: 16px;
}

.contact-info a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.quick-links p {
    margin-bottom: 20px;
}

.quick-links a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.quick-links a:hover {
    color: white;
}

.search-box {
    display: flex;
    margin-top: 20px;
    border: 1px solid #4a5568;
    border-radius: 4px;
    overflow: hidden;
    background: #374151;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-box button {
    padding: 12px 20px;
    border: none;
    background: #4a5568;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #5a6578;
    color: white;
}

.facebook-embed {
    margin-bottom: 25px;
    background: #f4e4c1;
    padding: 10px;
    border-radius: 4px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4a8c5e;
}

/* Responsive Design for Content Sections */
@media (max-width: 968px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-content h3 {
        min-height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .facebook-embed iframe {
        width: 100% !important;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .news-section {
        padding: 60px 0;
    }
    
    .news-section h2 {
        font-size: 2rem;
    }
    
    .green-banner p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .welcome-text h2 {
        font-size: 1.8rem;
    }
    
    .welcome-text p {
        font-size: 15px;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .pic-of-day-title {
        font-size: 1.5rem;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .social-column {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

