/* ============================================================
   Sentez — à la carte food menu (mobile-first, accessible)
   Used by menu.php (EN) and menu-tr.php (TR)
   ============================================================ */
.menu-page {
    --m-ink: #14342b;      /* dish names / section titles */
    --m-navy: #0c2340;     /* brand accent / active chip   */
    --m-muted: #8a877b;    /* hints / allergen icons       */
    --m-desc: #6f6e63;     /* descriptions                 */
    --m-line: #e4e2d8;     /* hairlines / dotted dividers  */
    --m-soft: #f3f1ea;     /* imageless banner band        */
    background: #ffffff;
    color: var(--m-ink);
    font-family: 'Montserrat', system-ui, sans-serif;
    padding-top: 0;
}

/* anchored jumps land below the sticky header + chip bar */
html { scroll-padding-top: calc(var(--site-header-h, 90px) + 64px); }

/* ---- imageless banner band (also clears the fixed site header) ---- */
.menu-banner {
    text-align: center;
    background: var(--m-soft);
    border-bottom: 1px solid var(--m-line);
    padding: calc(var(--site-header-h, 90px) + 42px) 20px 40px;
}
.menu-banner h1 {
    margin: 0;
    font-family: 'JavaCom', 'Caveat', serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    letter-spacing: 1px;
    color: var(--m-ink);
}

/* ---- sticky category chip bar ---- */
.menu-nav {
    position: sticky;
    top: var(--site-header-h, 90px);
    z-index: 30;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--m-line);
}
.menu-nav__inner {
    display: flex;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--m-line);
    color: #4b5b54;
    text-decoration: none;
    transition: background-color .2s, color .2s, border-color .2s;
}
.menu-nav a:hover { border-color: var(--m-navy); color: var(--m-navy); }
.menu-nav a.is-active { background: var(--m-navy); color: #fff; border-color: var(--m-navy); }
.menu-nav a:focus-visible { outline: 2px solid var(--m-navy); outline-offset: 2px; }

/* ---- sections ---- */
.menu-wrap { max-width: 1040px; margin: 0 auto; padding: 4px 20px 50px; }
.menu-section { padding-top: 42px; }
.menu-section__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 22px; }
.menu-section__head h2 {
    margin: 0;
    font-size: clamp(1.2rem, 3.6vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m-ink);
    white-space: nowrap;
}
.menu-section__head .rule { flex: 1; border-top: 1px dashed #cdcabd; }

/* ---- items ---- */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 22px 52px; }
@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; } }

.menu-item__name { font-size: 16px; font-weight: 600; color: var(--m-ink); line-height: 1.35; }
.menu-item__desc { font-size: 13px; color: var(--m-desc); line-height: 1.55; margin-top: 6px; }

/* per-dish allergen icons */
.menu-alg { display: inline-flex; gap: 7px; margin-left: 8px; vertical-align: middle; }
.menu-alg i { font-size: 12.5px; color: var(--m-muted); cursor: help; }

/* ---- allergen legend + note ---- */
.menu-legend {
    max-width: 1040px;
    margin: 36px auto 0;
    padding: 22px 20px 0;
    border-top: 1px solid var(--m-line);
}
.menu-legend h3 {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m-muted);
    font-weight: 600;
}
.menu-legend ul {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px;
}
@media (min-width: 768px) { .menu-legend ul { grid-template-columns: repeat(4, 1fr); } }
.menu-legend li { font-size: 12px; color: var(--m-desc); display: flex; align-items: center; gap: 9px; }
.menu-legend li i { font-size: 15px; color: var(--m-ink); width: 18px; text-align: center; }
.menu-note {
    max-width: 1040px;
    margin: 18px auto 0;
    padding: 0 20px;
    font-size: 12px;
    font-style: italic;
    color: var(--m-muted);
}

/* featured tasting-menu card on the menu page */
.tasting-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: min(1040px, calc(100% - 40px));
    margin: 20px auto 0;
    padding: 18px 24px;
    background: #14342b;
    color: #f3f1ea;
    border-radius: 14px;
    text-decoration: none;
    transition: background-color .2s;
}
.tasting-promo:hover { background: #0c2340; }
.tasting-promo__txt { display: flex; flex-direction: column; gap: 3px; }
.tasting-promo__eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #c9b98f; }
.tasting-promo__title { font-size: 18px; font-weight: 600; color: #f3f1ea; }
.tasting-promo__sub { font-size: 12px; color: rgba(243,241,234,.72); }
.tasting-promo i { font-size: 18px; color: #c9b98f; flex: 0 0 auto; }
