.navbar {
    display: flex;
    width: 100%;
    height: 100px;
    position: relative;
    background: #ffffff;
    color: #000000;
    border-bottom: solid 1px #dadada;
}

.navbar .container {
    display: flex;
    width: 90%;
    height: 100px;
    margin: 0 auto;
    padding: 0;
    line-height: 100px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Menü-Button (mobile) */
.nav-toggle {
    display: none; /* Nur auf Mobile sichtbar */
}

/* Menü */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li {
    margin-left: 20px;
}

.nav-menu a {
    display: block;
    padding: 20px;
    color: #000000;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
}

.nav-menu a:hover {
    color: #000000;
    text-decoration: underline;
}

@media (max-width: 768px){
    .navbar {
        width: 100vw;
        position: fixed;
        top: 0;
        z-index: 1000;
        background: #fff;
        border-bottom: solid 1px #dadada;
        height: 60px;
        left: 0;
    }

    .navbar .container {
        height: 60px !important;
    }

    .btnDiv {
        width: 100%;
        display: flex;
        padding: 0;
        margin: 0;
        justify-content: space-between;
    }

    .nav-toggle {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        display: block;
        height: 60px;
        line-height: 60px;
        color: #000000;
        font-weight: 300;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;

    }

    .nav-menu.active {
        display: block;
        position: fixed;
        top: 60px;
        background: #ffffff;
        left: 0;
        height: auto;
        overflow: scroll;
    }

    .nav-menu > li {
        margin: 0;
        border-bottom: 1px solid #dadada;
    }

    /* Submenu in Mobile */
    .submenu {
        position: static;
        display: none;
        background: #f9f9f9;
    }

    .submenu li a {
        text-align: center;
        padding: 0.5rem 1rem;
        color: #000;
    }

    .submenu li a:hover {
        background: #f9f9f9;
        color: #000000;
    }

    .has-submenu.open > .submenu {
        display: flex;
        flex-direction: column;
    }
}