/* ==========================================================================
   Pizza Pause · Design-Vorschau V1 — „Das Banner, veredelt"
   Fast-Schwarz, dezenter Neon-Glow (Rot/Grün), Arkaden-Bogen als Leitmotiv.
   Keine externen Requests. System-Fontstacks.
   ========================================================================== */

:root {
  --bg:        #0e0b09;
  --panel:     #17120e;
  --panel-2:   #1c1611;
  --ink:       #f3ede4;
  --ink-mut:   #b8ad9f;
  --ink-dim:   #8f8577;
  --red:       #e63946;   /* Banner-Rot (Glow-Basis) */
  --red-lit:   #f2606b;   /* aufgehellte Lesefarbe */
  --red-fill:  #ef4655;   /* Button-Füllung */
  --green:     #3ddc84;   /* Banner-Grün */
  --green-dim: #2f9e5f;
  --line:      rgba(243, 237, 228, .13);
  --line-soft: rgba(243, 237, 228, .07);
  --arch-r:    999px 999px 18px 18px;
  --font-display: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* ---------- Reset & Grundton ---------- */

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

html { overflow-x: clip; scroll-behavior: auto; }

/* Sanftes Scrollen nur, wenn Bewegung erlaubt ist */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 15% -5%,  rgba(230, 57, 70, .05),  transparent 60%),
    radial-gradient(1100px 700px at 95% 100%, rgba(61, 220, 132, .04), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ---------- Trikolore-Hairline ---------- */

.tricolore {
  height: 2px;
  max-width: min(420px, 60vw);
  margin-inline: auto;
  background: linear-gradient(90deg,
    var(--green-dim) 0 33.4%,
    #e8e3d8 33.4% 66.7%,
    #c9414d 66.7% 100%);
  opacity: .5;
  border-radius: 2px;
}

/* ---------- Typo-Bausteine ---------- */

.eyebrow {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow-center { text-align: center; }

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  text-align: center;
  letter-spacing: .01em;
}

.section-lede {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-mut);
}

/* ---------- Bogen-Rahmen (Arkaden-Motiv) ---------- */

.arch {
  border-radius: var(--arch-r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 6px var(--line-soft),
    0 26px 60px rgba(0, 0, 0, .55);
  background: var(--panel);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-hero     { aspect-ratio: 5 / 4; }
.arch-portrait { aspect-ratio: 3 / 4; }

figure { margin: 0; }

figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: .85rem;
  color: var(--ink-dim);
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: .02em;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn .ico { flex: none; }

.btn-primary {
  background: var(--red-fill);
  color: #1c0a0e;
  box-shadow: 0 0 18px rgba(230, 57, 70, .22), 0 8px 24px rgba(0, 0, 0, .35);
}

.btn-ghost {
  border-color: rgba(61, 220, 132, .55);
  color: var(--green);
  background: rgba(61, 220, 132, .04);
}

.btn-big { min-height: 56px; padding-inline: 34px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta-center { justify-content: center; }

/* ==========================================================================
   0 · KOPFZEILE — kompakte Neon-Wortmarke + Anker-Navigation
   ========================================================================== */

.kopf {
  position: sticky;
  top: 0;
  z-index: 55; /* über Inhalt & Mobilebar (50), unter dem Versions-Umschalter (60) */
  background: rgba(14, 11, 9, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.kopf-zeile {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  min-height: 64px;
  padding-block: 6px;
}

.kopf-marke {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-height: 44px;
  padding-block: 10px;
  text-decoration: none;
}

.kopf-pizza {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red-lit);
  text-shadow: 0 0 10px rgba(230, 57, 70, .3);
}

.kopf-pause {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 0 10px rgba(61, 220, 132, .24);
}

.kopf-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.kopf-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-mut);
  text-decoration: none;
}

.kopf-nav a:hover {
  color: var(--ink);
  background: rgba(243, 237, 228, .08);
}

.kopf-anruf {
  min-height: 44px;
  padding: 8px 20px;
  font-size: .95rem;
}

/* Anker landen unterhalb der Kopfzeile */
#speisekarte, #zeiten, #kontakt { scroll-margin-top: 128px; }

@media (min-width: 820px) {
  #speisekarte, #zeiten, #kontakt { scroll-margin-top: 84px; }
}

/* Mobil: Wortmarke + Anrufen oben, Anker-Links als scrollbare Leiste darunter */
@media (max-width: 819.98px) {
  .kopf-zeile {
    flex-wrap: wrap;
    padding-block: 8px 0;
  }
  .kopf-anruf { margin-left: auto; }
  .kopf-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 2px 8px;
    scrollbar-width: none;
  }
  .kopf-nav::-webkit-scrollbar { display: none; }
  .kopf-nav a { flex: none; white-space: nowrap; }
}

/* ==========================================================================
   1 · HERO
   ========================================================================== */

.hero { padding-block: clamp(56px, 9vw, 110px) clamp(64px, 9vw, 110px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero-copy .eyebrow { color: var(--ink-dim); }

/* Wortmarke — die dezentere Version des Banners */
.mark {
  margin: 0 0 10px;
  line-height: .95;
}

.mark-pizza {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  color: var(--red-lit);
  text-shadow:
    0 0 14px rgba(230, 57, 70, .32),
    0 0 46px rgba(230, 57, 70, .15);
}

.mark-pause {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  letter-spacing: .3em;
  text-indent: .3em; /* optischer Ausgleich fürs Letterspacing */
  text-transform: uppercase;
  color: var(--green);
  text-shadow:
    0 0 14px rgba(61, 220, 132, .26),
    0 0 46px rgba(61, 220, 132, .12);
}

.hero-sub {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink-mut);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-size: .95rem;
  color: var(--ink);
}

.rating-badge strong { font-size: 1.05rem; }

/* ==========================================================================
   2 · BAND „Pizza · Pasta · Salate"
   ========================================================================== */

.band {
  padding-block: clamp(56px, 8vw, 96px);
  text-align: center;
}

.band-line {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: .02em;
}

.dot { padding-inline: .18em; }
.dot-red   { color: var(--red-lit); text-shadow: 0 0 12px rgba(230, 57, 70, .35); }
.dot-green { color: var(--green);   text-shadow: 0 0 12px rgba(61, 220, 132, .3); }

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.badges li {
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  color: var(--ink-mut);
  background: var(--panel);
}

/* ==========================================================================
   3 · FOOD-DUO
   ========================================================================== */

.food { padding-block: clamp(72px, 10vw, 120px); }

.food-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 780px;
  margin: clamp(40px, 6vw, 64px) auto 0;
}

/* ==========================================================================
   4 · MENÜ-TEASER — drei Bogen-Tafeln wie die Leuchttafeln im Laden
   ========================================================================== */

.menu { padding-block: clamp(72px, 10vw, 120px); }

.menu-boards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  margin-top: clamp(40px, 6vw, 64px);
}

.board {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--arch-r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 0 0 6px var(--line-soft),
    0 20px 50px rgba(0, 0, 0, .45);
  padding: clamp(48px, 7vw, 72px) clamp(22px, 3vw, 32px) clamp(28px, 4vw, 36px);
}

.board-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: .04em;
}

