/* Gallery Specific Styles */
        :root {
            --gold-primary: #D4AF37;
            --gold-secondary: #B8860B;
            --gold-light: #F5E7A1;
            --white-primary: #FFFFFF;
            --white-secondary: #F8F8F8;
            --text-dark: #333333;
            --text-light: #777777;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', 'Montserrat', 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white-secondary);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', 'Playfair Display', serif;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--gold-primary);
            color: var(--white-primary);
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: var(--gold-secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background: rgb(255, 255, 255);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--gold-primary);
        }
        
        .logo span {
            color: var(--text-dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--gold-primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--gold-primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Gallery Hero */
        .gallery-hero {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/gallery-bg.svg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: var(--white-primary);
            text-align: center;
            margin-top: 70px;
        }
        
        .gallery-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gallery-hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--white-primary);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .gallery-hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Gallery Filter */
        .gallery-filter {
            background: var(--white-primary);
            padding: 20px 0;
            position: sticky;
            top: 70px;
            z-index: 100;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .filter-btn {
            padding: 8px 25px;
            background: transparent;
            border: 2px solid var(--gold-primary);
            color: var(--gold-primary);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, 
        .filter-btn:hover {
            background: var(--gold-primary);
            color: var(--white-primary);
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            padding: 40px 0;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: var(--white-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold-primary);
            color: var(--white-primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Gallery Modal */
        .gallery-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .gallery-modal.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .modal-img {
            max-width: 100%;
            max-height: 80vh;
            border: 5px solid var(--white-primary);
            border-radius: 5px;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
        }
        
        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--white-primary);
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--gold-primary);
        }
        
        .modal-caption {
            color: var(--white-primary);
            text-align: center;
            margin-top: 20px;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white-primary);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            color: var(--gold-primary);
            margin-bottom: 15px;
        }
        
        .footer-links h3 {
            color: var(--gold-primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--white-primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--gold-primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .gallery-hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white-primary);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }
            
            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }
            
            nav ul li {
                margin: 0;
            }
            
            nav ul li a {
                display: block;
                padding: 15px 30px;
            }
            
            .gallery-hero {
                height: 50vh;
                padding-top: 90px;
                margin-bottom: 30px;
            }
            
            .gallery-filter {
                margin-top: 20px;
            }
            
            .gallery-hero h1 {
                font-size: 2.5rem;
            }
            
            .gallery-hero p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 250px;
            }
        }
