/* v1.0.1 - 2026-05-23 - separate wordmark in nav/footer, crisper sparks, kontakt title smaller + nowrap */
/* ============================================================
   Maza Burger — comic / cartoon, hellblau base + gelb accent
   ============================================================ */

:root {
  --blue: #38b6ff;
  --blue-deep: #1f8ed6;
  --yellow: #fbec53;
  --red: #e63a2c;
  --brown: #6b3a1e;
  --cream: #fff6d6;
  --ink: #1a1a1a;
  --white: #ffffff;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
  --radius: 22px;
  --radius-sm: 14px;
  --border: 3px solid var(--ink);

  --font-display: "Fredoka", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--blue);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.18) 0, transparent 38%),
    radial-gradient(circle at 85% 90%, rgba(255,255,255,0.16) 0, transparent 42%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(38px, 6.5vw, 72px); }
h2 { font-size: clamp(30px, 4.6vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
p  { margin: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; line-height: 1;
  padding: 16px 24px;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-hard);
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--primary { background: var(--yellow); color: var(--ink); }
.btn--ghost   { background: var(--white);  color: var(--ink); }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px var(--pad);
  background: var(--blue);
  border-bottom: var(--border);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; color: var(--ink);
  letter-spacing: 0.01em;
}
.brand__mark {
  width: 56px; height: auto;
  filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.18));
}
.brand__word {
  background: var(--yellow); color: var(--ink);
  padding: 4px 14px 5px;
  border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
  line-height: 1.05;
}
.topbar .brand__mark { width: 60px; }
.foot .brand__mark { width: 48px; }
.nav { display: none; gap: 22px; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.nav a { padding: 6px 4px; border-bottom: 3px solid transparent; transition: border-color .15s; }
.nav a:hover { border-bottom-color: var(--yellow); }
.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 10px 16px;
  border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 28px var(--pad) 64px;
  overflow: hidden;
}
.hero__sparks { position: absolute; inset: 0; pointer-events: none; color: var(--yellow); }
.spark { position: absolute; animation: twinkle 3s ease-in-out infinite; shape-rendering: geometricPrecision; }
.s1 { top: 8%;  left: 6%;  animation-delay: .0s; }
.s2 { top: 18%; right: 8%; animation-delay: .8s; }
.s3 { bottom: 30%; left: 12%; animation-delay: 1.4s; }
.s4 { bottom: 14%; right: 14%; animation-delay: 2.1s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: .9; }
  50%      { transform: scale(1.15) rotate(8deg); opacity: 1; }
}

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__logo {
  width: clamp(180px, 38vw, 280px);
  height: auto;
  filter: drop-shadow(4px 6px 0 rgba(0,0,0,0.18));
  animation: bob 4.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__slogan {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(15px, 2vw, 18px); letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--yellow); color: var(--ink);
  padding: 8px 18px; border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
}
.hero__headline {
  margin-top: 22px;
  max-width: 18ch;
  text-shadow: 3px 3px 0 rgba(255,255,255,0.35);
}
.hero__sub {
  margin-top: 16px;
  max-width: 46ch;
  font-size: clamp(16px, 2.1vw, 19px);
  font-weight: 600;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}

/* ── Angebot (Jama'a 9,90 €) ────────────────────────────────── */
.angebot {
  padding: 24px var(--pad) 64px;
}
.angebot__card {
  max-width: 720px; margin: 0 auto;
  background: var(--cream);
  border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
  position: relative;
}
.angebot__card::before, .angebot__card::after {
  content: ""; position: absolute; width: 36px; height: 36px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1 14 9 22 11 14 13 12 22 10 13 2 11 10 9Z' fill='%23fbec53' stroke='%231a1a1a' stroke-width='2.4' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.angebot__card::before { top: -18px; left: -10px; transform: rotate(-14deg); }
.angebot__card::after  { bottom: -18px; right: -10px; transform: rotate(18deg); }
.angebot__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--blue); color: var(--ink);
  padding: 6px 16px; border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
}
.angebot__price {
  margin-top: 18px;
  font-size: clamp(44px, 8vw, 78px);
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--yellow);
}
.angebot__pill {
  display: inline-block;
  margin-top: 12px;
  background: var(--blue); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 10px 20px; border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
}
.angebot__sub {
  margin: 22px auto 26px; max-width: 38ch;
  font-size: 16px; font-weight: 600;
}