.board-tricolore {
  height: 2px;
  width: 64px;
  margin: 14px 0 22px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    var(--green-dim) 0 33.4%,
    #e8e3d8 33.4% 66.7%,
    #c9414d 66.7% 100%);
  opacity: .6;
}

.board-rows {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-rows li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 12px;
}

.board-rows li + li { border-top: 1px solid var(--line-soft); }

/* edle Platzhalter-Zeilen — bewusst gestaltet, keine Baustelle */
.ph {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 237, 228, .22), rgba(243, 237, 228, .08));
  flex: none;
}

.ph-44 { width: 44%; }
.ph-48 { width: 48%; }
.ph-52 { width: 52%; }
.ph-56 { width: 56%; }
.ph-60 { width: 60%; }
.ph-64 { width: 64%; }
.ph-68 { width: 68%; }
.ph-72 { width: 72%; }

.leader {
  flex: 1;
  border-bottom: 2px dotted rgba(243, 237, 228, .18);
  transform: translateY(3px);
}

.ph-price {
  flex: none;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   5 · ÖFFNUNGSZEITEN & ANFAHRT
   ========================================================================== */

.visit { padding-block: clamp(72px, 10vw, 120px); }

.visit-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: stretch;
  margin-top: clamp(40px, 6vw, 64px);
}

