/* ==========================================================================
   COMMON STYLES
   Shared across all pages: index, story, menu, gift, contact,
   experience, reservations, dish-detail, 404
   ========================================================================== */

/* --- CSS Variables (Brand Colors) --- */
:root {
    --gold: #C5A059;
    --dark-green: #050805;
    --forest: #1B3022;
    --cream: #F5F5F0;
}

/* --- Base Body --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-green);
    color: var(--cream);
    scroll-behavior: smooth;
}

/* --- Typography --- */
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* --- Custom Selection Color --- */
::selection {
    background: var(--gold);
    color: black;
}

/* ==========================================================================
   ANIMATIONS
   Used on: index, story, menu, gift, contact, experience,
   reservations, dish-detail
   ========================================================================== */

/* --- Slow Zoom (hero background images) --- */
@keyframes slow-zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.animate-slow-zoom {
    animation: slow-zoom 20s infinite alternate ease-in-out;
}

/* --- Fade In Up (scroll reveal elements) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* --- Animation Delays --- */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ==========================================================================
   NAVIGATION
   Used on: index, story, menu, gift, contact, experience,
   reservations, dish-detail
   ========================================================================== */

/* --- Sticky Nav Scroll State --- */
nav.scrolled {
    background-color: rgba(5, 8, 5, 0.95);
    backdrop-filter: blur(8px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- Mobile Menu Slide-in --- */
#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.hidden-menu {
    transform: translateX(100%);
}

/* ==========================================================================
   SCROLLBAR
   Used on: index, story, menu, gift, contact, experience,
   reservations, dish-detail
   ========================================================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-green);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ==========================================================================
   FORM INPUT (shared component)
   Used on: contact, reservations
   ========================================================================== */
.form-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}
