/* ============================================
   Coming-Soon Vorschaltseite
   Fullscreen overlay above the regular page.
   ============================================ */

body.neuburg-coming-soon {
    overflow: hidden;
}

.coming-soon {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    overflow-y: auto;
    background: oklch(0.13 0 0);
    color: oklch(0.92 0 0);
    font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
    text-align: center;
}

.coming-soon__inner {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: auto 0;
}

.coming-soon__logo {
    width: 200px;
    height: auto;
    margin-bottom: 24px;
}

.coming-soon__label {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary, oklch(0.62 0.18 142));
}

.coming-soon__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
}

.coming-soon__title em {
    font-style: normal;
    font-weight: 500;
}

.coming-soon__text {
    margin: 0;
    max-width: 480px;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.coming-soon__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
    margin-top: 16px;
}

.coming-soon__contact a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.coming-soon__contact a:hover {
    color: var(--primary, oklch(0.62 0.18 142));
    border-color: var(--primary, oklch(0.62 0.18 142));
}

.coming-soon__legal {
    margin-top: 40px;
    font-size: 13px;
}

.coming-soon__legal a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.coming-soon__legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
    .coming-soon__logo {
        width: 160px;
        margin-bottom: 12px;
    }

    .coming-soon__text {
        font-size: 0.95rem;
    }
}
