.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--content);
    border-bottom: 1px solid var(--primary);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.15rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo img {
    max-width: 48px;
    max-height: 48px;
    height: auto;
    width: auto;
    display: block;
}

.logo-text {
    color: grey;
    font-size: 1rem;
    font-weight: bold;
    font-family: sans-serif;
}

/* Hamburger */
.menu-toggle {
    border: none;
    background: var(--bg);
    color: grey;
    font-size: 1.8rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
}

.nav-list {
    display: none;
    list-style: none;
    gap: 1rem;
    margin-right: 20px;
    padding: 0;
}

.nav-list a {
    color: var(--text);
    text-decoration: none;
}

.nav-list a.nav-list-active {
    color: #00d4ff;
}

li a {
    display: flex;
    align-items: center;
    gap: 7px;
    /* voor de afstand tussen het menu icoontje en de menuoptie tekst*/
}

.nav-list.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 750px) {
    .menu-toggle {
        display: none;
    }

    .nav-list {
        display: flex;
    }
}