/* =========================================================
   Weltenpark – Klickdemo
   Eigenständiges Design (nicht mit realen Marken verbunden)
   ========================================================= */

:root {
  --brand:        #0e7a5f;   /* sattes Grün        */
  --brand-dark:   #0a5c47;
  --brand-light:  #16a37e;
  --accent:       #f2a007;   /* warmes Gelb/Orange */
  --accent-dark:  #d98404;
  --sky:          #2b8fd6;
  --ink:          #16211d;
  --muted:        #5c6b66;
  --paper:        #ffffff;
  --bg:           #f4f7f5;
  --card:         #ffffff;
  --line:         #e3 eae7;
  --line:         #e3eae7;
  --radius:       16px;
  --shadow:       0 10px 30px rgba(16, 40, 33, .10);
  --shadow-sm:    0 4px 14px rgba(16, 40, 33, .08);
  --maxw:         1180px;
  --font:         "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Demo-Banner ---------- */
.demo-ribbon {
  background: repeating-linear-gradient(45deg, #1c1c1c, #1c1c1c 14px, #262626 14px, #262626 28px);
  color: #ffd85e;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 7px 12px;
  font-weight: 600;
}
.demo-ribbon strong { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.02em;
  color: var(--brand-dark);
}
.logo .mark {
  width: 42px; height: 42px;
  flex: 0 0 42px;
}
.logo span.sub {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  list-style: none;
  padding: 0; margin-top: 0; margin-bottom: 0;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); border-color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .12s ease, box-shadow .15s, background .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #3a2500; box-shadow: 0 6px 16px rgba(242,160,7,.35); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(14,122,95,.3); }
.btn-brand:hover { background: var(--brand-dark); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #0e7a5f url("../img/photos/hero.jpg") center 35% / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(43,143,214,.72) 0%, rgba(14,122,95,.82) 62%, rgba(10,92,71,.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 92px 0 150px;
  max-width: 640px;
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero p.lead {
  font-size: 1.18rem;
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.94);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-scene svg { position: absolute; bottom: 0; right: 0; width: 62%; min-width: 560px; opacity: .95; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; display: block; }

/* ---------- Info-Bar ---------- */
.infobar {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  margin-top: -46px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.infobar .cell {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.infobar .cell:last-child { border-right: none; }
.infobar .ic { color: var(--brand); flex: 0 0 auto; }
.infobar .k { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.infobar .v { font-weight: 700; font-size: 1.02rem; }

/* ---------- Sections ---------- */
section.block { padding: 74px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .82rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 8px 0 12px;
  letter-spacing: -.02em;
}
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Themenwelten ---------- */
.worlds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.world-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 300px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s;
  cursor: pointer;
}
.world-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,40,33,.18); }
.world-card .wc-bg { position: absolute; inset: 0; z-index: 0; }
.world-card .wc-bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.world-card:hover .wc-bg img { transform: scale(1.06); }
.world-card .wc-body {
  position: relative; z-index: 2;
  padding: 24px;
}
.world-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72) 100%);
}
.world-card h3 { margin: 0 0 4px; font-size: 1.5rem; }
.world-card p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.9); }
.world-card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.9); color: var(--brand-dark);
  font-size: .74rem; font-weight: 800; padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* ---------- Attraktionen-Grid ---------- */
.attractions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.attr-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s;
  display: flex; flex-direction: column;
}
.attr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.attr-media { height: 168px; position: relative; overflow: hidden; }
.attr-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.attr-card:hover .attr-media img { transform: scale(1.05); }
.attr-media .badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: #3a2500;
  font-weight: 800; font-size: .74rem; padding: 5px 11px; border-radius: 999px;
}
.attr-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.attr-body h3 { margin: 0; font-size: 1.22rem; }
.attr-meta { display: flex; gap: 14px; color: var(--muted); font-size: .86rem; font-weight: 600; }
.attr-meta span { display: inline-flex; align-items: center; gap: 5px; }
.attr-body p { margin: 2px 0 0; color: var(--muted); font-size: .94rem; }
.attr-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.thrill { display: inline-flex; gap: 3px; }
.thrill i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.thrill i.on { background: var(--accent); }

