/* ============================================================================
   Seiten-spezifische Styles (Landing-Hero, Buchung, Preise, Legal-Prose).
============================================================================ */

/* ----- Landing-Hero (Navy + Confetti + Foto-Stack) --------------------- */
.hero {
    position: relative;
    margin: 24px auto 0;
    max-width: var(--container);
    width: calc(100% - 24px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-hero);
    color: #fff;
    padding: 72px 56px 64px;
    box-shadow: var(--shadow-lg);
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.02;
    margin: 14px 0;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: #fff;
}

.hero__lead {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.55;
    color: rgba(255,255,255,.85);
    margin: 0 0 32px;
    max-width: 500px;
}

.hero__lead strong {
    color: var(--fbk-yellow-300);
}

.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.hero__trust span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.hero__trust-stars {
    color: var(--fbk-yellow-300);
    display: inline-flex;
}

.hero__trust strong {
    color: #fff;
}

.hero__photos {
    position: relative;
    padding-bottom: 28px;
}

.hero__photo-main {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--fbk-yellow-500), var(--fbk-pink-600) 60%, var(--fbk-navy-700));
    box-shadow: var(--shadow-md);
    transform: rotate(2.2deg);
    position: relative;
}

.hero__photo-main img,
.hero__photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__photo-thumb {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 9px;
    box-shadow: var(--shadow-lg);
}

.hero__photo-thumb--left {
    bottom: -10px;
    left: -32px;
    transform: rotate(-7deg);
    width: 160px;
}

.hero__photo-thumb--right {
    top: 12px;
    right: -18px;
    transform: rotate(8deg);
    width: 130px;
}

.hero__photo-thumb-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fbk-pink-500), var(--fbk-pink-600));
}

.hero__photo-thumb-caption {
    font-family: var(--font-script);
    font-size: clamp(16px, 2.1vw, 20px);
    color: var(--fbk-pink-600);
    text-align: center;
    margin-top: 6px;
    line-height: 1;
}

.hero__photo-thumb--right .hero__photo-thumb-caption {
    font-size: clamp(15px, 1.8vw, 18px);
}

/* Live-Verfügbarkeits-Strip im Hero. */
.hero__live {
    position: relative;
    margin-top: 56px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero__live-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.hero__live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fbk-teal-500);
    box-shadow: 0 0 0 4px rgba(29,188,198,.25);
    animation: fbkPulse 1.8s ease-in-out infinite;
}

.hero__live-line {
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

.hero__live-sep {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

@media (max-width: 880px) {
    .hero { padding: 48px 24px 40px; border-radius: var(--radius-lg); }
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__photo-thumb--left { left: -8px; width: 140px; }
    .hero__photo-thumb--right { right: -4px; width: 110px; }
}

/* ----- Section-Heading-Helfer ----------------------------------------- */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head h2 {
    margin: 10px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--fbk-navy-800);
    letterstyle: -0.01em;
}

.section-head .lead {
    max-width: 580px;
    margin: 0 auto;
}

/* ----- Page-Hero (Unterseiten) --------------------------------------- */
.page-hero {
    max-width: var(--container);
    margin: 36px auto 0;
    padding: 0 20px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    margin: 10px 0 8px;
    color: var(--fbk-navy-800);
    letter-spacing: -.02em;
    font-weight: 900;
}

.page-hero p {
    max-width: 540px;
    margin: 0 auto;
}

/* ----- Buchungs-Wizard (Container) ---------------------------------- */
.wizard {
    max-width: 900px;
    margin: 32px auto 80px;
    padding: 0 20px;
}

.wizard-step {
    display: none;
}

.wizard-step.is-active {
    display: block;
}

.wizard-step__head {
    text-align: center;
    margin-bottom: 24px;
}

.wizard-step__head h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.4vw, 34px);
    margin: 8px 0 4px;
    color: var(--fbk-navy-800);
    letter-spacing: -.01em;
}

.wizard-step__head .lead {
    max-width: 540px;
    margin: 0 auto;
    font-size: clamp(15px, 1.6vw, 16px);
}

/* Bestätigungs-Bildschirm. */
.wizard-success {
    text-align: center;
    padding: 20px 24px 0;
}

.wizard-success__check {
    display: inline-grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--fbk-teal-500);
    color: #fff;
    box-shadow: var(--shadow-pop);
    margin-bottom: 20px;
}

.wizard-success h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.6vw, 36px);
    margin: 0 0 8px;
    color: var(--fbk-navy-800);
    letter-spacing: -.01em;
}

.wizard-success__details {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-default);
    min-width: 320px;
    margin: 0 auto;
}

.sum-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--border-default);
}

.sum-line:last-child { border-bottom: none; padding-bottom: 0; }

.sum-line__k {
    font-size: 13px;
    color: var(--fg-muted);
}

.sum-line__v {
    font-weight: 700;
    font-size: 14px;
    color: var(--fbk-navy-800);
    text-align: right;
}

/* "So geht's weiter" Box im Erfolgsbildschirm. */
.next-steps {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    background: var(--fbk-cream-100);
    border: 1px solid var(--border-default);
}

.next-steps__grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 720px) {
    .next-steps__grid { grid-template-columns: 1fr; }
}

.next-steps__item {
    display: flex;
    gap: 12px;
}

.next-steps__num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--fbk-navy-800);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    color: var(--fbk-navy-800);
}

.next-steps__title {
    font-weight: 800;
    color: var(--fbk-navy-800);
    font-size: 14px;
}

.next-steps__desc {
    font-size: 13px;
    color: var(--fg-secondary);
    margin-top: 2px;
    line-height: 1.5;
}

/* ----- Preise-Seite (Vergleich) --------------------------------------- */
.preise-note {
    text-align: center;
    margin-top: 40px;
    color: var(--fg-secondary);
    font-size: 14px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Legal-Prose (Impressum / Datenschutz) ------------------------- */
.legal-prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-prose h2 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.4vw, 22px);
    margin-top: var(--space-7);
    margin-bottom: var(--space-3);
    color: var(--fbk-navy-800);
    letter-spacing: -.01em;
}

.legal-prose h2:first-of-type { margin-top: var(--space-5); }

.legal-prose p,
.legal-prose ul,
.legal-prose address {
    font-size: clamp(14px, 1.6vw, 15px);
    line-height: 1.7;
    color: var(--fg-secondary);
    margin-bottom: var(--space-3);
}

.legal-prose ul {
    padding-left: var(--space-5);
}

.legal-prose ul li {
    margin-bottom: 0.3rem;
}

.legal-prose address {
    font-style: normal;
}

.legal-prose a {
    color: var(--fbk-pink-600);
    border-bottom: 1px solid currentColor;
}
