/* --- Global Variables (Ultra-Premium Rustic Aesthetic Theme) --- */
:root {
    --bg-dark: #1c1917; /* Soft, warm dark stone gray/brown */
    --bg-panel: #292524; /* Muted espresso brown */
    --primary-accent: #bc9c6c; /* Antique gold / muted bronze */
    --primary-hover: #d1b99a; /* Soft beige / gold */
    --text-main: #f5f1e9; /* Aged parchment / off-white */
    --text-muted: #a8a29e; /* Warm desaturated gray */
    --border-color: #44403c; /* Softer, warm brown-gray */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    line-height: 1.8; /* Increased line height for a premium feel */
    overflow-x: hidden;
    animation: fadeIn 2s ease-in-out; /* Slower, more luxurious fade */
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, .logo { font-family: 'Merriweather', serif; font-weight: 700; }

a { text-decoration: none; color: inherit; transition: all 0.4s ease; }

/* --- Navigation (Floating Glass & Antique Gold) --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 5%; background: rgba(28, 25, 23, 0.9); /* See-through warm background */
    backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
    transition: all 0.4s ease;
}

.logo { font-size: 2rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--text-main); }
.logo span { color: var(--primary-accent); }

.nav-links { display: flex; gap: 40px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-accent); }

/* Premium Underline Hover Effect for Menu Tabs */
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 1px;
    display: block; margin-top: 5px; right: 0;
    background: var(--primary-accent); transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; background: var(--primary-accent); }

/* --- Buttons (Rustic Antique Finish) --- */
.btn-solid {
    background-color: var(--primary-accent); color: var(--bg-dark);
    padding: 14px 32px; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; border: none; cursor: pointer; font-weight: 700;
}
.btn-solid:hover { background-color: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(188, 156, 108, 0.1); }

.btn-outline {
    border: 1px solid var(--primary-accent); color: var(--primary-accent);
    padding: 14px 32px; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; display: inline-block; background-color: transparent;
}
.btn-outline:hover { background-color: var(--primary-accent); color: var(--bg-dark); }

/* --- Hero Section --- */
.hero {
    height: 95vh; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient from subtle darkness to deep espresso base */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(28,25,23,1));
}
.hero-content { position: relative; z-index: 10; max-width: 900px; padding: 0 20px; }
.hero h1 { font-size: 5.5rem; margin-bottom: 20px; letter-spacing: 5px; text-transform: uppercase; color: var(--text-main); line-height: 1.1; }
.hero p { font-size: 1.2rem; color: #ddd; margin-bottom: 40px; letter-spacing: 5px; text-transform: uppercase; font-weight: 300;}

/* --- Layouts & Typography --- */
.section-padding { padding: 120px 5%; max-width: 1400px; margin: 0 auto; }
.text-center { text-align: center; }
.section-title { font-size: 3.5rem; margin-bottom: 20px; color: var(--text-main); letter-spacing: 1px;}
.divider { width: 70px; height: 1px; background-color: var(--primary-accent); margin: 0 auto 50px; opacity: 0.6;}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-panel); border-radius: 4px; overflow: hidden;}
.feature-img { width: 100%; height: 100%; min-height: 550px; object-fit: cover; }
.feature-text { padding: 100px; display: flex; flex-direction: column; justify-content: center; }
.feature-text h3 { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary-accent); letter-spacing: 1px; }
.feature-text p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; }

/* --- Expanded Menu Styles (Rustic Menu Layout) --- */
.menu-container { max-width: 1000px; margin: 0 auto; }
.menu-category { margin-bottom: 100px; }
.menu-category h2 { font-size: 2.8rem; text-align: center; margin-bottom: 60px; color: var(--primary-accent); border-bottom: 1px solid var(--border-color); padding-bottom: 25px;}
.menu-item { margin-bottom: 40px; transition: all 0.3s ease; padding: 20px; border-radius: 4px; border: 1px solid transparent; }
.menu-item:hover { background-color: var(--bg-panel); transform: scale(1.02); border-color: var(--border-color); }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.menu-item-name { font-family: 'Merriweather', serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; color: var(--text-main); }
.menu-item-dots { flex-grow: 1; border-bottom: 1px dotted var(--text-muted); margin: 0 25px; opacity: 0.3; }
.menu-item-price { font-size: 1.4rem; font-weight: 700; color: var(--primary-accent); font-family: 'Merriweather', serif; }
.menu-item-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 90%; font-style: italic; letter-spacing: 0.5px; }

/* --- Photo Gallery Grid (Rustic Aesthetic) --- */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 15px; }
.photo-gallery img { width: 100%; height: 450px; object-fit: cover; border-radius: 2px; transition: transform 0.6s ease, filter 0.6s ease; filter: sepia(0.2) brightness(0.9); /* Adds a light warm tint */ }
.photo-gallery img:hover { transform: scale(1.04); filter: sepia(0) brightness(1.1); z-index: 10; position: relative; }

