#header.header-1{
    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 Container */
#header.header-1 .header-container {
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header Content */
#header.header-1 .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
#header.header-1 .header-logo-container {
    display: flex;
    align-items: center;
}

#header.header-1 .header-logo {
    max-height: 60px;
    width: auto;
}

/* Header Right */
#header.header-1 .header-right{
    display: flex;
    flex-direction: row;
    gap: var(--space-s);
}

/* Navigation Links */
#header.header-1 nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#header.header-1 .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    color: var(--primary);
}

#header.header-1 .nav-links li a {
    color: var(--primary) !important;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Buttons */
#header.header-1 .header-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#header.header-1 .header-buttons button {
    border: 1px solid var(--primary);
    background-color: var(--light);
    color: var(--primary);
    padding: 12px 24px;
    margin-left: 10px;;
    cursor: pointer;
    font-size: 14px;
}

#header.header-1 .header-buttons button.primary {
    background-color: var(--primary); /* Blaue Farbe */
    color: var(--light); /* Weißer Text */
    border: 1px solid var(--primary);
}

/* Buttons */
#header.header-1 .buttons{
    display: flex;
    justify-content: center;
    align-items: center;

}

#header.header-1 .buttons button {
    border: 1px solid var(--primary);
    background-color: var(--light);
    color: var(--primary);
    padding: 12px 24px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
}

#header.header-1 .buttons button.primary {
    background-color: var(--primary); /* Blaue Farbe */
    color: var(--light); /* Weißer Text */
    border: 1px solid var(--primary);
}


#header.header-1 .header-hamburger-icon{
    cursor: pointer;
}

#header.header-1 .header-nav-desktop{
    display: block;
}

#header.header-1 .header-nav-mobile{
    display: none;
}

/*  Sidenav */
#header.header-1 .header-sidenav{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#header.header-1 .header-sidenav-links-container{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: var(--space-m);
    padding-bottom:  var(--space-m);
    padding-left:  24px;
    padding-right: 24px;
}

#header.header-1 .header-sidenav-links-container a{
    text-decoration: none;
}

.sidenav-links{
    color: var(--primary);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

/* Media Query Tablet */
@media only screen and (max-width: 765px){
    #header.header-1 .header-nav-desktop{
        display: none;
    }
    
    #header.header-1 .header-nav-mobile{
        display: block;
    }
}