* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f6f6;
    font-family: 'Afacad Flux', sans-serif;
    overflow-x: hidden;
}

/* ANIMATION */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= NAVBAR (EXACT SAME AS LOCATION PAGE) ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #d63a33;
    padding: 20px 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.logo:hover {
    transform: scale(1.08);
}

.navbar.scrolled .logo {
    height: 60px;
}

nav {
    display: flex;
    margin-left: 30px;
    flex: none;
}

.review-link {
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    position: relative;
    transition: 0.3s;
}

nav a:hover {
    color: #ffe0c2;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffe0c2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

nav .active::after {
    width: 100%;
}

.review-btn {
    background: white;
    color: #d63a33;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.review-btn:hover {
    box-shadow: 0 4px 15px rgba(255, 224, 194, 0.6),
                0 0 10px rgba(255, 224, 194, 0.8);
}

/* ================= TITLE (SAME AS LOCATION PAGE) ================= */
.title {
    text-align: center;
    margin: 50px 0;
}

.title h1 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-stretch: semi-condensed;
    font-size: 52px;
    color: #d63a33;
}

/* ================= MENU BODY (SCALED DOWN) ================= */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab {
    border: 2px solid #e58b3b;
    background: #e58b3b;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Afacad Flux', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab.active {
    background: transparent;
    color: #e58b3b;
}

.tab:hover {
    transform: translateY(-2px);
}

.menu-section {
    width: 78%;
    margin: 0 auto 45px;
}

.menu-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 18px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: white;
    border: 3px solid #e58b3b;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 145px;
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.menu-card img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-info {
    width: 60%;
    padding: 16px;
}

.menu-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f1f1f;
}

.menu-info p {
    font-size: 13px;
    line-height: 1.4;
    color: #444;
}

/* ================= FOOTER (EXACT SAME AS LOCATION PAGE) ================= */
.footer {
    background: linear-gradient(to right, #2b1e1e, #1a1414);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-socials img {
    width: 35px;
    height: auto;
    transition: 0.3s;
}

.footer-socials img:hover {
    transform: translateY(-5px) scale(1.05);
    opacity: 0.7;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.7;
}

/* ================= BACK TO TOP ================= */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d63a33;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: 0.3s;
}

#backToTop:hover {
    background: #b52d27;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-section {
        width: 85%;
    }
}

@media (max-width: 768px) {

    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo {
        height: 60px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #d63a33;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
        margin-left: 0;
    }

    nav.active {
        max-height: 300px;
    }

    nav a {
        margin: 15px 0;
        font-size: 14px;
    }

    .review-link {
        display: none;
    }

    .title h1 {
        font-size: 36px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-section {
        width: 90%;
    }

    .menu-card {
        min-height: 135px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-socials img {
        width: 30px;
    }

    #backToTop {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* IMAGE LIGHTBOX */
.clickable-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.clickable-img:hover {
    transform: scale(1.03);
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 20px;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    transform: scale(1.15);
    color: #ffe0c2;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 75%;
    }

    .close-modal {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}