/* Color schemes */
#wave-particles-container {
    position: absolute;
    top: 0; /* or bottom: 0; if you want it at the bottom */
    left: 0;
    width: 100%;
    aspect-ratio: 530 / 107;
    overflow: hidden;
    z-index: -1; /* push it behind content if needed */
}

#wave-particles-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    clip-path: url(#wave-clip);
    pointer-events: none;
    z-index: 1;
}

.header {
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

nav {
    display: flex;
    width: 85%;
    justify-content: end;
}

nav > a {
    text-decoration: none;
    color: white;
    margin: 0 1rem 0 1rem;
    transition: all 200ms;
    font-family: 'Bungee', sans-serif;
    font-size: 1.8rem;
    font-weight: lighter;
}

#logo {
    max-width: 60px;
    height: 60px;
    transition: all 200ms ease-in-out;
}

#logo:hover {
    -webkit-filter: drop-shadow(0px 0px 5px #00e1ff);
    filter: drop-shadow(0px 0px 5px #00e1ff);
}

#logo > img {
    width: 100%;
    object-fit: contain;
}


#header-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    margin-top: -1rem;

}

/*ONDERLIJNEN VAN MENU*/
a.linkHeader {
    text-decoration: none;
    display: block;
    position: relative;
    transition: font-size 0.3s ease;
    line-height: 2rem;
}

a.linkHeader::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00CCCC 0%, #008080 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    color: #00CCCC;
}

a.linkHeader:hover::after {
    width: 100%;
    color: #00CCCC;
}

a.linkHeader.activePage::after {
    width: 100%;
    color: #00CCCC;
}

#dark-mode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#dark-mode-icon {
    height: 34px;
}

/*DARK MODE SWITCH*/
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;

    -webkit-transition: .4s;
    transition: .4s;

}

.slider:hover {
    background-color: rgb(29, 29, 29);
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;

    -webkit-transition: .4s;
    transition: .4s;


}

input:checked + .slider {
    background-color: #000a0a;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


@media only screen and (max-width: 1000px) {


    .header {
        flex-direction: column;
        align-items: center;
    }


    #logo-link {
        margin: 1rem auto;
    }

    .header > nav {
        width: 30%;
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }

    .header > nav > a {
        height: 4rem;
        display: grid;
        place-items: center center;

    }


}