/* ============================================================
   menu-section.css — Menu section on index.html
   Slightly darker than booking (#f5f0eb) → #ede7df
   ============================================================ */

.menu-section {
    background: #ede7df;
    padding: 100px var(--gutter);
    overflow-x: hidden;
    width: 100%;
}

.menu-section__inner {
    max-width: 900px;
    margin-inline: auto;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.menu-section__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c94b1a;
    margin-bottom: 1rem;
    text-align: center;
}

.menu-section__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #1c1410;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 4rem;
}

/* ── CATEGORY BLOCK ─────────────────────────────────────────── */
.menu-section__category {
    margin-bottom: 4rem;
}

.menu-section__category:last-child {
    margin-bottom: 0;
}

.menu-section__category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1c1410;
}

.menu-section__category-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1c1410;
    line-height: 1;
}

/* ── ITEMS GRID ─────────────────────────────────────────────── */
.menu-section__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-section__item {
    padding: 1.25rem 1.5rem 1.25rem 0;
    border-bottom: 1px solid rgba(28, 20, 16, 0.1);
}

.menu-section__item:nth-child(even) {
    padding-left: 1.5rem;
    padding-right: 0;
    border-left: 1px solid rgba(28, 20, 16, 0.1);
}

.menu-section__item-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.menu-section__item-name--orange { color: #c94b1a; }
.menu-section__item-name--black  { color: #1c1410; }
.menu-section__item-name--green  { color: #2a6b3a; }
.menu-section__item-name--red    { color: #c0161b; }

.menu-section__item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a2a22;
    opacity: 0.6;
    line-height: 1.6;
}

.menu-section__item-desc strong {
    color: #1c1410;
    opacity: 1;
    font-weight: 800;
}

/* ── BADGES ─────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    margin-left: 0.4rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.badge--vegan { background: #2a6b3a; color: white; }
.badge--veg   { background: #5a9e6a; color: white; }

/* ── ADD-ON ROW ─────────────────────────────────────────────── */
.menu-section__addon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c0161b;
}

/* ── NOTE ───────────────────────────────────────────────────── */
.menu-section__note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid rgba(28, 20, 16, 0.12);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #3a2a22;
    opacity: 0.55;
    font-style: italic;
    line-height: 1.8;
}

/* ── DIVIDER BETWEEN CATEGORIES ─────────────────────────────── */
.menu-section__divider {
    border: none;
    border-top: 1px dashed rgba(28, 20, 16, 0.2);
    margin: 4rem 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 640px) {
    .menu-section {
        padding: 60px var(--gutter);
    }

    .menu-section__items {
        grid-template-columns: 1fr;
    }

    .menu-section__item:nth-child(even) {
        padding-left: 0;
        border-left: none;
    }

    .menu-section__heading {
        margin-bottom: 2.5rem;
    }
}