:root {
            --color-gold: #d4af37;
            --color-gold-light: #f0d98d;
            --color-dark: #0a0a0a;
            --color-dark-light: #1a1a1a;
            --color-dark-lighter: #2a2a2a;
            --font-family-display: 'Playfair Display', serif;
            --font-family-body: 'Poppins', sans-serif;
        }
        
        * {
            font-family: var(--font-family-body);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-family-display);
        }
        
        /* Custom Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .animate-fade-in {
            animation: fadeIn 1s ease-out forwards;
        }
        
        .animate-scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }
        
        /* Image Overlay Effect */
        .image-overlay {
            position: relative;
            overflow: hidden;
        }
        
        .image-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .image-overlay:hover::before {
            opacity: 1;
        }
        
        .image-overlay img {
            transition: transform 0.5s ease;
        }
        
        .image-overlay:hover img {
            transform: scale(1.1);
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
        }
        
        /* Masonry Grid */
        .masonry {
            column-count: 1;
            column-gap: 1.5rem;
        }
        
        @media (min-width: 640px) {
            .masonry {
                column-count: 2;
            }
        }
        
        @media (min-width: 1024px) {
            .masonry {
                column-count: 3;
            }
        }
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
        }
        
        /* Gold Accent Line */
        .gold-line {
            width: 60px;
            height: 3px;
            background: var(--color-gold);
            margin-top: 0.5rem;
        }