/* =========================
   BRAND VARIABLES
========================= */
:root {
    --primary: #b63a2b;      /* Teekha red */
    --dark: #1e1e1e;
    --light-bg: #f4f4f4;
    --card-bg: #ffffff;
    --muted: #777;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--light-bg);
    color: #333;
    line-height: 1.5;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #222;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 38px;
    object-fit: contain;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    display: none;
    cursor: pointer;
}

nav a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
    font-size: 15px;
}

nav a.active,
nav a:hover {
    color: #fff;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 14px 20px;
        border-top: 1px solid #333;
    }
}

/* =========================
   MENU HERO
========================= */
.menu-hero {
    text-align: center;
    padding: 70px 20px 80px;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url('/assets/images/interiors/hero.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.menu-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
}

.menu-hero p {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 26px;
}

/* =========================
   PRIMARY CTA BUTTON
========================= */
.order-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(182,58,43,0.45);
}

/* =========================
   OFFER + COMBO STRIP
========================= */
.offer-strip {
    background: #fff;
    padding: 24px 20px;
}

.offer-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(182,58,43,0.08),
        rgba(182,58,43,0.03)
    );
    border-left: 6px solid var(--primary);
    padding: 22px;
    border-radius: 16px;
}

/* GRID */
.offer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}

/* =========================
   LEFT: COMBOS
========================= */
.offer-combos h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark);
}

.offer-combos ul {
    list-style: none;
}

.offer-combos li {
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.5;
}

.combo-price {
    display: inline-block;
    margin-top: 3px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
}

.combo-item {
    display: grid;
    grid-template-columns: 1fr 44px; /* text | icon */
    align-items: center;
    column-gap: 12px;
    margin-bottom: 14px;
}


.combo-text {
    max-width: 70%;
    line-height: 1.4; 
}

.combo-order-btn {
    background: #c0392b;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.combo-order-btn:hover {
    background: #a93226;
}

.combo-wa-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    justify-self: center; /* key for grid */
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.combo-wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}



/* =========================
   RIGHT: OFFER DETAILS
========================= */

.offer-details {
    padding-left: 20px;
    border-left: 1px solid rgba(0,0,0,0.08);
}

.offer-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--dark);
}

.offer-time {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.offer-details p {
    font-size: 14px;
    margin-bottom: 6px;
}

.offer-sub {
    color: var(--primary);
    font-weight: 600;
}

.offer-conditions {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

.offer-contact {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.offer-trust {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.offer-trust p {
    font-size: 13.5px;
    color: #444;
    margin-bottom: 6px;
}

/* =========================
   MENU WRAPPER
========================= */
.menu-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

/* =========================
   MENU CATEGORY CARD
========================= */
.menu-category {
    background: var(--card-bg);
    margin-bottom: 30px;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.menu-category h2 {
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--dark);
}

/* =========================
   MENU ITEMS
========================= */
.menu-category ul {
    list-style: none;
}

.menu-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15.5px;
}

.menu-category li:last-child {
    border-bottom: none;
}

.menu-category li span:first-child {
    font-weight: 500;
    color: #333;
}

.menu-category li span:last-child {
    font-weight: 600;
    color: var(--primary);
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 14px;
    font-size: 13px;
}

/* =========================
   STICKY WHATSAPP CTA
========================= */
.sticky-order {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    z-index: 999;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-combos {
        border-bottom: 1px dashed #ddd;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .offer-combos li {
        padding-bottom: 10px;
        margin-bottom: 12px;
        border-bottom: 1px dashed rgba(0,0,0,0.08);
    }

    .offer-combos li:last-child {
        border-bottom: none;
    }

}

@media (max-width: 480px) {
    .menu-hero h1 {
        font-size: 30px;
    }

    .menu-category {
        padding: 20px;
    }
}
