#header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    /* padding: 0; */
    margin: 0;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    max-width: 100vw;
    height: 56px;
    z-index: 999;

    background-color: #eee;
    border-style: solid;
    border-width: 0 0 2px 0;
    border-color: #999;
}

/* wp menu components */

#nav .menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#nav .menu .menu-item {
    text-decoration: none;
    padding: .25rem, 1rem;
}

#nav .menu .current-menu-item a {
    color: #B13535;
}

/* navigation structure */

#nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

#nav a {
    font-family: 'Bebas Neue', cursive;
    text-decoration: none;
    color: #555;
    font-size: 24px;
    padding: 8px 16px 8px 16px;
}

#nav a:hover {
    color: #222;
}

/* mobile navigation structure */

#nav-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 699;

    width: 100%;
    height: auto;
    margin-bottom: 80px;
    bottom: 0;
}

#nav-mobile a {
    font-family: 'Bebas Neue', cursive;
    text-decoration: none;
    color: #555;
    font-size: 24px;
    padding: 0 12px 0 12px;
}

#nav-mobile a:hover {
    color: #222;
}

/* wp mobile menu components */

#nav-mobile .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 16px;
    margin: 0;
    width: 100%;

    list-style-type: none;
    background-color: #eee;
    box-shadow: 0 0 100px #222;
}

#nav-mobile .menu-main-menu-container {
    width: 100%;
    padding: 0 32px 0 32px;
}

#nav-mobile .menu-main-menu-english-container {
    width: 100%;
    padding: 0 32px 0 32px;
}

#nav-mobile .menu-main-menu-deutsch-container {
    width: 100%;
    padding: 0 32px 0 32px;
}

#nav-mobile .menu .menu-item {
    text-decoration: none;
    padding: 8px 0 8px 0;
}

/* mobile navigation toggle */

#nav-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 32px;

    width: 48px;
    height: 48px;
    z-index: 999;

    background-color: #B13535;
    box-shadow: 0 16px 50px #222;
}

#nav-mobile-toggle-icon {
    width: 100%;
    height: 100%;
    background-image: url("../assets/menu-icon.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

/* mobile queries */

@media screen and (max-width: 700px) {

    #header {
        top: unset;
        bottom: 0;
        background-color: unset;
        border-style: none;
    }

    #nav {
        display: none;
    }

    #nav-mobile-toggle {
        display: block;
    }

}

@media screen and (max-width: 1600px) {

    #nav a {
        font-size: 18px;
        padding: 8px 8px 8px 8px;
    }

}