/* ========== GLOBAL ========== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #2A2222;
    font-family: 'Roboto', sans-serif;
    color: #F5F0F0;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(16, 16, 16, 0.95);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #F5F0F0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    color: #F4A73B;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #F4A73B;
    color: #2A2222;
}

.hamburger {
    font-size: 28px;
    cursor: pointer;
    color: #F4A73B;
    padding: 6px 10px;
    line-height: 1;
}


/* ========== SIDE MENU (RIGHT SIDE) ========== */
.side-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #1a1515;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 2000;
    border-left: 2px solid #3a2a2a;
    overflow-y: auto;
}

.side-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    color: #F4A73B;
    cursor: pointer;
    line-height: 1;
}

.side-menu a {
    color: #F4A73B;
    font-size: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #2a2020;
    transition: background 0.2s ease;
}

.side-menu a:hover {
    background: #241818;
}

.submenu-title {
    margin-top: 10px;
    padding: 12px 24px;
    color: #F5F0F0;
    font-size: 13px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-link {
    padding-left: 36px !important;
    font-size: 15px !important;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ========== HERO ========== */
.hero {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #00000099;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-sub {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #F5F0F0;
    line-height: 1.3;
}


/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #F4A73B;
    color: #201010;
}

.btn-secondary {
    border: 2px solid #F4A73B;
    color: #F4A73B;
    background: transparent;
}

.btn-primary:hover {
    background: #ffbb60;
}

.btn-secondary:hover {
    background: #F4A73B;
    color: #201010;
}


/* ========== SECTIONS ========== */
.section {
    padding: 70px 18px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #F5F0F0;
}


/* ========== SIGNATURE DISHES (3×2 GRID - SCROLLABLE) ========== */
.sig-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: auto;
    max-height: 700px;
    padding: 10px;
}

.sig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sig-card {
    background: #241515;
    border: 1px solid #3a2222;
    border-radius: 14px;
    padding: 18px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sig-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(244, 167, 59, 0.2);
}

.sig-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.sig-name {
    font-size: 18px;
    font-weight: 600;
    color: #F4A73B;
    margin: 0;
}


/* ========== ABOUT SECTION ========== */
.about {
    background: #221717;
    padding: 70px 18px;
    text-align: center;
}

.about-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    font-size: 17px;
    line-height: 1.7;
}


/* ========== FOOTER / INFO SECTION ========== */
.info-footer {
    padding: 60px 18px 40px;
    background: #241818;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #F4A73B;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #F5F0F0;
}

.footer-link {
    color: #F4A73B;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffbb60;
}

.map-box {
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #3a2222;
    font-size: 14px;
    color: #F5F0F0;
}

.footer-bottom p {
    margin: 8px 0;
}


/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {

    body {
        font-size: 16px;
    }

    .nav-brand {
        font-size: 14px;
    }

    .nav-logo {
        height: 32px;
    }

    .contact-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .hamburger {
        font-size: 24px;
    }

    .hero {
        height: 440px;
    }

    .hero-sub {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .section {
        padding: 50px 18px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    /* Signature dishes: 2 columns on mobile, scrollable */
    .sig-container {
        max-height: 600px;
    }

    .sig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sig-img {
        height: 160px;
    }

    .sig-name {
        font-size: 16px;
    }

    .about h2 {
        font-size: 26px;
    }

    .about p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-block {
        text-align: center;
    }

    .footer-block p {
        font-size: 14px;
    }

    .side-menu {
        width: 260px;
        right: -260px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 12px;
    }

    .contact-link {
        display: none;
    }

    .hero-sub {
        font-size: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    /* Single column on very small screens */
    .sig-grid {
        grid-template-columns: 1fr;
    }
}