/* ============================================
   StarShare La Palma — Landing Page Styles
   Tiefdunkel, goldene Akzente, Astro-Typografie
   ============================================ */

:root {
  --bg: #05060e;
  --bg-alt: #0a0d1c;
  --bg-card: rgba(16, 20, 40, 0.72);
  --bg-card-solid: #10142a;
  --border: rgba(212, 175, 55, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-bright: #f0cf6d;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text: #e8e6df;
  --text-dim: #9a9db4;
  --green: #5dd39e;
  --red: #e36d6d;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.mono { font-family: var(--mono); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ===== Starfield ===== */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  letter-spacing: 0.01em;
}
h1 em { font-style: italic; color: var(--gold-bright); }

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-intro {
  max-width: 620px;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.micro-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1.2rem;
}

/* ===== Layout ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.5rem;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(10, 13, 28, 0.85) 12%, rgba(10, 13, 28, 0.85) 88%, transparent);
}
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8932a);
  color: #0a0a10;
}
.btn-gold:hover {
  box-shadow: 0 0 28px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-full { width: 100%; margin-top: 1.4rem; }
.btn-paypal {
  background: #ffc439;
  color: #003087;
  border-radius: 6px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: filter 0.2s;
}
.btn-paypal:hover { filter: brightness(1.07); }
.btn-paypal strong { font-style: italic; color: #003087; }
.btn-paypal em { font-style: italic; color: #0070ba; font-weight: 700; }

/* ===== Nav ===== */
.nav {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 6, 14, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo-star { color: var(--gold); }
.logo-thin { font-weight: 500; color: var(--text-dim); }
.nav-logo-img { height: 180px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-bright); }

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.hero-content { max-width: 820px; position: relative; z-index: 1; }
/* Herobild-Ebene: zeigt img/hero.jpg, falls vorhanden; sonst nur die
   abdunkelnde Verlaufsschicht über dem Sternenhimmel. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(5, 6, 14, 0.55), rgba(5, 6, 14, 0.88)),
    url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.6rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 560px;
  margin: 1.6rem auto 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-status {
  margin-top: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 2.2rem;
  background: rgba(16, 20, 40, 0.65);
  box-shadow: 0 0 40px rgba(93, 211, 158, 0.08);
  text-align: left;
}
.hero-status-count {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 24px rgba(93, 211, 158, 0.45);
}
.hero-status-count small {
  font-size: 1.4rem;
  color: var(--text-dim);
  text-shadow: none;
}
.hero-status-label {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}
.hero-status-label small {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-dim);
}
.pulse-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93, 211, 158, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(93, 211, 158, 0); }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  animation: bob 2.4s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== Hook (provokante Eröffnung) ===== */
.hook {
  position: relative;
  z-index: 1;
  padding: 5.5rem 1.5rem;
  text-align: center;
  background: rgba(10, 13, 28, 0.7);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.hook-kicker {
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.3rem;
}
.hook-line {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.hook-sub {
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 2.2rem;
  font-size: 1.06rem;
}

/* ===== Partner ===== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  padding: 2.6rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.15s;
}
.partner-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.partner-logo { max-height: 64px; max-width: 80%; object-fit: contain; }
.partner-name { font-family: var(--serif); font-size: 1.6rem; color: var(--text); }
.partner-link { font-family: var(--mono); font-size: 0.82rem; color: var(--gold-bright); }

/* ===== Teleskop-Karten ===== */
.telescope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.telescope-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 1.8rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s;
}
.telescope-card:hover { border-color: var(--border); }
.tcard-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.tcard-head h3 { margin: 0; }
.tcard-loc { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 1.2rem; }
.status-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.status-free { background: rgba(93, 211, 158, 0.12); color: var(--green); border: 1px solid rgba(93, 211, 158, 0.3); }
.status-busy { background: rgba(227, 109, 109, 0.1); color: var(--red); border: 1px solid rgba(227, 109, 109, 0.3); }
.status-longterm { background: rgba(212, 175, 55, 0.1); color: var(--gold-bright); border: 1px solid var(--border); }
.tcard-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.tcard-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.tcard-meta b { color: var(--text); font-weight: 500; }

/* ===== Kalenderübersicht ===== */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.cal-range { color: var(--gold-bright); font-size: 0.92rem; min-width: 12rem; text-align: center; }
.cal-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.cal-cell {
  border-radius: 8px;
  padding: 0.75rem 0.7rem;
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.cal-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.cal-cell.cal-na { background: #2a2e44; cursor: default; opacity: 0.6; }
.cal-date {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.cal-day { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.cal-occ-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.35);
  margin: 0.5rem 0 0.4rem;
  overflow: hidden;
}
.cal-occ-fill { height: 100%; border-radius: 3px; }
.cal-free { font-family: var(--mono); font-size: 0.74rem; }
.cal-window { font-family: var(--mono); font-size: 0.62rem; color: var(--text-dim); margin-top: 0.2rem; }
.cal-legend {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-dim);
}
.legend-dot {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 3px;
  margin-right: 0.45rem;
  vertical-align: -1px;
}

/* ===== Wetter ===== */
.weather-current, .weather-forecast {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.weather-sub { margin-top: 2.5rem; }
.weather-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  backdrop-filter: blur(6px);
}
.w-value { font-size: 1.6rem; color: var(--gold-bright); }
.w-label { font-size: 0.8rem; color: var(--text-dim); }
.w-night {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.w-quality { font-family: var(--mono); font-size: 0.82rem; font-weight: 500; margin-top: 0.3rem; }

/* ===== Booking ===== */
.booking-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.2rem;
  margin-top: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.form-row { margin-bottom: 1.6rem; }
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a10;
  font-family: var(--mono);
  font-size: 0.78rem;
  margin-right: 0.5rem;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
select, input[type="date"], input[type="email"], input[type="number"], textarea, .newsletter input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s;
  color-scheme: dark;
}
textarea { font-family: var(--sans); resize: vertical; }
select:focus, input:focus { outline: none; border-color: var(--gold); }

input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  margin-top: 0.4rem;
}
.slider-marks {
  position: relative;
  height: 1.1em;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}
.slider-marks span {
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.booking-preview {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
}
.preview-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}
.preview-line .mono { color: var(--gold-bright); font-size: 1.2rem; }
.preview-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.requirement-note {
  font-size: 0.88rem;
  background: rgba(93, 211, 158, 0.06);
  border: 1px solid rgba(93, 211, 158, 0.25);
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
  margin-bottom: 1.8rem;
  color: var(--text-dim);
}
.requirement-note strong { color: var(--text); }

.darkness-info {
  font-size: 0.78rem;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin: -0.4rem 0 1.6rem;
}

.back-link {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 0.88rem;
  cursor: pointer;
  margin-bottom: 1.4rem;
}
.back-link:hover { color: var(--gold-bright); }

.summary-table, .transfer-table {
  font-size: 0.9rem;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin: 1.2rem 0 1.8rem;
  overflow: hidden;
}
.transfer-table { margin: 0; }
.summary-table .srow, .transfer-table .srow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  border-bottom: 1px solid var(--border-soft);
}
.summary-table .srow:last-child, .transfer-table .srow:last-child { border-bottom: none; }
.summary-table .srow span:first-child, .transfer-table .srow span:first-child { color: var(--text-dim); }
.summary-table .srow.total, .transfer-table .srow.total {
  background: rgba(212, 175, 55, 0.08);
  font-weight: 600;
}
.summary-table .srow.total span:last-child, .transfer-table .srow.total span:last-child { color: var(--gold-bright); }

.payment-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.qr-box {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}
.qr-box .micro-note { color: #444; margin-top: 0.7rem; }
#qr-code img, #qr-code canvas { display: block; }
.payment-or { text-align: center; }
.paypal-subject {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  text-align: center;
}
.booking-no { color: var(--gold-bright); letter-spacing: 0.06em; }
.or-divider {
  display: block;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.payment-waiting {
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.spinner {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.confirm-icon {
  font-size: 2.6rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px var(--gold-glow);
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(6px);
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-no {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.step-card p { color: var(--text-dim); font-size: 0.92rem; }

/* ===== Galerie ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item .obj-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: rgba(232, 230, 223, 0.85);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.gallery-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  z-index: 2;
  line-height: 1.5;
}
.gallery-meta b { color: var(--gold-bright); font-weight: 500; }

/* ===== Standort ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}
.location-map {
  height: 460px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 1;
  background: var(--bg-card-solid);
}
.fact { display: flex; gap: 1.2rem; align-items: baseline; margin-bottom: 1.6rem; }
.fact-value {
  font-size: 2rem;
  color: var(--gold-bright);
  min-width: 110px;
}
.fact-value small { font-size: 1.1rem; }
.fact-label { font-size: 0.88rem; color: var(--text-dim); }
.tech-specs {
  margin-top: 2rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.6rem;
}
.tech-specs table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.tech-specs td { padding: 0.45rem 0; border-bottom: 1px solid var(--border-soft); }
.tech-specs td:first-child { color: var(--text-dim); width: 40%; }

/* ===== Pakete ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 2.4rem 1.6rem 2rem;
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}
.pkg-flag {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #b8932a);
  color: #0a0a10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg-badge {
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: #0a0a10;
  margin-bottom: 1rem;
}
.pkg-s  { background: #5db4e3; }
.pkg-m  { background: var(--gold); }
.pkg-xl { background: #b07de3; }
.pkg-name { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.4rem; }
.pkg-hours { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 1rem; }
.pkg-hours .mono { color: var(--text); }
.pkg-price {
  font-size: 3rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px var(--gold-glow);
}
.pkg-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

/* ===== Preise (alt) ===== */
.price-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.price-big {
  font-size: 4.5rem;
  color: var(--gold-bright);
  text-shadow: 0 0 40px var(--gold-glow);
}
.price-unit { font-size: 1.05rem; }
.price-unit small { color: var(--text-dim); }
.billing-explain p { margin-bottom: 0.9rem; color: var(--text-dim); }
.billing-explain strong { color: var(--text); }
.formula {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  color: var(--gold-bright) !important;
  font-size: 0.95rem;
  display: inline-block;
}

.discount-text { color: var(--green); }

.discount-box {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}
.discount-intro { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 1.4rem; }
.discount-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.discount-table th {
  text-align: left;
  font-weight: 500;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--border);
}
.discount-table td {
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--border-soft);
}
.discount-table tr:last-child td { border-bottom: none; }
.discount-table tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }

.calculator {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}
.calc-row { margin-bottom: 1rem; font-size: 1.02rem; }
.calc-row input {
  width: 90px;
  display: inline-block;
  text-align: center;
  padding: 0.4rem;
  margin: 0 0.3rem;
}
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.2rem;
  margin-top: 1.4rem;
  font-weight: 600;
}
.calc-price {
  font-size: 1.8rem;
  color: var(--gold-bright);
}

/* ===== FAQ ===== */
.faq-list { margin-top: 2rem; }
.faq-list details {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.1rem 0;
}
.faq-list summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--gold-bright); }
.faq-list details p {
  margin-top: 0.8rem;
  color: var(--text-dim);
  font-size: 0.94rem;
  max-width: 640px;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  background: rgba(5, 6, 14, 0.9);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer a:hover { color: var(--gold-bright); }
.footer-tag { font-size: 0.85rem; color: var(--text-dim); margin-top: 0.6rem; }
.newsletter { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
.newsletter input { flex: 1; }
.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-soft);
  padding-top: 1.6rem;
}

/* ===== Ticket & Überweisung ===== */
.ticket-badge {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  margin: 0 auto 1.4rem;
  width: fit-content;
}
.transfer-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  margin: 1.6rem 0;
}
.transfer-box h4 {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.transfer-hint { font-size: 0.86rem; color: var(--text-dim); margin-bottom: 1rem; }
.transfer-hint strong { color: var(--text); }
.transfer-table { font-size: 0.88rem; }
.pay-or {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  margin: 1.2rem 0 1rem;
}
.pay-or::before, .pay-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}
.pay-or span { padding: 0 0.9rem; }
.btn-paypal-link {
  display: block;
  width: 100%;
  text-align: center;
  background: #ffc439;
  color: #003087;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: filter 0.2s;
}
.btn-paypal-link:hover { filter: brightness(1.06); }