.visit-trio figure {
  display: flex;
  flex-direction: column;
}

.visit-trio .arch { flex: 1; }

.hours-board { justify-content: center; }

.hours {
  border-collapse: collapse;
  font-size: 1.05rem;
}

.hours th {
  text-align: left;
  font-weight: 650;
  color: var(--ink-mut);
  padding: 8px 18px 8px 0;
  white-space: nowrap;
}

.hours td {
  padding: 8px 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours-note {
  margin: 18px 0 0;
  font-size: .78rem;
  color: var(--ink-dim);
}

.address {
  margin-top: clamp(44px, 6vw, 64px);
  text-align: center;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--ink-mut);
}

.address strong { color: var(--ink); }

.tel-link {
  color: var(--green);
  text-decoration-color: rgba(61, 220, 132, .4);
  text-underline-offset: 4px;
}

.visit .cta-row { margin-top: 30px; }

/* ==========================================================================
   6 · FOOTER
   ========================================================================== */

.footer { padding-block: clamp(40px, 6vw, 56px) 120px; }

.footer .tricolore { margin-bottom: clamp(32px, 5vw, 44px); }

.footer-inner { text-align: center; }

.footer-main {
  margin: 0;
  font-size: .95rem;
  color: var(--ink-mut);
}

.footer-main a {
  color: var(--ink);
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.footer-small {
  margin: 10px 0 0;
  font-size: .78rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   Mobile Sticky-Leiste (nur mobil)
   ========================================================================== */

.mobilebar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14, 11, 9, .93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.mobilebar .btn { min-height: 48px; padding-inline: 14px; }

/* ==========================================================================
   Versions-Umschalter (Preview-Werkzeug)
   ========================================================================== */

.vswitch {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 11, 9, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: .76rem;
  color: var(--ink-dim);
}

.vswitch-label { margin-right: 4px; }

.vswitch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-mut);
}

.vswitch a[aria-current="page"] {
  background: rgba(243, 237, 228, .16);
  color: var(--ink);
  font-weight: 700;
}

/* ==========================================================================
   Motion — nur bei erlaubter Bewegung; Glow bleibt immer statisch
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease; }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 24px rgba(230, 57, 70, .3), 0 10px 28px rgba(0, 0, 0, .4); }
  .btn-ghost:hover   { background: rgba(61, 220, 132, .1); border-color: rgba(61, 220, 132, .8); }
  .arch img { transition: transform .6s ease; }
  figure:hover .arch img { transform: scale(1.025); }
  .vswitch a { transition: background-color .15s ease, color .15s ease; }
  .vswitch a:hover { background: rgba(243, 237, 228, .1); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-ghost:hover { background: rgba(61, 220, 132, .1); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .menu-boards,
  .visit-trio { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .hours-board { padding-block: 56px 40px; }
}

@media (max-width: 760px) {
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; margin-inline: auto; width: 100%; }
  .arch-hero { aspect-ratio: 4 / 4.4; }
  .cta-row:not(.cta-center) { justify-content: flex-start; }
}

@media (max-width: 719.98px) {
  body { padding-bottom: 78px; }
  .mobilebar { display: grid; }
  .footer { padding-bottom: 56px; }
  .vswitch { bottom: calc(82px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
  .food-duo { grid-template-columns: 1fr; max-width: 400px; }
  .cta-row .btn { flex: 1 1 auto; }
}
