/* =============================================================
   CHOPSBELL — STYLES
   -------------------------------------------------------------
   This one file controls how every page looks.

   • Brand colours and fonts are set ONCE in section 2 below.
     Change a colour there and it updates across the whole site.
   • The site is built "mobile-first": the normal rules are for
     phones, and each "@media (min-width: …)" rule adjusts the
     layout for bigger screens (tablets, laptops).
   ============================================================= */


/* -------------------------------------------------------------
   1. FONTS  (the font files live in the /fonts folder)
      Anton   = the big, bold headline font
      Poppins = everything else
   ------------------------------------------------------------- */
@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}


/* -------------------------------------------------------------
   2. BRAND SETTINGS — colours, fonts and sizes used everywhere
   ------------------------------------------------------------- */
:root {
  --black: #0B0B0B;         /* page background */
  --black-2: #151515;       /* cards and panels */
  --black-3: #202020;       /* hover backgrounds */
  --line: #2C2C2C;          /* thin borders */
  --yellow: #F5C518;        /* brand yellow */
  --yellow-light: #FFD84A;  /* yellow when a button is hovered */
  --text: #F6F3EC;          /* main text: warm off-white */
  --muted: #BAB4A8;         /* softer text */
  --on-yellow: #0B0B0B;     /* text that sits on yellow */
  --whatsapp: #1DA851;      /* WhatsApp green (floating button) */

  --font-display: "Anton", Impact, "Arial Narrow", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 22px;           /* rounded corners on cards */
  --container: 1140px;      /* widest the content gets */
  --header-h: 68px;         /* height of the top bar */
}

@media (min-width: 1000px) {
  :root { --header-h: 80px; }
}


/* -------------------------------------------------------------
   3. BASICS
   ------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* leaves room for the sticky top bar when jumping to a section */
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.15; }
h1, h2 { text-wrap: balance; }   /* evens out line lengths so no word sits alone */
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

/* Keyboard focus: a clear ring so people using a keyboard can see where they are */
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.on-yellow :focus-visible { outline-color: var(--black); }

/* "Skip to content" link for keyboard users (hidden until focused) */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 300;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--on-yellow);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* The hidden box at the top of each page that stores all the icons */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }


/* -------------------------------------------------------------
   4. ICONS
   ------------------------------------------------------------- */
.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

/* Yellow rounded square that holds an icon */
.icon-badge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--yellow);
  color: var(--on-yellow);
}
.icon-badge .icon { width: 26px; height: 26px; }
.icon-badge--wa { background: var(--whatsapp); color: #fff; }


/* -------------------------------------------------------------
   5. LAYOUT HELPERS
   ------------------------------------------------------------- */
.container {
  width: min(100% - 32px, var(--container));   /* 16px gap on each side on phones */
  margin-inline: auto;
}

.section { padding: 72px 0; }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }

@media (min-width: 900px) {
  .section { padding: 104px 0; }
  .section-head { margin-bottom: 48px; }
}


/* -------------------------------------------------------------
   6. TEXT STYLES
   ------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.02;
  text-transform: uppercase;
}
h1.display { font-size: clamp(2.6rem, 11vw, 5.4rem); }
h2.display { font-size: clamp(2.1rem, 8.5vw, 3.9rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; font-weight: 700; }

.hl { color: var(--yellow); }                 /* yellow highlighted words */
.lead { font-size: 1.075rem; color: var(--muted); }
.lead:last-child { margin-bottom: 0; }

/* Yellow "brush-stroke" label, inspired by the printed Chopsbell menus */
.brush {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 24px 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--on-yellow);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60' preserveAspectRatio='none'%3E%3Cpath fill='%23F5C518' d='M8 7 70 3 150 6 220 2 292 6 286 13 298 19 288 26 297 33 287 40 296 47 285 53 220 58 150 55 76 58 10 55 16 48 4 42 13 34 3 27 12 20 2 13z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
/* Black version of the brush, for use on yellow backgrounds */
.brush--dark {
  color: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60' preserveAspectRatio='none'%3E%3Cpath fill='%230B0B0B' d='M8 7 70 3 150 6 220 2 292 6 286 13 298 19 288 26 297 33 287 40 296 47 285 53 220 58 150 55 76 58 10 55 16 48 4 42 13 34 3 27 12 20 2 13z'/%3E%3C/svg%3E");
}

