/* ============================================================================
   Layout: schwebende Pill-Nav + Navy-Footer mit Confetti + Mobile-Sticky-CTA.
============================================================================ */

main {
    min-height: 60vh;
    display: block;
}

/* ----- Sticky Pill-Nav --------------------------------------------------- */
.site-nav {
    position: sticky;
    top: 16px;
    z-index: 50;
    margin: 0 auto;
    max-width: 1180px;
    width: calc(100% - 24px);
    transition: top .22s cubic-bezier(.2,.7,.2,1), max-width .22s cubic-bezier(.2,.7,.2,1);
}

.site-nav.is-scrolled {
    top: 8px;
    max-width: 980px;
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    background: var(--bg-surface);
    border-radius: var(--radius-pill);
    padding: 8px 12px 8px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-default);
    transition: all .22s ease;
}

.site-nav.is-scrolled .site-nav__inner {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    padding: 6px 8px 6px 14px;
    box-shadow: var(--shadow-lg);
}

.site-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-bottom: none;
    min-height: var(--tap-min);
}

.site-nav__brand:hover { border-bottom: none; }

.site-nav__brand img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.site-nav__brand-text {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 19px);
    color: var(--fbk-navy-800);
    font-weight: 800;
}

.site-nav__brand-text span {
    color: var(--fbk-pink-600);
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.site-nav__links a {
    color: var(--fbk-navy-800);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: none;
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
    transition: color .15s;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
    color: var(--fbk-pink-600);
    border-bottom: none;
}

.site-nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__phone {
    color: var(--fbk-navy-800);
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-bottom: none;
    min-height: var(--tap-min);
    padding: 0 var(--space-3);
}

.site-nav__phone:hover { color: var(--fbk-pink-600); border-bottom: none; }

/* Hamburger — nur Mobile sichtbar. */
.site-nav__toggle {
    display: none;
    width: var(--tap-min);
    height: var(--tap-min);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.site-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fbk-navy-800);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-Dropdown-Panel. */
.site-nav__panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
    flex-direction: column;
    gap: var(--space-2);
}

.site-nav__panel.is-open { display: flex; }

.site-nav__panel a {
    min-height: var(--tap-min);
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    font-weight: 700;
    color: var(--fbk-navy-800);
    border-radius: var(--radius-md);
    text-decoration: none;
    border-bottom: none;
}

.site-nav__panel a:hover {
    background: var(--fbk-cream-100);
    border-bottom: none;
}

/* Slim-Header (Buchungs-Seite). */
.site-nav--slim {
    max-width: 980px;
}

@media (max-width: 880px) {
    .site-nav__links,
    .site-nav__phone {
        display: none;
    }
    .site-nav__toggle {
        display: flex;
    }
}

/* ----- Footer (Navy + Confetti) ----------------------------------------- */
.site-footer {
    margin-top: 100px;
    background: var(--fbk-navy-900);
    color: rgba(255,255,255,.78);
    padding: 64px 0 24px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-confetti-radial);
    pointer-events: none;
}

.site-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.site-footer__brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.site-footer__brand-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 800;
    color: #fff;
}

.site-footer__about {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    color: rgba(255,255,255,.78);
}

.site-footer h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(15px, 1.6vw, 16px);
    margin: 0 0 14px;
    letter-spacing: -.005em;
}

.site-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 14px;
}

.site-footer a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    border-bottom: none;
}
.site-footer a:hover {
    color: #fff;
    border-bottom: none;
}

.site-footer__contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.78);
}

.site-footer__bottom {
    position: relative;
    max-width: var(--container);
    margin: 48px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

.site-footer__bottom-links {
    display: flex;
    gap: 22px;
    font-size: clamp(14px, 1.6vw, 15px);
    font-weight: 600;
}

.site-footer__bottom-links a {
    color: rgba(255,255,255,.92);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__bottom-links a:hover,
.site-footer__bottom-links a:focus-visible {
    color: #fff;
}

@media (max-width: 880px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Mobile-Sticky-CTA ------------------------------------------------ */
.mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: none;
    gap: 8px;
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-default);
}

.mobile-cta a {
    border-bottom: none;
    text-decoration: none;
}

.mobile-cta .btn--ghost {
    padding: 12px 14px;
    flex: 0 0 auto;
}

.mobile-cta__main {
    flex: 1;
}

.mobile-cta__main .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 880px) {
    .mobile-cta { display: flex; }
    body { padding-bottom: 90px; }
}

/* ----- Cookie-Banner (Bestehende Funktion erhalten) -------------------- */
#cookie-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    background: var(--fbk-navy-900);
    color: rgba(255,255,255,.85);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-on-dark);
}

.cookie-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: var(--container);
    margin: 0 auto;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.85);
}

.cookie-text a {
    color: var(--fbk-teal-300);
    border-bottom-color: rgba(125,223,229,.5);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-inner {
        flex-direction: row;
        align-items: center;
    }
    .cookie-text { flex: 1; }
    .cookie-buttons { flex-shrink: 0; }
    .cookie-buttons .btn { flex: none; }
}
