@media screen and (max-width: 1199px) { /* Für kleinere Monitore (z.B. 1024px) */

    .container {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
	.nav-container {
		padding-left: 30px;
		padding-right: 30px;
	}

    /* HERO */
    .hero-section .container{
        background-size: 47% auto;
        background-position: right 20px center;
    }
	.hero-content-container h1{
		margin-bottom: 20px;
        font-size: 50px;
	}

    /* SECTION 2 */
    .screen-2-media-side_item-container{
        margin-top: 30px;
    }
    .screen-2-media-side_item-container div{
        width: 120px;
        height: 120px;
    }

    /* SECTION 4 */
    .screen-4-blocks-container{
        flex-wrap: wrap;
    }
    .screen-4-blocks-container div{
        width: 350px;
        flex: none;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    /* SCREEN 5 */
    .screen-5-content-container{
        flex-wrap: wrap;
    }
    .screen-5-content-container div{
        width: 300px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .screen-5-content-container div h4{
        text-align: center;
        margin-bottom: 15px;
    }

    /* SCREEN 6 */
    .screen-6-left-side{
        width: 30%;
    }
    .screen-6-right-side{
        width: 70%;
    }

    /* SCREEN 7 */
    .screen-7{
        padding-top: 0;
    }
    .screen-7-content-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .screen-7-left{
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
        height: 250px;
    }
    .screen-7-left img{
        height: 100%;
        width: auto;
        position: relative;
        left: 0;
        top: 0;
    }
    .screen-7-center{
        width: 70%;
    }
    .screen-7-right{
        width: 70%;
        margin-top: 30px;
    }

    /* FOOTER */
    .footer-content{
        justify-content: space-between;

    }
    .footer-content div:last-child{
        margin-left: 0;
    }
    .footer-menu-container div{
        margin-left: 15px;
        margin-right: 15px;
    }
    .footer-contact{
        margin-left: 15px;
    }


}

@media screen and (max-width: 992px){  /* Übergang zu Tablet-Layouts */

    /* HERO */
    .hero-section{
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hero-section .container{
        background-position: bottom center;
    }
    .hero-content-container{
        width: 100%;
        margin-bottom: 350px;

    }
    .hero-content-container h1{
		margin-bottom: 20px;
        font-size: 50px;
	}

    /* SECTION 2*/
    .screen-2-content-container{
        display: block;
    }
    .screen-2-text-side{
        width: 100%;
    }
    .screen-2-media-side{
        width: 100%;
    }

    /* SCREEN 6 */
    .screen-6-content-container{
        flex-wrap: wrap;
    }
    .screen-6-left-side{
        width: 100%;
    }
    .screen-6-right-side{
        width: 100%;
        margin-top: 30px;
    }

    /* FOOTER */
    .footer-content{
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .footer-menu-container{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        justify-content: center;
    }
    .footer-contact{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .footer-logo{
        margin-right: 0;
    }
}

@media screen and (max-width: 768px){  /*Menü wird oft zum "Burger-Menü"*/

    /* BURGER MENU */
    .burger {
        display: block; /* Button anzeigen */
    }
    nav {
        display: none; /* Menü standardmäßig ausblenden */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Direkt unter der Navigation */
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    nav.open {
        display: flex; /* Anzeigen, wenn offen */
    }

    nav a {
        margin: 15px 0;
        text-align: center;
    }
   
    /* HERO*/
    .hero-section .container{
        background: none;
    }
    .hero-content-container{
        margin-bottom: 0;
    }
    .hero-section {
        height: calc(100vh - 70px);
    }

    /* SCREEN 7 */
    .screen-7-center{
        width: 100%;
    }
    .screen-7-right{
        width: 100%;
    }
}

@media screen and (max-width: 576px){ /* Alles wird einspaltig (100% Breite) */

    /* SCREEN 5 */
    .screen-5-content-container div{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    /* FOOTER */
    .footer-menu-container{
        display: none;
    }
    
}