/* Prices (used on both pages) */
.price {
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.per { color: var(--muted); font-size: .85em; font-weight: 400; }


/* -------------------------------------------------------------
   7. BUTTONS (all rounded)
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.35em; height: 1.35em; }

.btn--yellow { background: var(--yellow); color: var(--on-yellow); }
.btn--yellow:hover { background: var(--yellow-light); }

.btn--outline { border-color: var(--yellow); color: var(--text); }
.btn--outline:hover { background: var(--yellow); color: var(--on-yellow); }

/* for use on yellow backgrounds */
.btn--dark { background: var(--black); color: var(--yellow); }
.btn--dark:hover { background: #262626; }
.btn--outline-dark { border-color: var(--black); color: var(--black); }
.btn--outline-dark:hover { background: var(--black); color: var(--yellow); }

.btn--lg { min-height: 58px; padding-inline: 30px; font-size: 1.05rem; }
.btn--xl { min-height: 64px; padding-inline: 38px; font-size: 1.15rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
/* On phones, buttons stretch to full width so they are easy to tap */
.btn-row .btn { flex: 1 1 100%; }
@media (min-width: 560px) {
  .btn-row .btn { flex: 0 1 auto; }
}


/* -------------------------------------------------------------
   8. TOP BAR (sticky header + navigation)
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img {
  width: auto;
  height: 54px;
  /* if the logo file is ever missing, the word "Chopsbell" shows in yellow instead */
  color: var(--yellow);
  font-size: 1.3rem;
  font-weight: 700;
}

.header-actions { display: flex; align-items: center; gap: 8px; }

/* Round icon buttons (Instagram, ☰ menu) */
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.icon-btn:hover { color: var(--yellow); border-color: var(--yellow); }
.icon-btn .icon { width: 22px; height: 22px; }

/* The menu button shows ☰ when closed and ✕ when open */
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Phones: the links drop down under the top bar */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(0, 0, 0, .55);
}
.main-nav.is-open { display: block; }
.main-nav ul {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 8px 0 20px;
}
.main-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--yellow); }

/* Big screens: the links sit in the bar and the ☰ button hides */
@media (min-width: 1000px) {
  .brand img { height: 62px; }
  .nav-toggle { display: none; }
  .main-nav {
    display: block;
    position: static;
    margin-left: auto;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .main-nav ul { display: flex; gap: 2px; width: auto; padding: 0; }
  .main-nav a {
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    font-size: .95rem;
  }
  .main-nav a:hover { background: var(--black-3); }
}


/* -------------------------------------------------------------
   9. HERO (the big first section of the home page)
   ------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 56px;
  text-align: center;
  /* soft yellow glow + dotted texture, drawn with code (no images) */
  background-color: var(--black);
  background-image:
    radial-gradient(circle at 50% 16%, rgba(245, 197, 24, .20), transparent 55%),
    radial-gradient(rgba(245, 197, 24, .12) 1.3px, transparent 1.5px);
  background-size: auto, 22px 22px;
}
.hero-inner { display: grid; gap: 24px; align-items: center; }

.hero-logo {
  width: min(46vw, 200px);
  margin: 0 auto;
  filter: drop-shadow(0 12px 40px rgba(245, 197, 24, .18));
}

/* "Open daily" badge */
.status-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 197, 24, .45);
  border-radius: 999px;
  background: rgba(245, 197, 24, .08);
  color: var(--yellow);
  font-size: .95rem;
  font-weight: 600;
}
.status-pill > span { display: inline-flex; align-items: center; gap: 8px; }

