/* App navigation header — compact variant of the landing page nav style */

/* Logo */
.navbar-brand img {
    height: 44px;
    width: auto;
}

/* Overline effect for nav links */
.nav-link.overline {
    position: relative;
    text-decoration: none;
    color: #000 !important;
    font-size: 1.2rem;
    font-family: "Libre Franklin", sans-serif;
    font-weight: bold;
    padding-top: 0.4rem;
    padding-bottom: 0.25rem;
    padding-left: 0 !important;
    flex-shrink: 0;
    min-width: 150px;
    max-width: 250px;
}

.nav-link.overline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: background-color 0.3s ease;
}

.nav-link.overline:hover,
.nav-link.overline:focus {
    color: rgba(0, 0, 0, 0.6) !important;
}

.nav-link.overline:hover::before,
.nav-link.overline:focus::before {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Navbar container */
.navbar {
    background-color: #fff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar>.container {
    justify-content: space-between;
}

.navbar-toggler {
    border: 2px solid #000;
    padding: 0.375rem 0.625rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 991.9px) {
    .navbar-collapse {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link.overline::before {
        left: 0;
        width: 100%;
    }

    .navbar-brand img {
        height: 36px;
        width: auto;
    }
}

@media (max-width: 500px) {
    .navbar-brand img {
        height: 28px;
    }
}