/* ===== Widerruf ===== */
.cancel-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.8rem;
  margin-top: 2.5rem;
}
.cancel-card h3 { color: var(--text); }
.cancel-card p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1.2rem; }
.cancel-row { display: flex; gap: 0.8rem; }
.cancel-row input { flex: 1; }
.cancel-result { font-size: 0.88rem; margin-top: 1rem; min-height: 1.2em; }
.cancel-result.ok { color: var(--green); }
.cancel-result.err { color: var(--red); }
.credit-info {
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.status-link-box {
  background: rgba(93,211,158,0.08);
  border: 1px solid rgba(93,211,158,0.35);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin: 1.2rem 0;
  text-align: center;
}
.status-link-label { color: var(--green); font-weight: 600; margin-bottom: 0.4rem; }
.status-link-hint { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0.8rem; }

/* ===== Rechtsseiten (Datenschutz, Impressum, AGB) ===== */
.legal-body { background: var(--bg); }
.legal-page { padding-top: 8rem; }
.legal-h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.4rem; }
.legal-page h3 { margin-top: 2.2rem; color: var(--gold-bright); }
.legal-page p { color: var(--text-dim); margin-bottom: 0.9rem; font-size: 0.94rem; }
.legal-page p strong { color: var(--text); }
.legal-page a { color: var(--gold-bright); }
.legal-address {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1rem 1.3rem;
  display: inline-block;
  font-size: 0.88rem;
  line-height: 1.8;
}
.legal-list { color: var(--text-dim); font-size: 0.94rem; margin: 0 0 1rem 1.3rem; }
.legal-list li { margin-bottom: 0.4rem; }
.legal-list strong { color: var(--text); }
.footer-copy a { display: inline; color: var(--text-dim); }
.footer-copy a:hover { color: var(--gold-bright); }

/* ===== Karten-Consent (DSGVO-Zwei-Klick) ===== */
.map-consent {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
}
.map-consent p { font-size: 0.88rem; color: var(--text-dim); max-width: 360px; }
.map-consent .micro-note a { color: var(--gold-bright); }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .cal-grid { grid-template-columns: repeat(4, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-split { grid-template-columns: 1fr; justify-items: center; }
}
@media (max-width: 520px) {
  .section { padding: 4.5rem 1.1rem; }
  .booking-card { padding: 1.4rem; }
  .form-row-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-hero { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-status { padding: 0.9rem 1.3rem; gap: 0.8rem; }
  .hero-status-count { font-size: 2.4rem; }
  .hero-status-label { font-size: 0.98rem; }
}
