#body .hero,
#body .hero-content,
#body #region,
#body #willkommen,
#body #ferienhaus,
#body #wetter {
    margin: 0;
    padding: 0;
}


#body .hero {
    position: relative;
    text-align: center;
    min-width: 100vw;
    min-height: 100vh;
    background-size: cover;
    
    h2 {
        font-size: 2em;
    }

   
}

#body .hero-content {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    max-height: 40%;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-size: 1.5rem;
    overflow: auto;
    padding: 50px;
}

#body .willkommen-content {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-size: 1.5rem;
    overflow: auto;
    padding: 50px;
}

#body #wetterWidget {
    top: 50%;
    left: 50%;
    z-index: 2;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-size: 1.5rem;
    overflow: auto;
    display: flex;
    flex-direction: column;

}
    
#region {
    background-image: url("../images/unterkunft/Zinnwald_Aussicht.webp");
}

#willkommen  {
    background-image: url("../images/unterkunft/Aussenansicht.webp"); /* Beispielhafte Änderung der Hintergrundfarbe für Abschnitt 2 */
    a {
        display: inline-block;
        background-color: #ff4800b4;
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        margin-top: 20px;
        border-radius: 5px;
    }


}

#ferienhaus  {
    background-image: url("../images/unterkunft/Aussenansicht_gruen.webp"); /* Beispielhafte Änderung der Hintergrundfarbe für Abschnitt 3 */
}

#wetter  {
    background-image: url("../images/Zinnwald_Bild1.webp"); /* Beispielhafte Änderung der Hintergrundfarbe für Abschnitt 4 */

}

#wetter .wetter-content {
    padding: 10px;
    height: 70%;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wetter .hero-content #insertWidget {
    width: 100%; /* Breite des Widgets auf 100% setzen */
}

#wetter .hero-content #insertWidgetMobile {
    display: none; 
}



@media only screen and (max-width: 1400px) {

    #body #wetterWidget {
        position: absolute;
        min-width: 80vw;
        height: 40%;
        overflow: auto;
        background-color: rgba(255, 255, 255, 0.7);
        margin: 0 auto;
        padding: 0;
    }

    #body .hero-content {
        min-width: 80vw;
        max-height: 20%;
        overflow: auto;
        background-color: rgba(255, 255, 255, 0.7);
    }

    #wetter .hero-content #insertWidget {
        display: none;
    }
    
    #wetter .hero-content #insertWidgetMobile {
        display: flex;
    }

    #body .willkommen-content {
        min-height: 30%;
        min-width: 80%;
    }
    
}
