/* ===== RESET ===== */

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

/* ===== BODY ===== */

body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f5f2;
    color: #111;
    min-height: 100vh;
}

/* ===== HEADER ===== */

.termin-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.termin-header a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.termin-header a:hover {
    opacity: 0.6;
}

/* ===== MAIN WRAPPER ===== */

.termin-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding:
        140px
        32px
        80px;
}

/* ===== HERO ===== */

.booking-hero {
    text-align: center;
    margin-bottom: 70px;
}

.booking-kicker {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #777;
}

.booking-title {
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 28px;
}

.booking-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* ===== PLANITY CARD ===== */

.booking-shell {
    position: relative;
    background: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow:
        0 15px 60px rgba(0,0,0,0.08),
        0 2px 12px rgba(0,0,0,0.04);
    padding: 26px;
}

/* subtle glow */

.booking-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.8),
            rgba(0,0,0,0.04)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

/* ===== PLANITY CONTAINER ===== */

#planity-booking {
    width: 100%;
    min-height: 900px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

/* ===== FOOTER NOTE ===== */

.booking-note {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #888;
    letter-spacing: 0.04em;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .termin-header {
        padding: 20px;
    }

    .termin-page {
        padding:
            120px
            16px
            60px;
    }

    .booking-title {
        font-size: 46px;
    }

    .booking-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .booking-shell {
        padding: 12px;
        border-radius: 24px;
    }

    #planity-booking {
        min-height: 700px;
        border-radius: 18px;
    }
}