/* ============================================================
   Geteiltes CSS der Unterseiten speisekarte + franchise (seit 2026-07-28).
   Vorher wortwoertlich in beiden inline-<style>-Bloecken dupliziert.
   2026-08-18 erweitert (Dedup-Runde 2): .section-label, .cta-strip-Basis,
   footer und der reduced-motion-Opt-out waren erneut in beiden Seiten
   (nahezu) identisch inline. Regel: geteilte Basis hier, seiten-eigene
   Abweichungen (margins/paddings/max-widths) bleiben inline — die
   Property-Mengen sind disjunkt, darum ist die Ladereihenfolge egal.
   ============================================================ */

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

/* Eine Quelle fuer den Marken-Verlauf (vorher 4x als Literal inline kopiert) */
:root { --accent-grad: linear-gradient(170deg, #FFD700 0%, #FF8C00 55%, #FF6B00 100%); }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px; line-height: 1.5;
  color: #A89880;
  background: #0A0806;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grain overlay (matches main site) */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.7'/></svg>");
}

.accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow-Label mit Goldlinie (speisekarte nutzte es als .menu-card-label —
   selbe Deklarationen, jetzt ein Name) */
.section-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,215,0,.7); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; flex: 0 0 32px; height: 1px; background: rgba(255,215,0,.5);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s, background-color .25s;
}
.btn:focus-visible { outline: 2px solid #FFD700; outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FF6B00 100%); /* Winkel wie index .btn-solid */
  color: #0A0806;
}
/* Hover nur auf Hover-Geraeten — auf Touch klebte der Zustand nach dem Tap
   (Mobile-Audit 2026-08-19). Druck-Feedback kommt aus :active. */
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(255,215,0,.4); }
}
.btn-ghost {
  color: #F5EDE0; border: 1px solid rgba(255,215,0,.3);
}
@media (hover: hover) {
  .btn-ghost:hover { border-color: #FFD700; background: rgba(255,215,0,.06); }
}
/* Presslogik als Gegenstueck zum Hover-Lift: Hover hebt, Druck senkt */
.btn:active { transform: scale(.97); }

@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn:active { transform: none; }
}

/* Touch-Geraete: dezentes Dim beim Druecken ersetzt das (per Tailwind-Preflight
   auf index, hier zur Konsistenz) fehlende native Tap-Highlight */
@media (hover: none) {
  a:active { opacity: .7; }
}

/* Kontakt-/Abschluss-CTA-Kasten. Seiten-eigen bleiben nur margin/padding
   (.cta-strip), max-width (.cta-strip p) und margin-top (.cta-row). */
.cta-strip {
  position: relative; z-index: 2;
  /* 48 = 2x 24px Gutter (wie .section-Padding): unterhalb des max-width-Caps
     zentrieren die auto-Margins der Seiten die Karte sonst randlos an die
     Viewport-Kante. */
  width: calc(100% - 48px);
  max-width: 1100px;
  border: 1px solid rgba(255,215,0,.12);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at top right, rgba(255,107,0,.08) 0%, transparent 60%),
    rgba(26,21,18,.5);
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  text-transform: uppercase; color: #F5EDE0; line-height: .95;
  margin-bottom: 14px;
}
.cta-strip p {
  margin: 0 auto 26px;
  color: rgba(168,152,128,.85); font-size: 15px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer lebt seit 19.08. global in css/footer.css + sections/footer.html */