/* Live "Open now / Closed now" label (filled in by js/main.js) */
.open-now { color: var(--text); }
.open-now::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF6B5B;
}
.open-now.is-open::before {
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .2);
}

.hero h1 { margin-bottom: 18px; }
.hero .lead { max-width: 560px; margin-inline: auto; }
.hero .btn-row { justify-content: center; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .95rem;
}
.hero-tags li { display: inline-flex; align-items: center; gap: 8px; }
.hero-tags .icon { color: var(--yellow); }

@media (min-width: 900px) {
  .hero {
    padding: 72px 0 96px;
    text-align: left;
    background-image:
      radial-gradient(circle at 78% 45%, rgba(245, 197, 24, .22), transparent 42%),
      radial-gradient(rgba(245, 197, 24, .12) 1.3px, transparent 1.5px);
  }
  .hero-inner { grid-template-columns: 1.15fr .85fr; gap: 56px; }
  .hero-logo-wrap { order: 2; }
  .hero-logo { width: min(100%, 400px); }
  .hero .lead { margin-inline: 0; }
  .hero .btn-row,
  .hero-tags { justify-content: flex-start; }
}


/* -------------------------------------------------------------
   10. MOVING TICKER STRIP (under the hero)
   ------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--on-yellow);
  border-block: 3px solid var(--black);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span::after { content: "•"; margin: 0 20px; }

@keyframes ticker {
  to { transform: translateX(-50%); }
}


/* -------------------------------------------------------------
   11. ABOUT
   ------------------------------------------------------------- */
.about-grid { display: grid; gap: 40px; }
.about-story p { color: var(--muted); font-size: 1.05rem; }
.about-story .intro { color: var(--text); font-size: 1.15rem; }

.features { display: grid; gap: 14px; }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature h3 { margin-bottom: 4px; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
}


/* -------------------------------------------------------------
   12. BREAKFAST (the bright yellow section)
   ------------------------------------------------------------- */
.on-yellow { background-color: var(--yellow); color: var(--on-yellow); }
.on-yellow .lead { color: #3B3310; }

.breakfast {
  background-image: radial-gradient(rgba(11, 11, 11, .09) 1.3px, transparent 1.5px);
  background-size: 22px 22px;
}

.dish-grid { display: grid; gap: 14px; }
.dish {
  padding: 22px;
  background: var(--black);
  color: var(--text);
  border-radius: var(--radius);
}
.dish-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.dish h3 { font-size: 1.1rem; }
.dish p { margin: 0; color: var(--muted); font-size: .93rem; }

@media (min-width: 640px) {
  .dish-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}


/* -------------------------------------------------------------
   13. MENU HIGHLIGHTS (category cards on the home page)
   ------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 18px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.cat-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.cat-card .icon-badge { width: 46px; height: 46px; margin-bottom: 10px; }
.cat-card .icon-badge .icon { width: 24px; height: 24px; }
.cat-name { font-weight: 700; line-height: 1.3; }
.cat-from { color: var(--yellow); font-size: .9rem; font-weight: 600; }
.cat-arrow { position: absolute; top: 20px; right: 18px; color: var(--muted); }
.cat-card:hover .cat-arrow { color: var(--yellow); }

.center-row { display: flex; justify-content: center; margin-top: 32px; }

/* Phones (2 columns): if the last card would sit alone, let it fill the row */
@media (max-width: 759px) {
  .cat-grid li:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (min-width: 760px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cat-card { padding: 24px; }
}


/* -------------------------------------------------------------
   14. PICKUP & DELIVERY
   ------------------------------------------------------------- */
.card {
  padding: 24px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card h3 { margin: 16px 0 8px; font-size: 1.3rem; }
.card p { margin: 0; color: var(--muted); }

.order-grid { display: grid; gap: 14px; }

.steps { display: grid; gap: 12px; margin-top: 14px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px dashed rgba(245, 197, 24, .5);
  border-radius: var(--radius);
}
.step-num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--on-yellow);
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.step h3 { margin-bottom: 2px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .93rem; }

@media (min-width: 760px) {
  .order-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
}


/* -------------------------------------------------------------
   15. EVENTS & CATERING
   ------------------------------------------------------------- */
.events-grid { display: grid; gap: 36px; }

.event-types { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.event-types li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--black-2);
  font-weight: 600;
}
.event-types .icon { color: var(--yellow); }

/* small line with an icon and a link, e.g. "See photos … on Instagram" */
.link-note { display: flex; align-items: center; gap: 10px; margin: 22px 0 0; }
.link-note .icon { color: var(--yellow); }
.link-note a { color: var(--yellow); font-weight: 600; text-underline-offset: 4px; }

.party-card {
  border: 2px solid var(--yellow);
  background: linear-gradient(160deg, #1D1706, var(--black-2) 55%);
}
.party-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  text-transform: uppercase;
}
.mini-menu { margin-bottom: 18px; }
.mini-menu li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.party-card .more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
}
.party-card .more-link:hover { text-decoration: underline; }

