/* Custom CSS Variables */
:root {
    --cream-beige: #f8f4f0;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --brown: #5d4037;
    --dark-brown: #3e2723;
}

/* Tailwind Custom Configuration */
tailwind.config = {
    theme: {
        extend: {
            colors: {
                'cream-beige': '#f8f4f0',
                'gold': '#d4af37',
                'gold-dark': '#b8941f',
                'brown': '#5d4037',
                'dark-brown': '#3e2723',
            },
            fontFamily: {
                'playfair': ['Playfair Display', 'serif'],
                'poppins': ['Poppins', 'sans-serif'],
            },
            animation: {
                'fade-in': 'fadeIn 0.8s ease-in-out',
                'slide-up': 'slideUp 0.6s ease-out',
                'scale-in': 'scaleIn 0.5s ease-out',
            }
        }
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream-beige);
    color: var(--brown);
}

.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    animation: scaleIn 0.3s ease-in-out;
}

/* Gallery Grid Animation */
.gallery-item {
    animation: fadeIn 0.6s ease-in-out;
}

/* Form Styles */
.form-input {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
