* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(2, 6, 12, 0.62),
            rgba(2, 6, 12, 0.9)
        ),
        url("bilder/bg-main.jpg") center center / cover fixed no-repeat;
}

.page {
    display: flex;

    width: min(1200px, calc(100% - 32px));
    min-height: calc(100vh - 90px);

    align-items: center;
    justify-content: center;

    margin: 0 auto;
    padding: 50px 0 30px;
}

.hotel-card {
    width: 100%;
    padding: 60px;

    text-align: center;

    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(5, 11, 20, 0.88),
            rgba(3, 8, 15, 0.72)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 0 30px rgba(0, 229, 255, 0.12),
        0 28px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow {
    margin: 0 0 18px;

    color: #5cecff;

    font-size: 0.9rem;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    text-shadow:
        0 0 10px rgba(0, 229, 255, 0.75),
        0 0 25px rgba(0, 229, 255, 0.4);
}

h1 {
    margin: 0;

    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 1;

    letter-spacing: -0.05em;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.25),
        0 0 28px rgba(0, 229, 255, 0.24);
}

h2 {
    max-width: 900px;

    margin: 24px auto 0;

    color: #d9faff;

    font-size: clamp(1.4rem, 3vw, 2.3rem);
    line-height: 1.3;

    font-weight: 600;
}

.hotel-text {
    max-width: 900px;

    margin: 36px auto 0;
}

.hotel-text p {
    margin: 0 0 13px;

    color: #d1d7df;

    font-size: 1.06rem;
    line-height: 1.65;
}

.button-row {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 16px;

    margin-top: 38px;
}

.button {
    display: inline-flex;

    min-height: 56px;

    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    border-radius: 14px;

    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #031017;

    background:
        linear-gradient(
            135deg,
            #7ff4ff,
            #23bcd3
        );

    box-shadow:
        0 0 22px rgba(0, 229, 255, 0.34),
        0 14px 34px rgba(0, 0, 0, 0.28);
}

.button-primary:hover {
    box-shadow:
        0 0 30px rgba(0, 229, 255, 0.52),
        0 18px 40px rgba(0, 0, 0, 0.34);
}

.button-secondary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.28);

    background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    width: min(1200px, calc(100% - 32px));

    margin: 0 auto;
    padding: 0 0 30px;

    color: #949daa;

    font-size: 0.9rem;
}

.footer p {
    margin: 0;
}

@media (max-width: 700px) {

    body {
        background-attachment: scroll;
    }

    .page {
        width: min(100% - 20px, 1200px);
        padding-top: 20px;
    }

    .hotel-card {
        padding: 34px 22px;

        border-radius: 24px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .hotel-text p {
        font-size: 1rem;
    }

    .button-row {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .footer {
        flex-direction: column;

        width: min(100% - 30px, 1200px);
    }
  .footer {
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
}

.footer::before,
.footer::after {
    display: none !important;
    content: none !important;
}
}