/* ================================================================
   SPACE BURGER – style.css  FINAL BUILD
   Vollständige Datei — ersetzt style.css komplett
================================================================ */

@font-face {
  font-family: Retro;
  src: url("../assets/fonts/Retro.woff2") format("woff2"),
       url("../assets/fonts/Retro Gaming.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Calibre;
  src: url("../assets/fonts/Calibre-Regular.woff2") format("woff2"),
       url("../assets/fonts/Calibre-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: CalibreBold;
  src: url("../assets/fonts/Calibre-Bold.woff2") format("woff2"),
       url("../assets/fonts/Calibre-Bold.otf") format("opentype");
  font-display: swap;
}

html { scroll-behavior: smooth; }

section { scroll-snap-align: start; }

body {
  margin: 0;
  background: #f4ecd8;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
}

img { max-width: 100%; height: auto; display: block; }

/* ── scroll-margin-top: alle Sections berücksichtigen Header-Höhe ── */
section,
.franchise-section,
.families-section,
.locations-section,
.ambience-section,
.maps-section {
  scroll-margin-top: var(--header-height, 120px);
}

/* ================================================================
   HEADER
================================================================ */

:root { --header-height: 120px; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f4ecd8;
  display: grid;
  grid-template-columns: 1fr 1.2fr 2fr;
  padding: 18px 40px;
  z-index: 1000;
  box-sizing: border-box;
}
.header-left { display: flex; flex-direction: column; }
.logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
}
.logo:active { transform: scale(1.06); }
.subtitle {
  font-family: CalibreBold;
  font-size: 22px;
  color: #c60000;
  margin-top: 4px;
}
.subtitle-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}
.since {
  font-family: CalibreBold;
  font-size: 18px;
  color: #c60000;
  letter-spacing: 1px;
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery {
  font-family: CalibreBold;
  font-size: 20px;
  line-height: 1.25;
  color: #0055ff;
  text-align: center;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* ── NAV ── */
.text-nav { display: flex; gap: 8px; align-items: center; }
.nav-experience { display: inline-flex; position: relative; }

.text-nav a,
.text-nav .nav-link {
  font-family: Retro;
  font-size: 15px;
  color: #e60000;
  padding: 6px 10px;
  border: 2px solid #e60000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.text-nav a:hover,
.text-nav .nav-link:hover { background: red; color: white; }

.experience-subnav {
  position: absolute;
  top: 36px;
  left: 0;
  display: none;
  flex-direction: column;
  background: #f4ecd8;
  border: 2px solid #e60000;
  z-index: 2000;
}
.experience-subnav a { white-space: nowrap; }
.nav-experience.open .experience-subnav { display: flex; }

/* ── BUTTONS ── */
.menu-buttons { display: flex; gap: 8px; }
.btn {
  font-family: Retro;
  padding: 6px 10px;
  border: 3px solid black;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-decoration: none;
  display: inline-block;
}
.btn:active { transform: scale(1.08); }
.yellow { background: yellow; }
.blue   { background: #0055ff; color: white; }
.order  { background: linear-gradient(45deg, orange, hotpink); }

/* ================================================================
   HERO
================================================================ */

.hero {
  margin-top: var(--header-height);
  position: relative;
  z-index: 1;
}

/* ── VHS / CRT RETRO OVERLAY ──
   Drei Effekte, alle CSS-only, kein Performance-Impact:
   1. Scanlines: horizontale Linien wie ein alter CRT-Monitor
   2. Chromatic Aberration: roter Farbsaum unten (wie VHS-Tracking-Error)
   3. Flicker: subtiles Helligkeitsflackern wie alte Videokassette
   Alle drei laufen auf dem ::before / ::after Pseudo-Element —
   kein zusätzliches DOM-Element nötig.
*/
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  /* Scanlines: dünne horizontale Linien */
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  animation: vhs-flicker 8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  /* Chromatic Aberration: subtiler Rot/Blau-Versatz am unteren Rand */
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(255, 0, 60, 0.07) 85%,
    rgba(0, 60, 255, 0.05) 100%
  );
  animation: vhs-tracking 12s ease-in-out infinite;
}

@keyframes vhs-flicker {
  0%, 100%  { opacity: 1; }
  92%        { opacity: 1; }
  93%        { opacity: 0.88; }
  94%        { opacity: 1; }
  97%        { opacity: 1; }
  97.5%      { opacity: 0.92; }
  98%        { opacity: 1; }
}

@keyframes vhs-tracking {
  0%, 100%  { transform: translateY(0); opacity: 1; }
  88%        { transform: translateY(0); opacity: 1; }
  90%        { transform: translateY(2px); opacity: 0.85; }
  92%        { transform: translateY(-1px); opacity: 1; }
  94%        { transform: translateY(0); }
}

.pixel-map {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  will-change: transform;
}
.hero-usp {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  letter-spacing: 1px;
  text-align: center;
  color: white;
  opacity: 0.85;
  font-family: Retro;
  z-index: 10;
  white-space: nowrap;
  /* Leichter Text-Glow wie Neon-Sign */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 43, 43, 0.2);
}

/* ================================================================
   SALATO
================================================================ */

#salato-wrapper {
  position: fixed;
  right: 8%;
  bottom: 80px;
  width: 320px;
  z-index: 900;       /* UNTER Cookie-Banner + Mobile-Nav */
  isolation: isolate;
}
#mrSalato {
  width: 200px;
  display: block;
  margin: 0 auto;
  pointer-events: auto;
}
.speech-bubble {
  background: white;
  border: 6px solid red;
  padding: 20px;
  font-family: Retro;
  font-size: 14px;
  min-height: 180px;
}
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ================================================================
   HOTSPOTS