/* ---------- Preiskarte (Altersstaffel) ---------- */
.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-card .pc-head {
  text-align: center;
  padding: 34px 30px 26px;
  border-bottom: 1px solid var(--line);
}
.price-card .pc-brand {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.price-card .pc-head h3 { margin: 0; font-size: 2rem; letter-spacing: -.02em; color: var(--ink); }
.price-card .pc-head .sub { color: var(--muted); font-size: 1.02rem; margin-top: 2px; }
.price-card .pc-valid {
  display: inline-block;
  margin-top: 18px;
  background: var(--bg);
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
  padding: 7px 16px;
  border-radius: 999px;
}
.price-card .pc-rows { padding: 12px 30px 8px; }
.pc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pc-row:last-child { border-bottom: none; }
.pc-row .who { font-weight: 700; font-size: 1.05rem; }
.pc-row .who small { display: block; font-weight: 500; color: var(--muted); font-size: .88rem; margin-top: 2px; }
.pc-row .amount { font-weight: 800; font-size: 1.12rem; color: var(--brand-dark); white-space: nowrap; text-align: right; }
.pc-row .amount.free { color: var(--brand-light); }
.pc-row .amount sup { font-size: .62em; }
.price-card .pc-foot { padding: 16px 30px 26px; color: var(--muted); font-size: .84rem; margin: 0; }
.price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 22px; }

/* ---------- Ticket-Karten ---------- */
.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.ticket {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.ticket:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ticket.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.ticket.featured .flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #3a2500; font-weight: 800; font-size: .76rem;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.ticket h3 { margin: 0 0 4px; font-size: 1.3rem; }
.ticket .sub { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.ticket .price { font-size: 2.6rem; font-weight: 800; color: var(--brand-dark); line-height: 1; }
.ticket .price small { font-size: .95rem; color: var(--muted); font-weight: 600; }
.ticket ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 10px; }
.ticket li { display: flex; gap: 10px; font-size: .95rem; }
.ticket li svg { flex: 0 0 auto; color: var(--brand-light); margin-top: 3px; }
.ticket .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; border-radius: 22px; padding: 50px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 10px; }
.cta-band p { margin: 0 0 26px; font-size: 1.1rem; color: rgba(255,255,255,.92); }

/* ---------- Footer ---------- */
.site-footer { background: #10201b; color: #b9c9c3; padding: 56px 0 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: var(--accent); }
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer .logo .sub { color: #7f948d; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .86rem; color: #7f948d;
}

/* ---------- Ticket-Flow / Modal ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; padding: 66px 0 54px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 10px; }
.page-hero p { font-size: 1.12rem; color: rgba(255,255,255,.9); max-width: 560px; margin: 0; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }

.cart-bar {
  position: sticky; bottom: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(16,40,33,.08);
  transform: translateY(110%); transition: transform .25s ease;
}
.cart-bar.show { transform: translateY(0); }
.cart-inner { display: flex; align-items: center; gap: 18px; padding: 16px 0; }
.cart-inner .total { font-size: 1.3rem; font-weight: 800; }
.cart-inner .count { color: var(--muted); font-weight: 600; }
.cart-inner .btn { margin-left: auto; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,20,16,.55); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff; border-radius: 20px; max-width: 460px; width: 100%;
  padding: 34px 32px; box-shadow: 0 30px 70px rgba(0,0,0,.35);
  text-align: center; animation: pop .22s ease;
}
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .check {
  width: 68px; height: 68px; margin: 0 auto 18px;
  background: var(--brand-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.modal h3 { margin: 0 0 8px; font-size: 1.5rem; }
.modal p { color: var(--muted); margin: 0 0 24px; }
.modal .ref { background: var(--bg); border-radius: 10px; padding: 12px; font-weight: 700; margin-bottom: 20px; letter-spacing: .04em; }

.qty {
  display: inline-flex; align-items: center; border: 1.5px solid var(--line);
  border-radius: 999px; overflow: hidden;
}
.qty button {
  width: 34px; height: 34px; border: none; background: var(--bg);
  font-size: 1.2rem; cursor: pointer; color: var(--brand-dark); font-weight: 700;
}
.qty button:hover { background: var(--line); }
.qty span { width: 40px; text-align: center; font-weight: 700; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.hide { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .worlds, .tickets, .footer-grid { grid-template-columns: 1fr 1fr; }
  .infobar { grid-template-columns: 1fr 1fr; }
  .infobar .cell:nth-child(2) { border-right: none; }
  .infobar .cell:nth-child(1), .infobar .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 680px) {
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .btn { justify-content: center; margin-top: 8px; }
  .nav-toggle { display: block; margin-left: auto; }
  .worlds, .tickets, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 24px; }
}
