/* Allgemeine Stile für den ganzen Body */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black; /* Schwarzer Hintergrund als Fallback */
    overflow: hidden; /* Verhindert Scrollen im Desktop-Modus */
}

/* Desktop-Ansicht */
.desktop-view {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.full-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild passt sich vollständig an */
}

/* Mobile Ansicht (wird standardmäßig ausgeblendet und außerhalb des Viewports versteckt) */
.mobile-view {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo-Stile für die mobile Ansicht */
.logo {
    max-width: 70%;
    height: auto;
    margin-bottom: 20px;
}

/* Text-Stile für mobile Ansicht */
p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Mobile Ansicht aktivieren */
@media only screen and (max-width: 768px) {
    body {
        overflow: auto; /* Scrollen erlauben in der mobilen Ansicht */
    }

    .desktop-view {
        display: none; /* Desktop-Ansicht wird auf mobilen Geräten versteckt */
    }

    .mobile-view {
        position: relative;
        top: 0; /* Mobile Ansicht wird jetzt sichtbar */
    }
}