@media (min-width: 900px) {
  .events-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
  .party-card { padding: 32px; }
}


/* -------------------------------------------------------------
   16. INSTAGRAM
   ------------------------------------------------------------- */
.insta {
  overflow: hidden;
  text-align: center;
  border-block: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(245, 197, 24, .16), transparent 60%);
}
.insta-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: var(--yellow);
  color: var(--on-yellow);
  transform: rotate(-6deg);
}
.insta-icon .icon { width: 40px; height: 40px; }
.insta-kicker {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.insta h2.display {
  margin-bottom: 14px;
  font-size: clamp(3rem, 15vw, 9rem);
  color: var(--yellow);
}
.insta .lead { max-width: 560px; margin-inline: auto; }
.insta .btn-row { justify-content: center; }

/* Six icon tiles that link to Instagram (no photos on this site) */
.insta-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 40px auto 0;
  text-decoration: none;
}
.insta-tiles span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--black-2);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color .2s, color .2s;
}
.insta-tiles .icon { width: 30px; height: 30px; color: var(--yellow); }
.insta-tiles:hover span { border-color: rgba(245, 197, 24, .6); color: var(--text); }

/* Bigger screens: all six tiles sit in one row */
@media (min-width: 760px) {
  .insta-tiles { grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 980px; }
  .insta-tiles span { font-size: .9rem; }
  .insta-tiles .icon { width: 34px; height: 34px; }
}


/* -------------------------------------------------------------
   17. LOCATION & HOURS
   ------------------------------------------------------------- */
.visit-grid { display: grid; gap: 32px; }

