/* CSS Variables */
:root {
    --color-bg-dark: #121212;
    --color-bg-panel: #1A1A1A;
    --color-bg-light: #F9F8F4;
    /* Warm Cream */

    --color-text-main: #F5F5F0;
    --color-text-dark: #2C2C2C;
    --color-text-muted: #A0A0A0;

    --color-accent: #D4AF37;
    /* Gold */
    --color-accent-hover: #F2C94C;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;

    --transition-speed: 0.4s;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.divider-gold,
.divider-center {
    height: 2px;
    background-color: var(--color-accent);
    margin: 20px 0;
    width: 60px;
}

.divider-center {
    margin: 20px auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-text-main);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    /* Align items vertically */
}

.nav-links a:not(.btn-reserve) {
    /* Specific style for text links */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:not(.btn-reserve):hover {
    opacity: 1;
    color: var(--color-accent);
}

.btn-reserve {
    border: 1px solid var(--color-accent);
    padding: 8px 20px;
    border-radius: 2px;
    color: var(--color-accent) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-reserve:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-dark) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-attachment: fixed;
    /* Parallaxish */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(18, 18, 18, 1));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.9);
}

.btn-main {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 15px 35px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 2px;
    transition: all 0.4s ease;
    /* Smooth transition for all properties */
    display: inline-block;
    /* Essential for transform */
    border: 2px solid var(--color-accent);
    /* Border to maintain size when swapping colors */
}

.btn-main:hover {
    background-color: #000;
    /* Black background */
    color: var(--color-accent);
    /* Gold text */
    transform: translateY(-4px);
    /* Taller lift */
    border-color: var(--color-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    /* Shadow for depth */
}

/* Story Section (Warm Dark) */
.section-story {
    background-color: #242220;
    /* Dark Warm Espresso */
    color: var(--color-text-main);
    padding: 100px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    color: rgba(245, 245, 240, 0.8);
    /* Light text for dark bg */
}

.story-image img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Experience / Menu Section (Dark) Reuse */
.section-dark,
.section-menu {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.section-menu {
    background-color: #151515;
    /* Slightly lighter dark for contrast */
}


.subtitle {
    margin-bottom: 60px;
    color: var(--color-accent);
    font-style: italic;
    font-family: var(--font-serif);
}

.reviews {
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--color-text-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    height: 100%;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item h3 {
    color: var(--color-text-main);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
}

/* Text Card Special Style */
.gallery-item.text-card {
    background-color: var(--color-bg-panel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    border: 1px solid #333;
}

.text-card p {
    color: var(--color-text-muted);
    margin: 20px 0;
}

.link-gold {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 80px 0 20px;
    text-align: center;
    color: var(--color-text-muted);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer h3 {
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.copyright {
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content-enhanced {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Menu Page Styles
   ========================================= */
.menu-page {
    background-color: #121212;
}

.navbar.sticky {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 40px;
    position: sticky;
    top: 0;
}

.menu-header {
    padding-top: 60px;
    padding-bottom: 40px;
}

.section-menu-list {
    padding-bottom: 100px;
}

.menu-category {
    margin-bottom: 80px;
    text-align: center;
}

.menu-category h2 {
    color: var(--color-accent);
    font-size: 2.5rem;
    font-weight: 700;
    /* Bold/Thick */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
    padding-bottom: 15px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    /* Large readable text */
}

.menu-item .price {
    color: var(--color-accent);
    font-weight: 700;
    /* Thick */
    font-family: var(--font-serif);
}

.menu-item .name {
    color: var(--color-text-main);
    font-weight: 400;
    font-family: var(--font-serif);
    text-transform: capitalize;
}

/* =========================================
   Enhanced Footer Styles
   ========================================= */
.footer-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Info takes less space than form */
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: left;
    padding: 0 20px;
}

.footer-col h3 {
    color: var(--color-accent);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.mt-2 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--color-accent);
}

/* Feedback Form */
.form-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input,
.feedback-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #222;
    border: 1px solid #444;
    color: var(--color-text-main);
    font-family: var(--font-sans);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.feedback-form textarea {
    resize: vertical;
}

.btn-submit {
    align-self: flex-start;
    padding: 12px 30px;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: transparent;
    /* Transparent initially for style */
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-submit:hover {
    background-color: var(--color-accent);
    color: #000 !important;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .footer-content-enhanced {
        text-align: center;
    }

    .btn-submit {
        width: 100%;
    }
}