/* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background-color: var(--forest-green);
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Back Button */
        .mobile-back-button {
            display: none;
            background: var(--sage-green);
            color: var(--white);
            padding: 8px 15px;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .mobile-back-button:hover {
            background: var(--forest-green);
        }

        .mobile-back-button .back-text {
            display: inline;
        }

        .mobile-back-button .back-arrow {
            display: none;
        }

        /* Gallery Hero Section */
        .gallery-hero {
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-brown) 100%);
            padding: 140px 0 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .gallery-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
            background-size: 60px 60px;
        }

        .gallery-hero-content {
            position: relative;
            z-index: 2;
        }

        .gallery-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--forest-green);
            font-weight: 300;
            letter-spacing: -1px;
        }

        .gallery-hero p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.3s ease;
            transform: scale(1.05);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
            color: var(--white);
            padding: 30px 20px 20px;
            transform: translateY(50px);
            transition: transform 0.3s ease;
            opacity: 0;
        }

        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-item-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--white);
        }

        .gallery-item-overlay p {
            font-size: 0.9rem;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Enhanced Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            position: relative;
            margin: auto;
            padding: 20px;
            width: 90%;
            max-width: 900px;
            top: 50%;
            transform: translateY(-50%);
        }

        .lightbox img {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            right: 25px;
            color: var(--white);
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .lightbox-close:hover {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .lightbox-caption {
            text-align: center;
            color: var(--white);
            padding: 20px 0;
            font-size: 1.1rem;
        }

        /* Mobile-specific lightbox improvements */
        @media (max-width: 768px) {
            .lightbox-content {
                padding: 5px;
                width: 100%;
                height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                top: 0;
                transform: none;
            }

            .lightbox img {
                max-width: 95vw;
                max-height: 85vh;
                width: auto;
                height: auto;
                object-fit: contain;
            }

            .lightbox-close {
                top: 20px;
                right: 20px;
                font-size: 30px;
                width: 45px;
                height: 45px;
                z-index: 2002;
            }

            .lightbox-caption {
                padding: 15px 10px;
                font-size: 1rem;
                max-width: 95vw;
            }
        }

        /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--sage-green);
            color: var(--white);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 40px;
        }

        .back-button:hover {
            background: var(--forest-green);
            transform: translateX(-5px);
        }

        /* Footer */
        footer {
            background: var(--forest-green);
            color: var(--white);
            text-align: center;
            padding: 10px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .social-links a {
            display: inline-block;
            width: 32px;
            height: 32px;
            transition: all 0.3s ease;
        }

        .social-links a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .social-links a:hover img {
            filter: brightness(0.8);
            transform: scale(1.1);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }

            .mobile-back-button {
                display: inline-flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                height: calc(100vh - 100px);
                background: var(--white);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                gap: 20px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                padding: 20px;
                font-size: 1.2rem;
                width: 100%;
                display: block;
            }

            .dropdown-content {
                position: static;
                display: block;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: var(--cream);
                margin-top: 10px;
                border-radius: 8px;
            }

            .dropdown-content::before {
                display: none;
            }

            nav {
                justify-content: space-between;
            }

            nav .container {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                margin: 0;
                order: 2;
            }

            .mobile-back-button {
                order: 1;
                padding: 10px 12px;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
            }

            .mobile-back-button .back-text {
                display: none;
            }

            .mobile-back-button .back-arrow {
                display: inline;
            }

            .mobile-menu-btn {
                order: 3;
            }

            .gallery-hero h1 {
                font-size: 2.2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .lightbox-content {
                padding: 10px;
            }

            .back-button {
                display: none;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }