/* =============================================================================
   TOBELINOO – Website-Demo  ·  styles.css
   Mobil zuerst. Ab 360px Breite ohne horizontalen Scroll, Buttons >= 44px.
   Farben werden zur Laufzeit aus config.js gesetzt; die Werte hier sind
   Fallbacks, falls JavaScript deaktiviert ist.
   ============================================================================= */

/* --- Lokale Schrift (optional) -----------------------------------------------
   Es werden keine externen Schriften geladen. Der Stack unten nutzt die auf
   Windows/macOS vorhandenen abgerundeten Systemschriften ("Segoe UI Rounded"
   bzw. "SF Pro Rounded") und wirkt dadurch verspielt – ganz ohne Download.

   Möchtest du eine eigene Schrift (z. B. "Fredoka" oder "Baloo 2"),
   lege die .woff2-Dateien in /assets/fonts/ und aktiviere:

   @font-face {
     font-family: "Brand Display";
     src: url("assets/fonts/brand-display.woff2") format("woff2");
     font-weight: 400 800; font-display: swap;
   }
   … und ergänze "Brand Display" vorne in --font-display.
--------------------------------------------------------------------------------- */

:root {
  --green:      #2fae4e;
  --green-dark: #1c7d38;
  --yellow:     #ffc32e;
  --coral:      #ff6b45;
  --blue:       #33b1e8;
  --purple:     #9a63e6;
  --cream:      #fff7ec;
  --ink:        #2c2722;
  --card:       #ffffff;

  --ink-soft:   #5c554c;
  --line:       #ece3d5;

  --font-display: "Segoe UI Rounded", "SF Pro Rounded", ui-rounded, "Nunito",
                  "Baloo 2", "Trebuchet MS", system-ui, -apple-system, "Segoe UI",
                  Roboto, sans-serif;
  --font-text:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
                  Arial, sans-serif;

  --radius:     28px;
  --radius-sm:  18px;
  --shadow:     0 10px 30px rgba(44, 39, 34, .10);
  --shadow-sm:  0 4px 14px rgba(44, 39, 34, .08);
  --tap:        48px;
  --maxw:       1080px;
  --pad:        clamp(16px, 4.5vw, 34px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;           /* Platz für Sticky-Header bei Ankersprüngen */
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;                    /* kein horizontaler Scroll, kein Scroll-Container */
}

body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;                    /* Sicherheitsnetz gegen horizontalen Scroll */
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

/* Lange Wörter (E-Mail, URL) nie überlaufen lassen */
.break { overflow-wrap: anywhere; word-break: break-word; }

/* --- Layout-Bausteine --------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(40px, 8vw, 76px); }
.section--tint  { background: #fff; }
.section--cream { background: var(--cream); }

.section-head { margin-bottom: clamp(20px, 4vw, 34px); }
.section-head h2 {
  font-size: clamp(1.25rem, 4.3vw, 1.8rem);
  display: inline-block;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 56px; height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--yellow);
}
.section-head p {
  margin-top: 12px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 4.5vw, 28px);
  box-shadow: var(--shadow-sm);
}

.grid { display: grid; gap: 18px; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,.12);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,.12); }

.btn--primary { background: var(--green);  color: #fff; }
.btn--sun     { background: var(--yellow); color: var(--ink); }
.btn--coral   { background: var(--coral);  color: #fff; }
.btn--ghost   {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn--block   { width: 100%; }

/* --- Header ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 236, .92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding-block: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo {
  width: auto;
  height: clamp(46px, 12.5vw, 58px);
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap); height: var(--tap);
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

.site-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 2px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px var(--pad) 16px;
}
.site-header.nav-open .site-nav { display: block; }
.site-nav a {
  display: block;
  padding: 13px 6px;
  min-height: var(--tap);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
}
.site-nav a:last-child { border-bottom: 0; }

/* --- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(80% 60% at 95% 0%, rgba(51,177,232,.20), transparent 60%),
    radial-gradient(70% 60% at 0% 100%, rgba(255,195,46,.28), transparent 55%),
    radial-gradient(60% 50% at 50% 120%, rgba(47,174,78,.18), transparent 60%),
    linear-gradient(180deg, #eafaf0 0%, #fef8ee 55%, #ffffff 100%);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 2px solid var(--line);
}
.hero .wrap { padding-block: clamp(28px, 7vw, 60px); position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(1.7rem, 7vw, 2.7rem);
  max-width: 20ch;
  color: var(--ink);
}
.hero p {
  margin-top: 12px;
  font-size: clamp(1rem, 3.4vw, 1.12rem);
  max-width: 46ch;
  color: var(--ink-soft);
}
.hero-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-cta .btn { flex: 1 1 auto; }
.hero-facts {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
  font-size: .86rem;
}
.hero-facts li {
  background: #fff;
  border: 2px solid var(--line);
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-facts li:nth-child(2) { transform: rotate(-1.5deg); }
.hero-facts li:nth-child(3) { transform: rotate(1.5deg); }
.hero-logo {
  width: clamp(270px, 82vw, 460px);
  height: auto;
  margin: 0 0 4px -8px;
  filter: drop-shadow(0 12px 20px rgba(28, 125, 56, .22));
}

/* Dschungel-Blätter im Hero – reines Inline-SVG, keine externe Datei */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: .5;
}
.hero::before {
  width: 200px; height: 200px;
  top: -46px; right: -46px;
  transform: rotate(15deg);
  opacity: .38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 4C24 14 8 40 10 78c34 6 66-12 82-52C74 10 60 6 50 4Z' fill='%232fae4e'/%3E%3Cpath d='M20 74C34 50 52 30 82 20' stroke='%23ffffff' stroke-width='3' fill='none'/%3E%3C/svg%3E");
}
.hero::after {
  width: 160px; height: 160px;
  bottom: -50px; left: -48px;
  transform: rotate(-160deg);
  opacity: .34;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 4C24 14 8 40 10 78c34 6 66-12 82-52C74 10 60 6 50 4Z' fill='%232fae4e'/%3E%3Cpath d='M20 74C34 50 52 30 82 20' stroke='%23ffffff' stroke-width='3' fill='none'/%3E%3C/svg%3E");
}

/* --- Öffnungszeiten & Preise --------------------------------------- */
.two-col { grid-template-columns: 1fr; }

.hours-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.hours-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 2px solid var(--line);
}
.hours-row .day { font-weight: 800; font-family: var(--font-display); }
.hours-row .times { margin-left: auto; text-align: right; font-weight: 600; }
.hours-row .times span { display: block; }
.hours-row.is-closed { opacity: .72; }
.hours-row.is-closed .times { color: var(--coral); font-weight: 800; }
.note {
  margin-top: 14px;
  font-size: .92rem;
  color: var(--ink-soft);
}

.tariff { display: grid; gap: 14px; }
.tariff-card {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.tariff-card h3 {
  background: var(--blue);
  color: #fff;
  font-size: 1.05rem;
  padding: 12px 16px;
}
.tariff-card .sub {
  padding: 6px 16px 0;
  font-size: .82rem;
  color: var(--ink-soft);
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
}
.tariff-card .price-row:first-of-type { border-top: 0; }
.price-row .price { font-weight: 800; font-family: var(--font-display); white-space: nowrap; }

/* --- Kindergeburtstag -------------------------------------------------- */
.birthday {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(155deg, var(--coral) 0%, #ff8a3d 55%, var(--yellow) 130%);
  color: #fff;
}
.birthday .section-head h2 { color: #fff; }
.birthday .section-head h2::after { background: #fff; }
.birthday-lead { font-size: 1.05rem; max-width: 58ch; }
.birthday-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.bcard {
  background: rgba(255,255,255,.14);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(3px);
}
.bcard h3 { font-size: 1.1rem; margin-bottom: 10px; }
.bcard .big-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}
.ticklist { list-style: none; padding: 0; display: grid; gap: 8px; }
.ticklist li { position: relative; padding-left: 28px; }
.ticklist li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: #fff; color: var(--coral);
  border-radius: 50%;
  font-size: .8rem; font-weight: 900;
}
.bcard--gift  { background: rgba(255,255,255,.22); }
.birthday .note-block {
  margin-top: 18px;
  background: rgba(0,0,0,.14);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: .93rem;
}
.birthday .note-block ul { margin: 8px 0 0; padding-left: 18px; display: grid; gap: 6px; }
.birthday .btn { margin-top: 0; }
.bd-cta-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bd-mascot {
  width: clamp(96px, 26vw, 150px);
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .2));
}
.badge {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* --- Spielbereiche --------------------------------------------------- */
.attractions-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.attraction {
  text-align: left;
  border-radius: var(--radius);
  padding: 18px;
  border: 2px solid var(--line);
  background: #fff;
}
.attraction .ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.attraction .ico svg { width: 30px; height: 30px; }
.attraction:nth-child(6n+1) .ico { background: rgba(47,174,78,.16);  color: var(--green-dark); }
.attraction:nth-child(6n+2) .ico { background: rgba(51,177,232,.16); color: #1c6f95; }
.attraction:nth-child(6n+3) .ico { background: rgba(255,107,69,.16); color: #c1421f; }
.attraction:nth-child(6n+4) .ico { background: rgba(255,195,46,.22); color: #9a7400; }
.attraction:nth-child(6n+5) .ico { background: rgba(154,99,230,.16); color: #6b3fb0; }
.attraction:nth-child(6n+6) .ico { background: rgba(47,174,78,.16);  color: var(--green-dark); }
.attraction h3 { font-size: 1.05rem; margin-bottom: 4px; }
.attraction p { font-size: .92rem; color: var(--ink-soft); }

/* --- Gastronomie --------------------------------------------------- */
.section-head--with-mascot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.gastro-mascot {
  width: clamp(84px, 24vw, 140px);
  height: auto;
  flex: none;
  margin-bottom: -6px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .12));
}
.menu-grid { grid-template-columns: 1fr; }
.menu-card h3 {
  font-size: 1.1rem;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 3px solid var(--yellow);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .m-name { font-weight: 700; }
.menu-item .m-detail { display: block; font-weight: 400; font-size: .84rem; color: var(--ink-soft); }
.menu-item .m-price { font-weight: 800; font-family: var(--font-display); white-space: nowrap; }
.gastro-note {
  margin-top: 18px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .92rem;
}

/* --- Anfahrt & Kontakt ------------------------------------------------- */
.contact-grid { grid-template-columns: 1fr; }
.map-card { padding: 0; overflow: hidden; }
.map-link {
  position: relative;
  display: block;
  aspect-ratio: 640 / 380;
  background: #e8efe6;
}
.map-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-attr {
  position: absolute;
  right: 0; bottom: 0;
  background: rgba(255, 255, 255, .82);
  color: #333;
  font-size: .68rem;
  padding: 2px 6px;
  border-top-left-radius: 8px;
}
.map-card .map-foot {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
  padding: 14px 16px;
}
.contact-lines { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 4px; }
.contact-lines li { display: flex; gap: 10px; align-items: flex-start; }
.contact-lines .k { font-weight: 800; font-family: var(--font-display); min-width: 92px; }
.contact-actions { display: grid; gap: 10px; margin-top: 16px; }

/* --- Kontaktformular (Demo) --------------------------------------------- */
.form { display: grid; gap: 14px; margin-top: 6px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .92rem; }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  min-height: var(--tap);
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.form-demo-note {
  display: none;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
}
.form-demo-note.is-visible { display: block; }
.form-caption { font-size: .86rem; color: var(--ink-soft); }

/* --- Angebot (SBRT) ------------------------------------------------- */
.offer { background: var(--cream); border-top: 3px dashed var(--line); }
.offer .section-head h2::after { background: var(--green); }
.offer-grid { grid-template-columns: 1fr; margin-top: 8px; }
.offer-item {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.offer-item .o-name { font-weight: 800; font-family: var(--font-display); }
.offer-item .o-detail { display: block; font-size: .82rem; color: var(--ink-soft); font-weight: 400; }
.offer-item .o-price { font-size: 1.2rem; font-weight: 800; font-family: var(--font-display); white-space: nowrap; color: var(--green-dark); }
.offer .vat-note { margin-top: 14px; font-size: .88rem; color: var(--ink-soft); }

/* --- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding-block: clamp(30px, 6vw, 48px);
  padding-bottom: 96px; /* Platz für den schwebenden WhatsApp-Button */
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-brand img {
  width: clamp(150px, 46vw, 220px);
  height: auto;
  object-fit: contain;
}
.site-footer .cols {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .8;
  margin-bottom: 8px;
}
.site-footer a { color: #fff; }
.footer-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-block;
  min-height: var(--tap);
  line-height: var(--tap);
}
.site-footer .foot-links { display: grid; gap: 6px; }
.site-footer .foot-links a { min-height: var(--tap); line-height: var(--tap); font-weight: 700; }
.demo-strip {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .82rem;
  opacity: .82;
}

/* --- WhatsApp Floating-Button --------------------------------------- */
.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.wa-fab svg { width: 30px; height: 30px; }

/* --- Sub-Seiten (Impressum / Datenschutz) --------------------------- */
.legal-page { padding-block: clamp(30px, 7vw, 64px); }
.legal-page h1 { font-size: clamp(1.5rem, 5.5vw, 2.1rem); margin-bottom: 6px; }
.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-page p, .legal-page li { color: var(--ink); font-size: .98rem; }
.legal-page ul { padding-left: 20px; display: grid; gap: 6px; margin-top: 6px; }
.legal-page .addr { margin: 8px 0; line-height: 1.7; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-display);
}
.legal-note {
  margin-top: 30px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .9rem;
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 0 0 12px 0;
  font-weight: 800;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* =============================================================================
   VERSPIELTE DETAILS  (Sticker-Look, kleine Bewegung)
   ============================================================================= */

/* leichte Schräglage wie aufgeklebte Sticker – beim Darüberfahren gerade */
.badge { transform: rotate(-4deg); }
.tariff-card h3,
.menu-card h3 { transform: rotate(-1deg); transform-origin: left center; }

.attraction { transition: transform .18s ease, box-shadow .18s ease; }
.attraction:nth-child(odd)  { transform: rotate(-0.8deg); }
.attraction:nth-child(even) { transform: rotate(0.8deg); }
.attraction:hover {
  transform: rotate(0) translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}
.attraction .ico { transition: transform .18s ease; }
.attraction:hover .ico { transform: rotate(-8deg) scale(1.08); }

.card { transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* Maskottchen wippen sanft */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.bd-mascot     { animation: floaty 4s ease-in-out infinite; }
.gastro-mascot { animation: floaty 5s ease-in-out infinite .5s; }
.hero-logo     { animation: floaty 6s ease-in-out infinite; }
.wa-fab        { animation: floaty 3.5s ease-in-out infinite; }

/* --- Scroll-Animationen (werden per JS aktiviert) --------------------- */
.anim-ready .reveal {
  opacity: 0;
  transform: translateY(22px) scale(.97);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .3, 1.2);
}
.anim-ready .reveal.is-visible { opacity: 1; transform: none; }
/* kleiner Nachzieh-Effekt in Rastern */
.anim-ready .attractions-grid .reveal:nth-child(2) { transition-delay: .06s; }
.anim-ready .attractions-grid .reveal:nth-child(3) { transition-delay: .12s; }
.anim-ready .attractions-grid .reveal:nth-child(4) { transition-delay: .18s; }
.anim-ready .attractions-grid .reveal:nth-child(5) { transition-delay: .24s; }
.anim-ready .attractions-grid .reveal:nth-child(6) { transition-delay: .30s; }
.anim-ready .menu-grid .reveal:nth-child(2) { transition-delay: .08s; }
.anim-ready .menu-grid .reveal:nth-child(3) { transition-delay: .16s; }

/* =============================================================================
   BREAKPOINTS
   ============================================================================= */
@media (min-width: 560px) {
  .two-col       { grid-template-columns: 1fr 1fr; }
  .tariff        { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .offer-grid    { grid-template-columns: repeat(3, 1fr); }
  .site-footer .cols { grid-template-columns: repeat(3, 1fr); }
  .hero-facts    { grid-auto-flow: row; }
  .hero-cta .btn { flex: 0 1 auto; }
}

@media (min-width: 760px) {
  .birthday-grid { grid-template-columns: 1fr 1fr; }
  .birthday-grid .bcard--wide { grid-column: 1 / -1; }
  .menu-grid     { grid-template-columns: repeat(3, 1fr); }
  .contact-grid  { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .nav-toggle    { display: none; }
  .site-nav {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 4px;
  }
  .site-nav a {
    border: 0;
    padding: 8px 9px;
    min-height: 40px;
    border-radius: 10px;
    font-size: .92rem;
    white-space: nowrap;
  }
  .site-nav a:hover { background: rgba(0,0,0,.06); }
}

@media (min-width: 980px) {
  .attractions-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero: Logo rechts, Text links – füllt die Fläche auf großen Screens */
  .hero .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    column-gap: 44px;
    align-items: center;
  }
  .hero-logo {
    grid-column: 2;
    grid-row: 1 / 5;
    width: 100%;
    margin: 0;
    align-self: center;
  }
  .hero h1, .hero p, .hero-cta, .hero-facts { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .attraction, .attraction .ico { transition: none; }
  .bd-mascot, .gastro-mascot, .hero-logo, .wa-fab { animation: none; }
  .badge, .tariff-card h3, .menu-card h3,
  .attraction:nth-child(odd), .attraction:nth-child(even),
  .hero-facts li:nth-child(2), .hero-facts li:nth-child(3) { transform: none; }
  .anim-ready .reveal { opacity: 1; transform: none; transition: none; }
}