/* --- Private Dining Feature --- */
.private-dining {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
    padding: 110px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.private-dining > div:first-child {
    padding: clamp(34px, 5vw, 70px);
    border: 1px solid var(--border-color);
    background:
        linear-gradient(rgba(28,25,23,0.72), rgba(28,25,23,0.92)),
        url('https://images.unsplash.com/photo-1552566626-52f8b828add9?q=80&w=1400&auto=format&fit=crop') center/cover;
}
.private-dining .kicker {
    color: var(--primary-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.private-dining h2 {
    color: var(--text-main);
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 24px;
}
.private-dining p {
    color: var(--text-muted);
    max-width: 720px;
    font-size: 1.08rem;
}
.dining-proof {
    display: grid;
    gap: 12px;
}
.dining-proof div {
    display: grid;
    align-content: center;
    min-height: 145px;
    padding: 28px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
}
.dining-proof strong {
    color: var(--primary-accent);
    font-family: 'Merriweather', serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
}
.dining-proof span {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Footer (Warm Rustic Finish) --- */
footer { background-color: #111111; padding: 100px 5% 50px; border-top: 1px solid var(--border-color); text-align: center; }
.footer-content { max-width: 600px; margin: 0 auto 50px; }
.footer-content h2 { font-size: 2.8rem; margin-bottom: 25px; letter-spacing: 3px; color: var(--text-main); }
.footer-content p { color: var(--text-muted); margin-bottom: 15px; letter-spacing: 1px;}
.footer-bottom { padding-top: 40px; color: #555; font-size: 0.85rem; border-top: 1px solid var(--border-color); text-transform: uppercase; letter-spacing: 3px; font-weight: 700;}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    body {
        line-height: 1.65;
    }

    .navbar {
        position: relative;
        flex-wrap: wrap;
        gap: 14px;
        padding: 18px;
    }

    .logo {
        width: 100%;
        font-size: 1.45rem;
        letter-spacing: 2px;
        text-align: center;
    }

    .nav-links {
        order: 3;
        display: flex;
        width: 100%;
        gap: 8px;
        overflow-x: auto;
        padding: 2px 0;
        scrollbar-width: none;
        font-size: 0.72rem;
        letter-spacing: 1.1px;
    }

    .nav-links::-webkit-scrollbar { display: none; }

    .nav-links a {
        flex: 0 0 auto;
        padding: 9px 11px;
        background: var(--bg-panel);
        border: 1px solid var(--border-color);
    }

    .nav-links a::after { display: none; }

    .navbar > .btn-solid {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .hero {
        min-height: 640px;
        height: auto;
        padding: 70px 18px;
        align-items: flex-end;
        background-position: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(28,25,23,0.98));
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 0.86rem;
        letter-spacing: 2.4px;
        line-height: 1.7;
        margin-bottom: 26px;
    }

    .hero-content .btn-solid,
    .hero-content .btn-outline,
    footer .btn-solid {
        display: block;
        width: 100%;
        margin: 0 0 12px !important;
        text-align: center;
    }

    .section-padding {
        padding: 70px 18px;
    }

    .section-title {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .grid-2 {
        grid-template-columns: 1fr;
        border-radius: 0;
    }

    .private-dining {
        grid-template-columns: 1fr;
        padding: 70px 18px;
    }

    .feature-img {
        min-height: 320px;
        height: 320px;
    }

    .feature-text {
        padding: 34px 22px;
    }

    .feature-text h3,
    .menu-category h2,
    .footer-content h2 {
        font-size: clamp(1.9rem, 9vw, 2.4rem);
    }

    .feature-text p,
    .menu-item-desc {
        font-size: 1rem;
        max-width: none;
    }

    .menu-category {
        margin-bottom: 58px;
    }

    .menu-category h2 {
        margin-bottom: 30px;
        padding-bottom: 18px;
    }

    .menu-item {
        padding: 18px 0;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-item:hover {
        transform: none;
    }

    .menu-item-header {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .menu-item-dots {
        display: none;
    }

    .menu-item-name,
    .menu-item-price {
        font-size: 1.12rem;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .photo-gallery img {
        height: 290px;
    }

    footer {
        padding: 70px 20px 34px;
    }

    .footer-bottom {
        line-height: 1.6;
        letter-spacing: 1.5px;
    }
}

.hero {
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(188, 156, 108, 0.36);
    pointer-events: none;
}

.feature-img,
.photo-gallery img {
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.feature-text {
    position: relative;
}

.feature-text::before {
    content: "";
    width: 54px;
    height: 2px;
    margin-bottom: 26px;
    background: var(--primary-accent);
}

.menu-item {
    background-image: linear-gradient(90deg, rgba(188,156,108,0.06), transparent 42%);
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
    }

    .nav-links a {
        flex: 0 1 auto;
    }

    .hero::after {
        inset: 14px;
    }
}
