.booking-page { background: #f5f8fd; }
.booking-header { position: sticky; z-index: 20; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid #dce7f5; backdrop-filter: blur(14px); }
.booking-header .shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.booking-logo img { width: 170px; height: 66px; object-fit: contain; }
.back-link { color: var(--blue-900); font-size: .9rem; font-weight: 800; }
.back-link:hover { color: var(--blue-700); }

.booking-hero { position: relative; min-height: 370px; display: grid; align-items: center; isolation: isolate; overflow: hidden; color: white; background: var(--blue-950); }
.booking-hero__photo { position: absolute; inset: 0; z-index: -2; background: url("assets/images/hg6.jpg") center 43% / cover no-repeat; }
.booking-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(3,34,87,.96),rgba(3,34,87,.78) 48%,rgba(3,34,87,.2)); }
.booking-hero__content { padding: 65px 0; }
.booking-hero__content > span { display: inline-block; color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.booking-hero h1 { max-width: 720px; margin: 10px 0 14px; font-size: clamp(3rem,6vw,5.5rem); line-height: .95; letter-spacing: -.05em; }
.booking-hero p { max-width: 620px; margin: 0; color: #dce9ff; font-size: 1rem; }

.booking-section { padding: 70px 0 100px; }
.setup-notice, .form-errors, .success-banner { margin-bottom: 24px; padding: 18px 20px; border-radius: 18px; }
.setup-notice { color: #5d4900; background: #fff3b2; border: 1px solid #f0d556; }
.setup-notice p, .form-errors ul, .success-banner p { margin: 6px 0 0; }
.form-errors { color: #8b1d28; background: #fff0f1; border: 1px solid #ffc8ce; }
.form-errors ul { padding-left: 20px; }
.success-banner { color: #0a6637; background: #e3f9ed; border: 1px solid #9be2bc; }

.booking-form { display: grid; gap: 28px; }
.form-step { padding: 34px; background: white; border: 1px solid #dfe8f5; border-radius: 28px; box-shadow: 0 16px 45px rgba(3,34,87,.07); }
.step-heading { display: flex; align-items: flex-start; gap: 17px; margin-bottom: 28px; }
.step-heading > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; color: var(--blue-950); background: var(--yellow); border-radius: 14px; font-size: 1.1rem; font-weight: 900; transform: rotate(-4deg); }
.step-heading h2 { margin: 0; color: var(--blue-950); font-size: 1.55rem; }
.step-heading p { margin: 3px 0 0; color: var(--muted); font-size: .85rem; }

.booking-packages { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.booking-package { position: relative; display: flex; flex-direction: column; min-height: 480px; padding: 26px; color: var(--ink); background: #f8faff; border: 2px solid #dce7f5; border-radius: 24px; cursor: pointer; transition: transform .2s,border-color .2s,box-shadow .2s; }
.booking-package:hover { transform: translateY(-4px); border-color: #96bbed; }
.booking-package:has(input:checked) { border-color: var(--blue-700); box-shadow: 0 16px 35px rgba(9,86,200,.15); }
.booking-package--featured { background: var(--blue-900); border-color: var(--blue-900); color: white; }
.booking-package--featured:has(input:checked) { border-color: var(--yellow); box-shadow: 0 16px 35px rgba(3,34,87,.24); }
.booking-package input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.package-recommendation { position: absolute; right: 18px; top: 18px; padding: 6px 9px; color: var(--blue-950); background: var(--yellow); border-radius: 99px; font-size: .63rem; font-weight: 900; text-transform: uppercase; }
.booking-package__code { color: var(--blue-700); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.booking-package--featured .booking-package__code { color: var(--yellow); }
.booking-package > strong { display: block; margin-top: 9px; font-size: 1.85rem; line-height: 1; }
.booking-package > p { min-height: 68px; margin: 14px 0; color: var(--muted); font-size: .82rem; }
.booking-package--featured > p, .booking-package--featured ul { color: #dce9ff; }
.booking-package ul { flex: 1; display: grid; align-content: start; gap: 11px; padding: 16px 0; margin: 0; border-top: 1px solid #dce7f5; list-style: none; color: #53647f; font-size: .78rem; }
.booking-package--featured ul { border-color: rgba(255,255,255,.22); }
.booking-package li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }
.booking-package--featured li::before { color: var(--yellow); }
.booking-package__price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0; }
.booking-package__price strong { color: var(--blue-900); font-size: 1.8rem; }
.booking-package--featured .booking-package__price strong { color: var(--yellow); }
.booking-package__price span { color: var(--muted); font-size: .72rem; }
.booking-package--featured .booking-package__price span { color: #c6d7ef; }
.package-select { display: block; padding: 11px 14px; color: var(--blue-900); background: white; border: 1px solid #bad0ed; border-radius: 99px; text-align: center; font-size: .78rem; font-weight: 900; }
.booking-package:has(input:checked) .package-select { color: white; background: var(--blue-700); border-color: var(--blue-700); }
.booking-package--featured:has(input:checked) .package-select { color: var(--blue-950); background: var(--yellow); border-color: var(--yellow); }

.form-grid { display: grid; gap: 18px; }
.form-grid--3 { grid-template-columns: repeat(3,1fr); }
.form-grid--2 { grid-template-columns: repeat(2,1fr); }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field > span, .menu-choice legend { color: var(--blue-950); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #fbfcff; border: 1px solid #cbd9eb; border-radius: 12px; outline: none; font: inherit; font-size: .9rem; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(9,86,200,.1); }

.menu-choice { margin: 25px 0 0; padding: 22px; background: #f7faff; border: 1px solid #dce7f5; border-radius: 18px; }
.menu-choice[hidden] { display: none; }
.menu-choice > p { margin: 0 0 15px; color: var(--muted); font-size: .78rem; }
.menu-choice > div { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.menu-choice label { cursor: pointer; }
.menu-choice input { position: absolute; opacity: 0; }
.menu-choice label > span { display: grid; gap: 3px; min-height: 90px; padding: 16px; color: var(--muted); background: white; border: 2px solid #d9e4f1; border-radius: 14px; font-size: .76rem; }
.menu-choice input:checked + span { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(9,86,200,.08); }
.menu-choice strong { color: var(--blue-900); font-size: .9rem; }

.booking-summary { display: grid; grid-template-columns: 1fr .65fr 1.35fr; gap: 1px; overflow: hidden; color: white; background: rgba(255,255,255,.2); border-radius: 24px; box-shadow: var(--shadow); }
.booking-summary > div { display: grid; align-content: center; gap: 6px; min-height: 126px; padding: 24px; background: var(--blue-900); }
.booking-summary span { color: #bdd0ec; font-size: .72rem; text-transform: uppercase; }
.booking-summary strong { font-size: 1.3rem; }
.booking-summary__total { background: var(--blue-950) !important; }
.booking-summary__total strong { color: var(--yellow); font-size: 2rem; }
.booking-summary small { color: #a8bfdf; font-size: .68rem; }
.consent { display: flex; align-items: flex-start; gap: 12px; padding: 0 8px; color: #52627a; font-size: .78rem; cursor: pointer; }
.consent input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--blue-700); }
.submit-booking { display: flex; align-items: center; justify-content: center; gap: 15px; width: 100%; min-height: 62px; color: var(--blue-950); background: var(--yellow); border: 0; border-radius: 99px; box-shadow: 0 15px 35px rgba(255,213,0,.28); font: inherit; font-weight: 900; cursor: pointer; transition: transform .2s,opacity .2s; }
.submit-booking:hover { transform: translateY(-3px); }
.submit-booking:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.submit-booking span { font-size: 1.2rem; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.booking-footer { color: #bcd0ed; background: var(--blue-950); }
.booking-footer .shell { min-height: 100px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .78rem; }
.booking-footer p { margin: 0; }
.booking-footer a { color: var(--yellow); font-weight: 800; }
.booking-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
.consent a { color: var(--blue-900); text-decoration: underline; text-underline-offset: 2px; }

/* Gelbes Family-Paradise-Design für Reservierung und Status */
.booking-page, .status-main { background: #fff4b7; }
.booking-header { background: rgba(255,210,26,.96); border-bottom-color: rgba(3,34,87,.14); }
.booking-hero { color: var(--blue-950); background: var(--yellow); }
.booking-hero__shade { background: linear-gradient(90deg,rgba(255,210,26,.97),rgba(255,210,26,.83) 50%,rgba(3,34,87,.18)); }
.booking-hero__content > span { color: var(--blue-900); }
.booking-hero p { color: #243b60; font-weight: 700; }
.form-step, .status-card { border-color: rgba(3,34,87,.12); box-shadow: 0 16px 45px rgba(3,34,87,.1); }
.booking-package { background: #fff9de; border-color: rgba(3,34,87,.14); }
.booking-package:has(input:checked) { border-color: var(--blue-900); box-shadow: 0 16px 35px rgba(3,34,87,.18); }
.booking-package--featured { background: var(--blue-900); }
.booking-summary > div { background: var(--blue-900); }
.booking-summary__total { color: var(--blue-950); background: var(--yellow) !important; }
.booking-summary__total span, .booking-summary__total small { color: #263c61; }
.booking-summary__total strong { color: var(--blue-950); }
.consent input { accent-color: var(--blue-900); }

.status-main { min-height: calc(100vh - 182px); padding: 65px 0; background: #f5f8fd; }
.status-shell { max-width: 880px; }
.status-card { padding: 38px; background: white; border: 1px solid #dce7f5; border-radius: 30px; box-shadow: 0 20px 60px rgba(3,34,87,.1); }
.status-card--missing { text-align: center; }
.status-card--missing > span { color: #b22a39; font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.status-card h1 { margin: 28px 0 10px; color: var(--blue-950); font-size: clamp(2rem,5vw,3.6rem); line-height: 1; }
.status-card > p { color: var(--muted); }
.status-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid #dce7f5; }
.status-card__top div span, .status-card__top div strong { display: block; }
.status-card__top div span { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.status-card__top div strong { color: var(--blue-900); font-size: 1.15rem; }
.status-badge { display: inline-flex; padding: 8px 12px; border-radius: 99px; font-size: .7rem; font-weight: 900; }
.status-badge--pending { color: #6c5300; background: #fff1a8; }
.status-badge--confirmed { color: #075d35; background: #d9f6e6; }
.status-badge--cancelled { color: #8b1d28; background: #ffe1e4; }
.status-badge--completed { color: #174d83; background: #dbeeff; }
.reservation-details { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: 28px 0; overflow: hidden; background: #e1e9f5; border: 1px solid #e1e9f5; border-radius: 18px; }
.reservation-details > div { display: grid; gap: 4px; min-height: 88px; padding: 17px; background: #f8faff; }
.reservation-details span { color: var(--muted); font-size: .68rem; text-transform: uppercase; }
.reservation-details strong { font-size: .92rem; }
.status-package { padding: 22px; background: #fff8cf; border-radius: 18px; }
.status-package h2 { margin: 0 0 12px; font-size: 1rem; }
.status-package ul { display: grid; gap: 7px; padding: 0; margin: 0; list-style: none; font-size: .8rem; }
.status-package li::before { content: "✓"; margin-right: 8px; color: var(--blue-700); font-weight: 900; }
.cancel-box { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 28px; padding-top: 25px; border-top: 1px solid #dce7f5; }
.cancel-box p { margin: 3px 0 0; color: var(--muted); font-size: .75rem; }
.cancel-box button { padding: 10px 16px; color: #9a2130; background: white; border: 1px solid #e3aeb5; border-radius: 99px; font: inherit; font-size: .75rem; font-weight: 900; cursor: pointer; }
.cancel-box button:hover { color: white; background: #b22a39; border-color: #b22a39; }

@media (max-width: 850px) {
  .booking-packages { grid-template-columns: 1fr; }
  .booking-package { min-height: 0; }
  .booking-package > p { min-height: 0; }
  .form-grid--3 { grid-template-columns: repeat(2,1fr); }
  .booking-summary { grid-template-columns: repeat(2,1fr); }
  .booking-summary__total { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .booking-header .shell { min-height: 70px; }
  .booking-logo img { width: 140px; height: 56px; }
  .booking-hero { min-height: 330px; }
  .booking-hero h1 { font-size: 3rem; }
  .booking-section { padding: 45px 0 70px; }
  .form-step { padding: 24px 18px; border-radius: 22px; }
  .form-grid--3, .form-grid--2, .menu-choice > div, .booking-summary { grid-template-columns: 1fr; }
  .field--full, .booking-summary__total { grid-column: auto; }
  .booking-summary > div { min-height: 100px; }
  .status-card { padding: 26px 18px; }
  .status-card__top, .cancel-box, .booking-footer .shell { align-items: flex-start; flex-direction: column; }
  .reservation-details { grid-template-columns: 1fr; }
  .booking-footer .shell { justify-content: center; padding: 25px 0; }
}

.status-main { background: #fff4b7; }
.status-card { border-color: rgba(3,34,87,.12); box-shadow: 0 16px 45px rgba(3,34,87,.1); }
.reservation-details { background: rgba(3,34,87,.15); border-color: rgba(3,34,87,.15); }
.reservation-details > div { background: #fff9de; }
