/* D10 Burguerbar -- theme: black + gold, stadium/football energy */

:root {
  --black: #0a0a0b;
  --surface: #161617;
  --surface-2: #1e1e20;
  --line: #2b2b2d;
  --gold: #f2a900;
  --gold-2: #ffcf4d;
  --white: #f5f4f0;
  --muted: #a3a3a0;
  --radius: 14px;
  --container: 1160px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  position: relative;
  min-height: 100vh;
}

/* subtle stadium-net grid backdrop, matches the printed menu's look */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(242, 169, 0, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 169, 0, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 90%);
}

h1, h2, h3, h4, .display {
  font-family: 'Anton', 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.05;
  margin: 0 0 .4em;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .8em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #17130a; box-shadow: 0 6px 20px rgba(242,169,0,.28); }
.btn--gold:hover { background: var(--gold-2); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--line); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, .88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: .6em; }
.brand__logo {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.brand__name {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.brand__name em { color: var(--gold); font-style: normal; }

.site-nav { display: flex; align-items: center; gap: 1.8em; }
.site-nav a { font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .3px; color: var(--muted); }
.site-nav a:hover, .site-nav a.is-active { color: var(--gold); }
.site-nav a.nav-cta { color: #17130a; }
.site-nav a.nav-cta:hover { color: #17130a; }

.lang-switch { display: flex; align-items: center; gap: .4em; font-size: .85rem; color: var(--muted); }
.lang-switch a.is-active { color: var(--gold); font-weight: 700; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .4em 1em;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--gold-2);
  margin-bottom: 1.6em;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero__subtitle {
  max-width: 620px;
  margin: 0 auto 2em;
  font-size: 1.15rem;
}
.hero__actions { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6em; }
.section-head .eyebrow {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .6em;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3em;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.about-grid .eyebrow {
  display: block; color: var(--gold); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: .8rem; margin-bottom: .6em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8em;
  text-align: center;
}
.info-card .icon { font-size: 2rem; margin-bottom: .4em; }
.info-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: .3em; }
.info-card p { margin: 0; color: var(--white); }

/* ---------- menu preview / cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6em;
}
.item-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.item-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.item-card__media { aspect-ratio: 2/1; overflow: hidden; background: #000; }
.item-card__media img { width: 100%; height: 100%; object-fit: contain; }
.item-card__body { padding: 1.3em 1.4em 1.5em; display: flex; flex-direction: column; gap: .5em; flex: 1; }
.item-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: .8em; }
.item-card__top h3 { font-size: 1.3rem; margin: 0; }
.item-card__price {
  font-family: 'Anton', sans-serif;
  color: #17130a;
  background: var(--gold);
  padding: .25em .6em;
  border-radius: 8px;
  font-size: .95rem;
  white-space: nowrap;
}
.item-card__desc { margin: 0; font-size: .92rem; flex: 1; }
.item-card__allergens { display: flex; flex-wrap: wrap; gap: .4em; margin-top: .4em; }
.badge-new {
  align-self: flex-start;
  background: var(--gold-2);
  color: #17130a;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: .25em .6em;
  border-radius: 6px;
  letter-spacing: .5px;
}

.allergen-chip {
  display: inline-flex; align-items: center; gap: .3em;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  padding: .2em .55em;
  border-radius: 999px;
}

.section-cta { text-align: center; margin-top: 2.6em; }

/* ---------- menu page ---------- */
.menu-jumpnav {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
}
.menu-jumpnav .container { padding-top: .9em; padding-bottom: .9em; display: flex; gap: 1.6em; }
.menu-jumpnav a { font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .4px; color: var(--muted); }
.menu-jumpnav a:hover { color: var(--gold); }

.menu-category { padding: 60px 0 20px; scroll-margin-top: 140px; }
.menu-category h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); border-left: 5px solid var(--gold); padding-left: .5em; }

.menu-item-row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 1.2em;
  align-items: center;
  padding: 1em 0;
  border-bottom: 1px solid var(--line);
}
.menu-item-row__thumb {
  width: 84px; height: 84px; border-radius: 10px; overflow: hidden; background: #000;
}
.menu-item-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-row__name { display: flex; align-items: center; gap: .6em; font-size: 1.1rem; margin-bottom: .15em; }
.menu-item-row__desc { margin: 0; font-size: .9rem; }
.menu-item-row__allergens { display: flex; flex-wrap: wrap; gap: .35em; margin-top: .4em; }
.menu-item-row__price { font-family: 'Anton', sans-serif; color: var(--gold); font-size: 1.2rem; white-space: nowrap; }

.allergen-legend {
  margin-top: 3em;
  padding: 1.6em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.allergen-legend h3 { font-size: 1.1rem; color: var(--gold); }
.allergen-legend__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .6em;
  margin-top: 1em;
}
.allergen-legend__item { display: flex; align-items: center; gap: .5em; font-size: .85rem; color: var(--muted); }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8em;
}
.contact-card h3 { color: var(--gold); font-size: 1.1rem; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 2em;
}
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }
.rating-badge { display: flex; align-items: center; gap: .6em; font-size: 1.1rem; color: var(--gold-2); font-weight: 700; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3em 0 2em; margin-top: 3em; }
.site-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1em; text-align: center; }
.site-footer__brand { display: flex; align-items: center; gap: .6em; }
.site-footer__nav { display: flex; gap: 1.5em; }
.site-footer__nav a { color: var(--muted); font-weight: 600; }
.site-footer__nav a:hover { color: var(--gold); }
.site-footer__social { display: flex; gap: 1.2em; }
.site-footer__social a { color: var(--gold-2); font-weight: 700; }
.site-footer__address { color: var(--muted); margin: 0; }
.site-footer__copy { color: #6b6b68; font-size: .82rem; margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2em;
    padding: 1.6em 20px 2em;
    transform: translateY(-140%);
    transition: transform .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); }
  .menu-item-row { grid-template-columns: 64px 1fr; }
  .menu-item-row__price { grid-column: 2; justify-self: start; }
  .menu-item-row__thumb { width: 64px; height: 64px; }
}
