:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #111111;
    --text-gold: #c5a059;
    --text-white: #f0f0f0;
    --text-muted: #888888;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 300;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* mix-blend-mode moved to children to avoid transparent mobile menu */
    color: #fff;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    mix-blend-mode: difference;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    mix-blend-mode: difference;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--text-gold);
}

.btn-reserv {
    border: 1px solid #fff;
    padding: 8px 25px;
}

.btn-reserv:hover {
    background: #fff;
    color: #000;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    mix-blend-mode: difference;
}

.menu-toggle .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.sub-heading {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-gold);
}

.main-heading {
    font-size: 5rem;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: var(--text-gold);
    color: #000;
}

/* About */
.about-section {
    padding: 120px 50px;
    background-color: var(--bg-darker);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-img {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--text-gold);
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.signature {
    width: 150px;
    opacity: 0.7;
}

/* Menu */
.menu-section {
    padding: 120px 20px;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: #fff;
}

.separator {
    font-size: 2rem;
    color: var(--text-gold);
    margin-top: 10px;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.menu-category {
    flex: 1;
    min-width: 350px;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--text-gold);
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 20px;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    margin-bottom: 40px;
}

.dish-name {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.price {
    color: var(--text-gold);
}

.dish-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.center-btn {
    text-align: center;
    margin-top: 60px;
}

.btn-link {
    border-bottom: 1px solid var(--text-gold);
    color: var(--text-gold);
    padding-bottom: 5px;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Gallery - Horizontal Scroll or Grid */
.gallery-section {
    overflow: hidden;
    padding: 0;
}

.gallery-track {
    display: flex;
    width: 100%;
}

.gallery-img {
    flex: 1;
    height: 400px;
    min-width: 25%;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(30%);
}

.gallery-img:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Reservations */
.reservations-section {
    padding: 120px 20px;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.reservations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.reservation-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.95);
    padding: 60px;
    border: 1px solid var(--text-gold);
    text-align: center;
}

.res-content h2 {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 20px;
}

.res-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.res-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--text-gold);
}

.btn-submit {
    padding: 15px;
    background-color: var(--text-gold);
    color: #000;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #fff;
}

/* Footer */
.main-footer {
    background-color: #0d0d0d;
    padding: 80px 50px 20px;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--text-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.socials a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.socials a:hover {
    color: var(--text-gold);
}

.footer-credit {
    text-align: center;
    font-size: 0.85rem;
    color: #444;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-credit a {
    color: var(--text-gold);
}

/* Responsive */
/* Responsive & Animations */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        /* Animation Base State - Fade In Center */
        opacity: 0;
        transition: opacity 0.5s ease;
        mix-blend-mode: normal;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.85);
        /* Much darker background for contrast */
        backdrop-filter: blur(8px);
        padding: 12px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        /* Higher contrast border */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        /* Drop shadow to separate from bg */
        margin-right: 15px;
        /* Ensure spacing from edge */
    }

    /* Elegant Burger Animation */
    .menu-toggle .line {
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .menu-toggle.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--text-gold);
    }

    .menu-toggle.active .line:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--text-gold);
    }

    .main-heading {
        font-size: 3rem;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-img {
        height: 300px;
        width: 100%;
    }

    .menu-grid {
        flex-direction: column;
        gap: 50px;
    }

    .gallery-track {
        flex-wrap: wrap;
    }

    .gallery-img {
        min-width: 50%;
        height: 250px;
    }

    .reservation-box {
        padding: 30px;
    }
}