.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    font-weight: 400;
    border-bottom: .2rem solid;
    border-color: var(--accent-2);
    background-color: var(--accent-2-translucent);
    padding: .5rem 1.5rem;
    position: relative;
    z-index: 200;
    width: 100vw;
    backdrop-filter: blur(1rem);
}

.logo-container {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.logo-container img {
    width: 10rem;
    height: 5rem;
}

.menu-toggle {
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--text-primary-light);
    font-size: .2rem;
    cursor: pointer;
}

.menu-toggle path {
    stroke: var(--text-primary-light);
    stroke-width: .1rem;
}

.nav-items-container {
    display: none;
    /* flex-grow: 1; */
}

.show {
    display: flex;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    width: 100%;

    position: absolute;
    top: calc(100% + .2rem);
    right: 0;
    background-color: var(--bg-primary-dark);
}

.nav-list-item {
    list-style: none;
    font-size: 1rem;
    border-bottom: .1rem solid var(--text-primary);
    width: 100%;
    height: 100%;
    text-align: center;
}

.list-item-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary-light);
    width: 100%;
    height: 100%;
    padding: 1rem 0;
}

.list-item-link:hover {
    color: var(--accent-2);
}

.link-logo-img-container {
    width: 100%;
    height: 100%;
}

.link-image {
    object-fit: contain;
    max-width: 5rem;
    max-height: 100%;
    width: auto;
}

.nav-slogan {
    font-size: 1rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px var(--text-secondary);
    font-style: italic;
    font-weight: 200;
}

@media screen and (min-width: 1080px) {
    .container {
        position: relative;
    }

    .navbar {
        height: 6rem;
        gap: 0;
        flex-direction: row;
        padding: 1rem 5rem;
    }

    .logo-container {
        justify-content: flex-start;
        height: auto;
    }

    .logo-container img {
        width: 10rem;
    }

    .nav-slogan {
        font-size: 1.5rem;
    }

    .nav-items-container {
        display: block;
    }

    .nav-list {
        all: unset;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: stretch;
        position: unset;
        background-color: unset;
    }

    .nav-list-item {
        all: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .nav-list-item.img {
        width: 13%;
        height: 100%;
    }

    .list-item-link {
        display: inline-block;
        all: unset;
        text-align: center;
        cursor: pointer;
        padding: 1rem .8rem;
        color: var(--text-primary-light);
        font-weight: 600;
    }

    .list-item-link:hover {
        background-color: transparent;
        color: var(--accent-2)
    }

    .menu-toggle {
        display: none;
    }

    .link-image {
        max-width: 100%;
        max-height: 100%;
    }
}