:root {
    --burgundy: #800020;
    --burgundy-dark: #4a0012;
    --olive: #556B2F;
    --cream: #FFFDD0;
    --cream-light: #FFFEF2;
    --cream-dark: #F5F3E0;
    --charcoal: #1A1A1A;
    --gold: #D4AF37;
}

/* Base resets and Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Theme Utilities */
.bg-cream { background-color: var(--cream); }
.bg-cream-dark { background-color: var(--cream-dark); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-burgundy { background-color: var(--burgundy); }
.bg-burgundy-dark { background-color: var(--burgundy-dark); }
.text-burgundy { color: var(--burgundy); }
.text-olive { color: var(--olive); }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-cream-light { color: var(--cream-light); }
.border-gold { border-color: var(--gold); }

/* Navigation Styling */
nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

nav.scrolled .nav-link {
    color: var(--charcoal);
}

nav.scrolled .text-2xl {
    color: var(--burgundy);
}

nav.scrolled #music-toggle {
    border-color: rgba(0,0,0,0.1);
    color: var(--charcoal);
}

.nav-link {
    color: white;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--burgundy);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Animations */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Interaction Effects */
.cta-glow {
    position: relative;
    overflow: hidden;
}

.cta-glow:hover {
    box-shadow: 0 0 20px rgba(128, 0, 32, 0.4);
}

.menu-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.menu-card:hover h4 {
    color: var(--gold);
}

/* Accessibility: High contrast selections */
::selection {
    background-color: var(--gold);
    color: var(--charcoal);
}

/* Mobile Polish */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }
    
    h1 {
        font-size: 3.5rem !important;
    }
}

/* Specific button glow for dark backgrounds */
#menu .cta-glow:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

/* Parallax handling */
#hero-parallax {
    will-change: transform;
}
