/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    position: relative;
    background-color: #000; /* Fallback */
}

/* Hintergrundbild dynamisch und vollflächig */
.background-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Logo oben zentriert */
.logo-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 1rem;
}

.logo {
    max-width: 62vw;
    max-height: 31vh;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        max-width: 85vw;
        max-height: 36vh;
    }
}

/* Overlay mit Text */
.overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
    max-width: 600px;
    color: #000; /* schwarzer Text */
}



/* Textgestaltung */
.overlay h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.soon {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
}