/* Grund-Setup: Hintergrund schwarz und alles auf volle Höhe */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Tiefschwarz */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Flexbox auf dem Body zentriert den Wrapper vertikal und horizontal */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Der Wrapper hält Video und Text zusammen */
.main-wrapper {
    width: 90%;      /* Nimmt 90% der Breite ein */
    max-width: 1200px; /* Aber wird nicht breiter als 1200px */
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert Video und Text horizontal zueinander */
}

.video-box {
    width: 100%;
    /* Extremes Breitbild-Verhältnis (z.B. 21:9) */
    aspect-ratio: 21 / 9; 
    overflow: hidden;
    background: #111; /* Platzhalterfarbe falls Video lädt */
    border: 1px solid #333; /* Dezenter Rahmen */
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video füllt die Box ohne Verzerrung */
}

.text-content {
    margin-top: 30px;
    text-align: center;
}

.text-content h1 {
    font-size: clamp(2rem, 5vw, 4rem); /* Schriftgröße passt sich Bildschirm an */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

.text-content p {
    color: #666;
    letter-spacing: 0.1em;
    margin-top: 10px;
}


