/* Coming- Soon / Wartungsseite */

.coming-soon-body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-wrapper {
    padding: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.coming-soon-box {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.coming-soon-box h1 {
    margin: 0 0 1rem;
    font-size: 2rem;
    letter-spacing: 0.03em;
}

.lead-text {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5f5;
}

.status-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #bbf7d0;
    font-size: 0.9rem;
    font-weight: 500;
}

.small-text {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.contact-info {
    font-size: 0.9rem;
    color: #9ca3af;
}

.contact-info a {
    color: #38bdf8;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile-Anpassung */
@media (max-width: 600px) {
    .coming-soon-box {
        padding: 2rem 1.4rem;
    }

    .coming-soon-box h1 {
        font-size: 1.6rem;
    }
}