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

.logo-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.logo-container img {
    height: 3.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-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 13rem;
    opacity: 0;
    background-color: transparent;
    backdrop-filter: blur(var(--blur-amount));

    position: absolute;
    top: -13rem;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all .2s ease-in-out;
}

.show {
    top: 100%;
    opacity: 1;
}

.nav-list-item {
    list-style: none;
    font-size: 1rem;
    border-bottom: .1rem solid var(--text-primary-light);
    width: 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: 4.5rem;
        gap: 0;
        flex-direction: row;
        padding: 1rem 5rem;
    }

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

    .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;
    }

    .menu-toggle {
        display: none;
    }

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

