/* =========================================
   FLOHMARKT LEGENDS - COMING SOON
   Spezifische CSS-Erweiterung
   ========================================= */

.coming-soon-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* Wir nutzen das vorhandene Hero-Hintergrundbild mit einem abgedunkelten Overlay */
    background-image: linear-gradient(to bottom, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.95) 100%), url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 2rem;
    margin: 0; /* Reset body margin just in case */
}

/* Zeitungs-Raster komplett über den Hintergrund gelegt für das perfekte Feeling */
.coming-soon-halftone {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, #000000 35%, transparent 40%);
    background-size: 3px 3px;
    background-position: 0 0;
    mix-blend-mode: multiply;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1; /* Über dem BG, unter der Karte */
}

.coming-soon-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
}

.main-card {
    padding: 4rem 3rem;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-card .logo-text {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    display: block; /* Notwendig um text-center anzuwenden */
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .main-card {
        padding: 3rem 1.5rem;
    }
}