================================================================ */

.hotspot {
  position: absolute;
  width: 44px;
  height: 26px;
  background: yellow;
  border: 3px solid hotpink;
  animation: pulse 1.4s infinite;
  cursor: pointer;
  z-index: 10;          /* ÜBER VHS-Overlays (z-index 4/5) und pixel-map (2) */
  pointer-events: auto; /* Explizit: Klicks durchlassen trotz Pseudo-Element-Overlays */
}
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ================================================================
   SECTION BAR
================================================================ */

.section-bar {
  background: #f4ecd8;
  font-family: Retro;
  font-size: 52px;
  color: #e60000;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
#contact .section-bar { background: transparent; }

/* ================================================================
   LEGEND
================================================================ */

#legend { position: relative; background: #f4ecd8; }
#legend .section-bar { position: relative; z-index: 1; }
.legend-image { width: 100%; display: block; }

/* ================================================================
   FOOD
================================================================ */

.food-area {
  position: relative;
  min-height: 1100px;
  background-image: image-set(
    url("../assets/images/Color-Kachel-Grid-1280.webp") type("image/webp"),
    url("../assets/images/Color-Kachel-Grid.png")       type("image/png")
  );
  background-image: url("../assets/images/Color-Kachel-Grid-1280.webp"); /* Safari fallback */
  background-size: cover;
  background-position: center top;
}
.food-stage { position: relative; }
.food-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 6%;
  padding-top: 110px;
  box-sizing: border-box;
}
.food-gallery {
  position: relative;
  margin: 20px auto 160px auto;
  width: 960px;
}
.food-illustration {
  height: 560px;
  width: auto;
  margin-right: 60px;
  display: block;
  position: relative;
  top: -40px;
  transform: scale(0.84);
  transform-origin: top center;
}
.food-illustration-anchor {
  position: relative;
  display: inline-block;
}
.food-buttons {
  position: absolute;
  top: 120px;
  left: 40%;
}
.food-buttons .row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.food-buttons .row.right { justify-content: flex-end; }
.food-buttons button {
  font-family: Retro;
  font-size: 14px;
  padding: 8px 14px;
  border: 3px solid hotpink;
  background: #7fffd4;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.food-buttons button:hover { transform: scale(1.06); }
.food-buttons button[data-food="veganfriendly"] { background: hotpink; border-color: #7fffd4; }
.food-buttons button[data-food="glutenfree"]    { background: #c9a7ff; border-color: #7fffd4; }

/* FOOD CAROUSEL */
.food-carousel {
  position: relative;
  width: 100%;
  height: 460px;
  margin: 0 auto;
  overflow: visible;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  cursor: grab;
  user-select: none;   /* verhindert Text-Selektion beim Drag */
}
.food-carousel:active { cursor: grabbing; }

.food-slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 462px;
  transform: translateY(-50%);
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity  320ms ease;
  transform-style: preserve-3d;
}
.food-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* verhindert Drag-Konflikt mit Bild */
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}
.food-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}
.food-slide.is-left {
  left: 50%;
  transform: translate(-125%, -50%) scale(0.85) translateZ(-120px);
  opacity: 0.45;
}
.food-slide.is-active {
  left: 50%;
  transform: translate(-50%, -50%) scale(1.12) translateZ(0);
  opacity: 1;
  z-index: 2;
  filter: none;
}
.food-slide.is-active img {
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.food-slide.is-active:hover img { transform: scale(1.06); }
.food-slide.is-right {
  left: 50%;
  transform: translate(25%, -50%) scale(0.85) translateZ(-120px);
  opacity: 0.45;
  z-index: 1;
}
.food-slide.is-left,
.food-slide.is-right { filter: blur(0.6px); }
.food-slide.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
}
.food-slide.is-active .food-overlay {
  opacity: 1;
  pointer-events: auto;
}
.food-line {
  font-family: Retro;
  font-size: 15px;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.food-cta {
  display: inline-block;
  transition: transform 420ms ease, opacity 420ms ease;
  font-family: Retro;
  font-size: 14px;
  color: yellow;
  text-decoration: none;
}
.food-slide.is-active:hover .food-cta { transform: translateX(6px); }

/* ================================================================
   EXPERIENCE — WHY SPACEBURGER
================================================================ */

.why-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.why-bg-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-overlay {
  position: relative;
  z-index: 2;
  padding: 120px 6%;
  max-width: 640px;
}
.why-title {
  font-family: Retro;
  font-size: 64px;
  color: #c60000;
  margin-bottom: 24px;
}
.why-text {
  font-family: Retro;
  font-size: 18px;
  line-height: 1.35;
  color: white;
  margin-top: -20px;
  white-space: pre-wrap;
}

/* ── PRINCIPLES ── */
.win95-bg {
  background-image: url("../assets/images/Win95-Desktop-8bit.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  gap: 40px;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 6%;
  box-sizing: border-box;
}
.book-sb {
  width: 360px;
  animation: float 4s ease-in-out infinite;
  order: 2;
}
.principles-box {
  border: 6px solid red;
  padding: 40px 48px;
  max-width: 520px;
  background: white;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.principles-box h4 {
  font-size: 26px;
  line-height: 1.3;
  font-family: Retro;
  color: #e60000;
  margin-top: 0;
  margin-bottom: 16px;
}
.principles-text {
  font-family: Retro;
  color: black;
  line-height: 1.3;
  white-space: pre-line;
}

/* ── AMBIENCE ── */
.ambience-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ambience-header {
  background: #0b0b0b;
  padding: 60px 10vw;
  flex-shrink: 0;
}
.ambience-headline {
  color: #ff2b2b;
  font-family: Retro, monospace;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.4;
  text-align: left;
}
.ambience-bg {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background-image: image-set(
    url("../assets/images/ambience-bg-1280.webp") type("image/webp"),
    url("../assets/images/ambience-bg.jpg")       type("image/jpeg")
  );
  background-image: url("../assets/images/ambience-bg-1280.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ================================================================
   LOCATIONS
================================================================ */

.locations-section {
  width: 100%;
  background: #0b0b0b;
}
.locations-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: stretch;
}
.loc-column {
  display: flex;
  flex-direction: column;
}
.loc-title-bar {
  background: black;
  color: #ff2b2b;
  font-family: Retro;
  text-align: center;
  padding: 20px;
  font-size: 28px;
}
.loc-frame {
  border: 2px solid black;
  overflow: hidden;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 1;
}
.loc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease;
}
.loc-frame.visible .loc-img {
  transform: translateY(0);
  opacity: 1;
}
.loc-text {
  font-family: Retro;
  color: #ff2b2b;
  font-size: 18px;
  line-height: 1.5;
  padding: 32px 40px;
  background: black;
  white-space: pre-line;
  text-align: left;
  min-height: 160px;
}

/* Maps in Columns */
.maps-in-column {
  width: 100%;
  background: black;
}
.maps-in-column iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.maps-in-column .maps-review-link {
  display: block;
  background: #111;
  color: #ff2b2b;
  font-family: Retro;
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  border-top: 1px solid rgba(255,43,43,0.2);
  transition: background 0.2s ease;
}
.maps-in-column .maps-review-link:hover { background: #ff2b2b; color: black; }

/* ================================================================
   FAMILIES
================================================================ */

#families > .section-bar { display: none !important; }

.families-section {
  position: relative;
  padding: 140px 0 180px 0;
  overflow: hidden;
}
.families-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.families-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
.families-top {
  display: flex;
  justify-content: flex-start;
  padding-left: 6%;
  margin-bottom: 140px;
}
.families-illustration {
  width: auto;
  max-height: 700px;
  object-fit: contain;
  transform: translateY(-30px);
}
.families-gallery { text-align: center; }
.kids-headline {
  font-family: Retro;
  font-size: 42px;
  color: #c60000;
  margin-bottom: 60px;
}
.kids-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 80px;
  cursor: grab;
}
.kids-track {
  display: flex;
  gap: 40px;
  padding: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
/* picture-Wrapper transparent machen: <picture> ist kein echter Flex-Item.
   display:contents lässt das innere <img.kids-slide> direkt im Flex-Container
   erscheinen — identisches Verhalten wie bei den anderen plain <img> slides. */
.kids-track picture {
  display: contents;
}
.kids-slide {
  width: 300px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: white;
  padding: 14px 14px 42px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transform: rotate(-2deg);
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.kids-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e60000;
  background: white;
  color: #e60000;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}
.kids-arrow.left  { left: 10px; }
.kids-arrow.right { right: 10px; }
.kids-arrow:hover { background: red; color: white; }

/* ================================================================
   FRANCHISE — FIX: Background wiederhergestellt
================================================================ */

.franchise-section {
  /* WICHTIG: background direkt hier, NICHT in Media-Query überschrieben */
  background-image: image-set(
    url("../assets/images/bg-Sky-1280.webp") type("image/webp"),
    url("../assets/images/bg-Sky.jpg")       type("image/jpeg")
  );
  background-image: url("../assets/images/bg-Sky-1280.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 140px 8%;
  color: white;
}
.franchise-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 100px 80px;
  max-width: 1100px;
}
.franchise-title {
  font-family: Retro;
  color: #ff2b2b;
  font-size: 56px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.franchise-authority {
  font-family: Retro;
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 24px;
  text-align: left;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.franchise-text {
  font-family: Retro;
  line-height: 1.6;
  margin-top: 30px;
  font-size: 15px;
  color: white;
}
.franchise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.grid-box {
  border: 2px solid rgba(255,0,0,0.4);
  padding: 20px;
  font-family: Retro;
  background: rgba(0,0,0,0.6);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.grid-box .icon svg { width: 32px; height: 32px; fill: #ff2e2e; }
.grid-box:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 25px rgba(255,0,0,0.5);
  border-color: #ff2b2b;
}
.franchise-cta {
  margin-top: 70px;
  text-align: center;
}
.franchise-cta h3 {
  color: #ff2b2b;
  font-family: Retro;
  font-size: 36px;
}
.franchise-apply {
  font-family: Retro;
  border: 2px solid #ff2b2b;
  padding: 18px 42px;
  font-size: 20px;
  background: black;
  transition: all 0.3s ease;
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  color: #ff2b2b;
  text-decoration: none;
}
.franchise-apply:hover {
  background: #ff2b2b;
  color: black;
  box-shadow: 0 0 30px #ff2b2b;
}
.franchise-steps {
  font-family: Retro;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0.6;
  font-size: 14px;
  color: white;
}

/* ================================================================
   CONTACT
================================================================ */

.contact-section {
  position: relative;
  background: #080808;
  padding: 200px 6%;
  color: white;
  overflow: hidden;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: image-set(
    url("../assets/images/pink-grid-1280.webp") type("image/webp"),
    url("../assets/images/pink-grid.png")       type("image/png")
  );
  background: url("../assets/images/pink-grid-1280.webp");
  opacity: 0.12;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
}
.contact-locations {
  display: flex;
  gap: 80px;
  margin-top: 80px;
  flex-wrap: wrap;
}
.contact-card {
  flex: 1;
  min-width: 320px;
  border: 2px solid #ff2b2b;
  padding: 40px;
  font-family: Retro;
  background: rgba(255,255,255,0.04);
}
.contact-card h3 { color: #ff2b2b; margin-bottom: 20px; }
.contact-card a  { color: #ff2b2b; text-decoration: none; }
.contact-meta { margin-top: 60px; text-align: center; }
.reservation-note {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.reservation-note span {
  font-family: Retro;
  color: #ff2b2b;
  font-size: 42px;
}
.reservation-icon { height: 80px; }
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.social-links a { margin: 0 20px; color: #ff2b2b; text-decoration: none; }
/* Social Icons: explizite Klassen statt [alt]-Selektor (Browser-kompatibel) */
.social-icon          { transition: transform 0.2s ease; display: block; }
.social-icon--insta   { height: 34px; }   /* Insta hat mehr inneres Whitespace → kleiner */
.social-icon--fb      { height: 38px; }
.social-icon:hover    { transform: scale(1.12); }

/* ── FAQ ── */
.faq-title {
  font-family: Retro;
  color: #ff2b2b;
  font-size: 36px;
}
.faq-wrapper { margin-top: 140px; }
.faq-item {
  border-bottom: 1px solid #ff2b2b;
  padding: 20px 0;
}
.faq-question {
  background: none;
  border: none;
  color: #ff2b2b;
  font-family: Retro;
  font-size: 20px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 14px;
  font-family: Calibre;
  font-size: 20px;
  color: #ff2b2b;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
}
.legal-accordion .faq-answer {
  background: black;
  padding: 20px;
  font-family: Calibre;
  color: #ff2b2b;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  padding: 20px;
  z-index: 9999;
  display: none; /* JS setzt flex bei Bedarf */
}
.cookie-banner p { color: #ff2b2b; font-family: Retro; }
.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cookie-actions button {
  border: 2px solid #ff2b2b;
  background: black;
  color: #ff2b2b;
  padding: 8px 16px;
  cursor: pointer;
  font-family: Retro;
}

/* ── MISC ── */
.site-footer {
  text-align: center;
  padding: 30px;
  background: black;
  color: #ff2b2b;
  font-size: 14px;
  font-family: Retro;
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reviews (falls vorhanden) */
.reviews-section { background: #0b0b0b; padding: 50px 0; color: white; }
.reviews-inner { max-width: 1200px; margin: auto; padding: 0 6%; text-align: center; }
.reviews-title { font-family: Retro; font-size: 48px; color: #ff2b2b; margin-bottom: 40px; }
.reviews-track { display: flex; gap: 40px; overflow-x: auto; scroll-behavior: smooth; }
.review-card {
  flex: 0 0 360px;
  border: 2px solid #ff2b2b;
  padding: 30px;
  font-family: Retro;
  background: rgba(255,255,255,0.05);
  text-align: left;
}
.review-card p { margin-bottom: 20px; line-height: 1.4; }
.review-card span { font-size: 14px; color: #ff2b2b; }
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: #ff2b2b;
  border: 2px solid #ff2b2b;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.reviews-arrow.left  { left: -10px; }
.reviews-arrow.right { right: -10px; }

/* ================================================================
   MOBILE HEADER COMPONENTS (Desktop: ausgeblendet)
================================================================ */

.mobile-bar, .mobile-action-bar, .mobile-nav { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 2px solid #e60000;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e60000;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f4ecd8;
  z-index: 9998;       /* ÜBER Salato (900), UNTER Cookie (9999) */
  padding: 80px 8% 60px 8%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 2px solid #e60000;
  color: #e60000;
  font-family: Retro;
  font-size: 18px;
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-link {
  font-family: Retro;
  font-size: 20px;
  color: #e60000;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(230,0,0,0.2);
  cursor: pointer;
  display: block;
  transition: padding-left 0.15s ease;
}
.mobile-nav-link:active { background: #e60000; color: white; padding-left: 12px; }

.mobile-action-bar {
  flex-direction: column;
  gap: 5px;
  padding: 6px 12px 8px 12px;
  background: #f4ecd8;
  border-top: 1px solid rgba(230,0,0,0.15);
  box-sizing: border-box;
  width: 100%;
}
.mobile-action-buttons { display: flex; gap: 8px; width: 100%; }
.mobile-action-buttons .btn {
  flex: 1;
  text-align: center;
  font-size: 10px;
  padding: 7px 4px;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  border-width: 2px;
}
.mobile-delivery-bar {
  font-family: CalibreBold;
  color: #0055ff;
  font-size: 12px;
  text-align: center;
  padding: 2px 0 4px 0;
  line-height: 1.3;
  white-space: nowrap;
}
.mobile-delivery-bar a {
  color: #0055ff;
  text-decoration: underline;
  /* Touch-friendly tap target */
  display: inline-block;
  padding: 2px 0;
}

/* ================================================================
   BREAKPOINT: MAX 1024px
================================================================ */

@media (max-width: 1024px) {

  .desktop-only { display: none !important; }

  .site-header {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-bar .logo {
    height: 36px;
    width: auto;
    max-width: calc(100vw - 80px);
    object-fit: contain;
    flex-shrink: 1;
  }
  .hamburger { display: flex; flex-shrink: 0; }
  .mobile-action-bar { display: flex; }
  .mobile-nav { display: flex; }

  /* ── HERO ── */
  .hero { overflow: hidden; }
  .pixel-map { width: 140%; max-width: none; margin-left: -20%; }
  .hero-usp {
    font-size: clamp(9px, 2.4vw, 16px);
    bottom: 10px;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  }
  .hotspot { display: none; }

  /* ── SECTION BAR ── */
  .section-bar { font-size: clamp(26px, 5vw, 44px); height: 64px; }

  /* ── SALATO ── */
  #salato-wrapper { right: 2%; bottom: auto; top: 28vh; width: 155px; }
  #mrSalato { width: 96px; }
  .speech-bubble {
    font-size: 9px;
    min-height: 75px;
    padding: 9px 11px;
    border-width: 3px;
    line-height: 1.4;
  }

  /* ── FOOD ── */
  .food-area { min-height: auto; padding-bottom: 40px; }
  .food-content { padding-left: 0; padding-top: 30px; align-items: center; }
  .food-illustration { display: none; }
  .food-illustration-anchor { display: block; width: 100%; }
  .food-gallery { width: 100%; margin: 0 auto 16px auto; }
  .food-carousel { height: 280px; overflow: hidden; }
  .food-slide { width: 200px; }
  .food-line  { font-size: 10px; margin-bottom: 4px; }
  .food-cta   { font-size: 10px; }
  .food-overlay { padding: 12px; }
  .food-buttons {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 20px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .food-buttons .row { justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
  .food-buttons button { font-size: 11px; padding: 8px 10px; }

  /* ── WHY SPACEBURGER ── */
  .why-section { height: auto; min-height: 45vh; padding-bottom: 40px; }
  .why-overlay { padding: 20px 6% 32px 6%; max-width: 100%; }
  .why-title { font-size: clamp(26px, 6.5vw, 48px); margin-bottom: 14px; }
  .why-text  { font-size: clamp(10px, 2vw, 15px); line-height: 1.5; }

  /* ── PRINCIPLES ── */
  .win95-bg {
    flex-direction: column;
    padding: 40px 6%;
    gap: 24px;
    min-height: auto;
    align-items: center;
  }
  .book-sb { width: 160px; order: 0; }
  .principles-box { padding: 22px 18px; max-width: 100%; border-width: 4px; }
  .principles-box h4 { font-size: clamp(13px, 2.8vw, 20px); }
  .principles-text   { font-size: clamp(10px, 1.9vw, 13px); line-height: 1.5; }

  /* ── AMBIENCE ── */
  .ambience-header { padding: 36px 6%; }
  .ambience-headline { font-size: clamp(13px, 2.8vw, 22px); }
  .ambience-bg {
    height: 56vw;
    min-height: 220px;
    max-height: 480px;
  }

  /* ── LOCATIONS ── */
  .locations-images { grid-template-columns: 1fr; }
  .loc-title-bar { font-size: 20px; padding: 12px; }
  .loc-text { font-size: 13px; padding: 18px 20px; min-height: auto; }
  .maps-in-column iframe { height: 200px; }

  /* ── FAMILIES ── */
  .families-section { padding: 50px 0 60px 0; }
  .families-top { justify-content: center; padding-left: 0; margin-bottom: 30px; }
  .families-illustration { max-height: 220px; transform: none; }
  .kids-headline { font-size: clamp(18px, 4vw, 32px); margin-bottom: 24px; padding: 0 6%; }
  .kids-carousel { padding: 0 36px; }
  .kids-slide { width: 190px; }

  /* ── FRANCHISE ── */
  .franchise-section { padding: 50px 5%; }
  .franchise-overlay { padding: 32px 20px; max-width: 100%; box-sizing: border-box; }
  .franchise-title { font-size: clamp(22px, 5vw, 40px) !important; margin-bottom: 10px; }
  .franchise-authority { font-size: 11px !important; margin-bottom: 12px; }
  .franchise-text { font-size: clamp(9px, 1.8vw, 12px); line-height: 1.5; margin-top: 12px; }
  .franchise-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
  .grid-box { padding: 14px 10px; gap: 8px; }
  .grid-box span { font-size: 11px; }
  .franchise-cta { margin-top: 30px; }
  .franchise-cta h3 { font-size: clamp(16px, 3.5vw, 26px); }
  .franchise-apply { font-size: 14px; padding: 12px 22px; }
  .franchise-steps { flex-direction: column; gap: 8px; align-items: center; font-size: 11px; }

  /* ── CONTACT ── */
  .contact-section { padding: 40px 6% 50px 6%; }
  .contact-locations { flex-direction: column; gap: 24px; margin-top: 30px; }
  .contact-card { min-width: 0; padding: 20px 18px; font-size: 12px; }
  .reservation-note { flex-wrap: nowrap; gap: 10px; }
  .reservation-note span { font-size: clamp(16px, 3.8vw, 28px); white-space: nowrap; }
  .reservation-icon { height: 40px; }
  .faq-title    { font-size: clamp(16px, 3.5vw, 26px); }
  .faq-question { font-size: clamp(12px, 2.6vw, 16px); }
  .faq-wrapper  { margin-top: 40px; }

  /* ── COOKIE ── */
  .cookie-content { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-banner p { font-size: 11px; }
  .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .cookie-actions button { font-size: 11px; padding: 6px 10px; }

  /* ── FOOTER ── */
  .site-footer { font-size: 11px; padding: 18px 16px; }
}

/* ================================================================
   BREAKPOINT: MAX 600px
================================================================ */

@media (max-width: 600px) {
  .mobile-bar .logo { height: 30px; }
  .mobile-bar { padding: 6px 12px; }

  .pixel-map { width: 160%; margin-left: -30%; }
  .hero-usp  { font-size: clamp(7px, 2.8vw, 11px); white-space: normal; text-align: center; bottom: 5px; }

  #salato-wrapper { top: 24vh; right: 1%; width: 125px; }
  #mrSalato { width: 78px; }
  .speech-bubble { font-size: 8px; min-height: 55px; padding: 7px; border-width: 2px; }

  .food-carousel { height: 240px; }
  .food-slide    { width: 155px; }

  .franchise-grid { grid-template-columns: 1fr; }
  .book-sb        { width: 120px; }
  .kids-carousel  { padding: 0 28px; }
  .kids-slide     { width: 155px; }

  .maps-in-column iframe { height: 180px; }
}

/* ================================================================
   MAPS CONSENT PLACEHOLDER
   Zeigt einen Hinweis + Link solange keine Cookie-Einwilligung da.
================================================================ */

.maps-consent-placeholder {
  width: 100%;
  height: 260px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,43,43,0.15);
  border-bottom: 1px solid rgba(255,43,43,0.15);
}

.maps-consent-inner {
  text-align: center;
  padding: 20px;
  max-width: 320px;
}

.maps-consent-inner p {
  font-family: Retro;
  color: #ff2b2b;
  font-size: 13px;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.maps-consent-sub {
  font-family: Calibre, sans-serif !important;
  font-size: 12px !important;
  color: rgba(255,43,43,0.65) !important;
  margin-bottom: 16px !important;
}

.maps-consent-link {
  display: inline-block;
  font-family: Retro;
  font-size: 12px;
  color: #ff2b2b;
  border: 1px solid rgba(255,43,43,0.5);
  padding: 8px 16px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.maps-consent-link:hover {
  background: #ff2b2b;
  color: black;
}

@media (max-width: 1024px) {
  .maps-consent-placeholder {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .maps-consent-placeholder {
    height: 160px;
  }
  .maps-consent-inner p {
    font-size: 11px;
  }
}