#header.header-4 {
    position: sticky; /* Header bleibt sichtbar, wenn gescrollt wird */
    top: 0; /* Fixiert den Header an der Oberkante des Viewports */
    z-index: 1000; /* Sicherstellen, dass der Header über anderen Inhalten liegt */
    /*
    background-color: var(--light); 
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
    */
    box-shadow: var(--shadow-l);
}

/* Header */
#header.header-4 .header {
    position: relative;
    display: block;
    width: 100vw;
    overflow: visible; /* Ensure no parent restricts overflow */
    background-image: url('../assets/Background.png');
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover; /* This won't affect the background-image; consider removing it */
}

/* Burger Menu */
#header.header-4 .burgerMenue {
    display: none;
}

/* Header Logo */
#header.header-4 .header-logo {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100%;
    padding-top: 32px;
    background-image: url('../assets/Background.png');
    z-index: 1001;
    position: relative;
}

#header.header-4 .header-logo-mobile{
    display: none;
}

#header.header-4 .navigationBar {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    background-image: url('../assets/Background.png');
    position: sticky;
    top: 0; 
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
}

#header.header-4 .a-nav-dt{
    text-align: center;
    text-decoration: none;
    color: var(--primary) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    transition: color 0.3s ease;
}

/* #header.header-4 .a-nav-dt:hover{
    color: var(--secondary) !important;
} */

#header.header-4 .a-nav-mob{
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--primary-font); 
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

#header.header-4 .sidenav{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;

}

#header.header-4 .sidenav-content{
    z-index: 101;

}

#header.header-4 .sidenav-logo{
    display: flex;
    justify-content: center;    
    place-items: center;
    padding-bottom: 32px;
}

#header.header-4 .sidenav-nav{
    padding-top: 32px;
    display:flex; 
    flex-direction: column;
    gap: 24px;
}

#header.header-4 .close{
    position: absolute;
    z-index: 120;
    margin-top: 0px;
    left: 24px;
}

#header.header-4 .close-inner{
    width: 40px;
    height: auto;
}

@media only screen and (max-width: 765px){
    /*Header*/
    #header.header-4 .burgerMenue{
        display: block;
        position: absolute;
        z-index: 2;
        top: 50%;
        transform: translateY(-50%);
        right: 24px;
    }

    #header.header-4 .burgerMenue-inner{
        width: 40px;
        height: auto;
    }
    #header.header-4 .hero-image{
        width: 50%;
    }
    #header.header-4 .header-logo-mobile{
        display: flex;
        justify-content: center;    
        place-items:center;
        align-items: center;
        height: 100%;
        margin-bottom: 0px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    #header.header-4 .header-logo{
        display: none;
    }
    #header.header-4 .header-logo-inner-mobile{
        display: flex;
        justify-content: center;
        place-items: center;
        align-items: center;
        height: 100%;
    }

    #header.header-4 .navigationBar{
        display: none;
    }

    #header.header-4 .DT-Header-Img{
        display: none;
    }

    #header.header-4 .MOB-Header-Img{
        display: block;
    }

}