.info-list { display: grid; gap: 18px; margin-top: 8px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-item h3 { margin-bottom: 4px; }
.info-item p { margin: 0; color: var(--muted); }
.info-item a { color: var(--text); font-weight: 600; text-decoration: none; }
.info-item a:hover { color: var(--yellow); }

.map-wrap {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--black-2);
}
/* message shown behind the map while it loads */
.map-wrap::before {
  content: "Loading map…";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.map-wrap iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (min-width: 900px) {
  .visit-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
  .map-wrap iframe { height: 460px; }
}


/* -------------------------------------------------------------
   18. CONTACT
   ------------------------------------------------------------- */
.contact-grid { display: grid; gap: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 20px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.contact-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.contact-label { display: block; color: var(--muted); font-size: .88rem; }
.contact-value { display: block; font-size: 1.1rem; font-weight: 700; }

@media (min-width: 760px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .contact-card { flex-direction: column; align-items: flex-start; padding: 26px; }
}


/* -------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  /* extra space at the bottom on phones so the WhatsApp button never covers text */
  padding: 56px 0 110px;
  border-top: 1px solid var(--line);
  background: #070707;
  color: var(--muted);
  font-size: .95rem;
}
.footer-grid { display: grid; gap: 32px; }
.footer-logo { width: 104px; margin-bottom: 14px; }
.site-footer h2 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer p { margin-bottom: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { display: inline-flex; align-items: center; gap: 10px; }
.footer-links .icon { color: var(--yellow); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }

@media (min-width: 760px) {
  .site-footer { padding-bottom: 56px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}


/* -------------------------------------------------------------
   20. FLOATING WHATSAPP BUTTON (bottom-right on every page)
   ------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45), 0 0 0 4px rgba(29, 168, 81, .25);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float .icon { width: 32px; height: 32px; }

@media (min-width: 760px) {
  .wa-float { right: 24px; bottom: 24px; width: 64px; height: 64px; }
}


/* -------------------------------------------------------------
   21. MENU PAGE (menu.html)
   ------------------------------------------------------------- */
.page-hero {
  padding: 44px 0 40px;
  background-color: var(--black);
  background-image:
    radial-gradient(circle at 85% 0%, rgba(245, 197, 24, .18), transparent 50%),
    radial-gradient(rgba(245, 197, 24, .12) 1.3px, transparent 1.5px);
  background-size: auto, 22px 22px;
}
.page-hero .lead { max-width: 640px; }
.page-hero .btn-row { margin-top: 24px; }

/* Category buttons that stay under the top bar while you scroll */
.cat-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 60;
  background: rgba(11, 11, 11, .96);
  border-block: 1px solid var(--line);
}
.cat-chips {
  position: relative;
  display: flex;
  gap: 8px;
  max-width: calc(var(--container) + 32px);
  margin: 0 auto;
  padding: 10px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--black-2);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s, color .2s, border-color .2s;
}
.cat-chips a:hover,
.cat-chips a.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--on-yellow);
}

.menu-body { display: grid; gap: 20px; padding: 28px 0 24px; }

/* One card per menu category */
.menu-cat {
  scroll-margin-top: 64px;   /* room for the category buttons, so headings don't hide under them */
  padding: 22px 18px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.menu-cat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--yellow);
}
.menu-cat-head h2 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
.menu-cat-head p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.4; }

/* Sub-headings inside a category, e.g. "Breakfast extras" */
.menu-sub {
  margin: 26px 0 2px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.menu-list { display: grid; column-gap: 40px; }
.menu-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu-item h3 { font-size: 1.05rem; line-height: 1.3; }
.menu-item p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }

/* Item name ....... price (the dotted line is drawn automatically) */
.menu-item-row { display: flex; align-items: baseline; gap: 10px; }
.menu-item-row::after {
  content: "";
  order: 1;
  flex: 1 1 20px;
  min-width: 20px;
  border-bottom: 2px dotted #4A4A4A;
  transform: translateY(-5px);
}
.menu-item-row .price { order: 2; }

/* Price "pills", e.g. Chicken ₦6,500 | Turkey ₦12,000 */
.price-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(245, 197, 24, .35);
  border-radius: 999px;
  background: rgba(245, 197, 24, .1);
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
}
.pill-label { color: var(--text); font-size: .85rem; font-weight: 400; }

/* Three prices side by side as small boxes (used for shawarma) */
.price-pills--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 540px;
}
.price-pills--3 .pill {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 14px;
  white-space: normal;
}
.price-pills--3 .pill-label { font-size: .8rem; line-height: 1.3; }

.menu-note { margin: 8px 0 0; color: var(--muted); font-size: .92rem; text-align: center; }

/* "Want to see our food?" box under the menu */
.menu-insta {
  margin: 28px 0 80px;
  padding: 44px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.menu-insta .icon-badge { margin: 0 auto 16px; background: var(--black); color: var(--yellow); }
.menu-insta h2.display { font-size: clamp(2rem, 8vw, 3.4rem); margin-bottom: 10px; }
.menu-insta p { max-width: 520px; margin: 0 auto; }
.menu-insta .btn-row { justify-content: center; }

@media (min-width: 760px) {
  .menu-cat { padding: 32px; }
  .menu-list--2col { grid-template-columns: 1fr 1fr; }
}


/* -------------------------------------------------------------
   22. LESS MOTION for visitors who ask their phone for it
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