/* ── Tradition ──────────────────────────────────────────────── */
.tradition {
  background: var(--white);
  border-top: var(--border); border-bottom: var(--border);
  padding: 64px var(--pad);
}
.tradition__inner { max-width: var(--max); margin: 0 auto; }
.tradition h2 { margin-top: 14px; max-width: 16ch; }
.tradition__lead {
  margin-top: 16px; max-width: 56ch;
  font-size: clamp(17px, 2vw, 19px); font-weight: 600;
}
.tradition__points {
  margin-top: 36px;
  display: grid; gap: 22px;
}
.tradition__points li {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start;
}
.tradition__points h3 { font-size: 22px; }
.tradition__points p { margin-top: 4px; font-weight: 500; color: #333; }

.dot {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard-sm);
}
.dot--yellow { background: var(--yellow); color: var(--ink); }
.dot--red    { background: var(--red);    color: var(--white); }

/* ── Menu ───────────────────────────────────────────────────── */
.menu { padding: 72px var(--pad); }
.menu__head { max-width: var(--max); margin: 0 auto 36px; text-align: center; }
.menu__head h2 { margin-top: 14px; }
.menu__legend {
  margin-top: 14px;
  font-size: 14px; font-weight: 600; opacity: 0.85;
}
.menu__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: clamp(22px, 3vw, 32px);
  position: relative;
}
.card__h {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 14px;
}
.card__h h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.card--burger .card__h  { color: var(--red); }
.card--chicken .card__h { color: var(--brown); }
.card--sides .card__h   { color: var(--blue-deep); }
.card--extras .card__h  { color: var(--ink); }

.items > li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1.5px dashed rgba(26,26,26,0.18);
}
.items > li:last-child { border-bottom: 0; }

.items__name {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px;
}
.items__desc {
  margin-top: 4px;
  font-size: 14.5px; line-height: 1.45;
  color: #4a4a4a;
}
.items__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px;
  white-space: nowrap;
}
.items--compact > li { padding: 10px 0; }
.items--compact .items__name { font-size: 18px; }

.allerg {
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; letter-spacing: 0.08em;
  color: #6b6b6b;
  background: #f3f3f3;
  padding: 2px 8px; border-radius: 999px;
  border: 1.5px solid rgba(26,26,26,0.18);
}
.ico-flame { color: var(--red); }
.ico-leaf  { color: #3aa55a; }

/* ── Kontakt ────────────────────────────────────────────────── */
.kontakt {
  background: var(--yellow);
  border-top: var(--border); border-bottom: var(--border);
  padding: 64px var(--pad);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.kontakt__inner { max-width: 560px; margin: 0 auto; width: 100%; }
.kontakt h2 { margin-top: 14px; }
.kontakt__title {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.08;
}
.nowrap { white-space: nowrap; }
.kontakt__rows { margin-top: 32px; display: grid; gap: 18px; }
.kontakt__rows li {
  display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center;
  background: var(--white);
  border: var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-hard-sm);
}
.kontakt__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #555;
}
.kontakt__value { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.kontakt__value a { border-bottom: 2.5px solid var(--ink); }
.kontakt__value--muted em { font-style: italic; color: #777; font-weight: 600; }
.kontakt__ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.kontakt__map {
  max-width: 560px; margin: 0 auto; width: 100%;
  background: var(--white);
  border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.kontakt__map svg { width: 100%; height: auto; display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.foot {
  background: var(--ink); color: var(--white);
  padding: 40px var(--pad);
}
.foot__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 18px; justify-items: center; text-align: center;
}
.foot .brand { color: var(--white); }
.foot .brand__word { color: var(--ink); }
.foot__slogan {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
}
.foot__nav { display: flex; flex-wrap: wrap; gap: 18px; font-family: var(--font-display); font-weight: 600; }
.foot__nav a { opacity: 0.85; transition: opacity .15s; }
.foot__nav a:hover { opacity: 1; color: var(--yellow); }
.foot__legal { font-size: 13px; opacity: 0.7; }

/* ── Breakpoints ────────────────────────────────────────────── */
@media (min-width: 720px) {
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .card--burger, .card--chicken { grid-column: span 1; }
  .kontakt { grid-template-columns: 1fr 1fr; align-items: start; }
  .tradition__points { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: inline-flex; }
}

@media (min-width: 1100px) {
  .menu__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-areas:
      "burger chicken sides"
      "burger extras  sides";
  }
  .card--burger  { grid-area: burger; }
  .card--chicken { grid-area: chicken; }
  .card--sides   { grid-area: sides; }
  .card--extras  { grid-area: extras; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo, .spark { animation: none; }
  .btn { transition: none; }
}
