/* 1. Grund-Setup & Schrifteinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    /* dvh löst das Safari-Problem mit der Suchleiste */
    height: 100dvh; 
    width: 100%;
    font-family: 'Inter', sans-serif; 
    color: #ffffff;
    background-color: #000;
    overflow: hidden; /* Verhindert Scrollen */
    display: flex;
    flex-direction: column;
}

/* 2. Hintergrundbild & Abdunkelung */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 3. Hauptinhalt (Logo & Text) */
.content {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    width: 100%;
    /* Dieser Wert schiebt "Coming Soon" genau über die Köpfe im Bild */
    padding-bottom: 12dvh; 
}

.logo-container {
    width: 75%;
    max-width: 400px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.coming-soon {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 35px; /* Abstand zum Logo */
    text-align: center;
    opacity: 0.95;
}

/* 4. Footer (Socials & Copyright) */
footer {
    width: 100%;
    /* Bleibt sicher über der Safari-Leiste */
    padding-bottom: 5dvh; 
    text-align: center;
    z-index: 10;
}

.social-icons {
    margin-bottom: 12px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 15px;
    text-decoration: none;
    display: inline-block;
    /* Macht die Icons auf dem Handy leichter anklickbar */
    padding: 10px; 
    transition: transform 0.3s ease;
}

.social-icons a:active {
    transform: scale(0.9); /* Kleiner Effekt beim Antippen */
}

.copyright {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.5;
}

/* 5. Optimierung für sehr kleine Handys (z.B. iPhone SE) */
@media (max-height: 680px) {
    .content { padding-bottom: 8dvh; }
    .logo-container { width: 65%; }
    .coming-soon { font-size: 0.9rem; margin-top: 20px; }
    footer { padding-bottom: 3dvh; }
}
