/* main nav rules */
.navbar {
    /* proportions */
    width: 100%;
    padding: 0;

    /* font */
    font-size: 18px;

    /* colors */
    background-color: var(--nav-color);
}

.navbar a {
    text-decoration: none;
    color: inherit;
}

.navbar-inner {
    height: 100%;
    width: 100%;

    padding: 0.5rem 1rem;
    margin: auto;
    display: flex;
    align-items: center;
}

/* button container */
.navbar-buttons {
    margin-left: auto;
    display: flex;
    align-items: center;
    order: 1;
}

.navbar-button-container-a {
    height: 100%;
}

.navbar-button-container {
    height: 100%;
    padding: 0 0.75rem;
    position: relative;
}

.navbar-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--text-inactive);
    font-family: "Montserrat", sans-serif;
    text-wrap: nowrap;

    user-select: none;
    transition: color 200ms ease-in-out;
}

.navbar-button:hover {
    color: var(--text-color);
}

.navbar-button.active {
    color: var(--paperjam-red-light);
}

.navbar-button i {
    padding-right: 0.5rem;
}

.brand-nav {
    margin-left: 0.5rem;
}

/* responsive menu */
.responsive-buttons {
    display: flex;
}

.responsive-menu-buttons {
    display: none;
    margin-right: 0;
    padding-right: 0.5rem;
    font-size: 2rem;
}

.responsive-menu-button-container {
    padding: 0;
}

.responsive-menu-button {
    padding: 0 0.5rem;
    cursor: pointer;
    font-size: 2rem;
}

.responsive-menu-buttons i {
    padding: 0;
}

/* Responsiveness */
/* lg screen */
@media only screen and (max-width: 1200px) {

}

/* md screen */
@media only screen and (max-width: 992px) {
    .navbar {
        height: unset;
    }

    .navbar-inner {
        flex-wrap: wrap;
    }

    .responsive-buttons {
        flex-basis: 100%;
        padding-top: 1.25rem;
        align-items: start;
        flex-direction: column;
    }

    .responsive-buttons.hidden {
        display: none;
        height: 0;
    }

    .navbar-button-container-a .navbar-button:not(.navbar-cart), .language-selection {
        justify-content: start;
        padding-bottom: 0.5rem;
    }

    .responsive-menu-buttons {
        display: block;
    }
}

/* sm screen */
@media only screen and (max-width: 768px) {

}

/* xs screen */
@media only screen and (max-width: 576px) {
    .brand-name.brand-nav {
        display: none;
    }
}