.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    height: calc(1.2em + 30px);
    
    background-color: rgb(191, 192, 195);

    overflow: hidden;

    z-index: 101;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.268);

    display: flex;
    flex-direction: row;
    align-items: center;
}

.left-nav {
    padding: 0;
    margin: 0;
    height: calc(1.2em + 30px);
    flex: 1;

    display: flex;
    gap: 10px;

    justify-content: left;
    align-items: stretch;

    flex-direction: row;

}



.nav-insta-logo-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-insta-logo {
    pointer-events: none;
    padding: 0 12px;
    display: block;
    height: 1.7em;
    object-fit: cover;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
}

/* @media (min-width: 1000px) {
    .nav-bar::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px;
        width: 150px;
        height: 100%;

        rotate: 60deg;

        background-image: linear-gradient(var(--bhs-red) 0%, var(--bhs-red) 33%, transparent 33%, transparent 67%, var(--bhs-red) 67%, var(--bhs-red) 100%);
    }
} */

.nav-item {
    position: relative;
    padding: 12px 24px;   
}

.nav-home-logo-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-home-logo {
    pointer-events: none;
    padding: 0 12px;
    display: block;
    height: 2.2em;
    object-fit: cover;
}



.f-nav-link {
    font-family: Montserrat, 'Red Hat Text', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2em;
    text-decoration: none;
    color: var(--bhs-blue);
    font-weight: 350;
    
    transition: font-weight .4s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.f-nav-link::after, .f-nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    
    height: 2.2px;
    width: 0;
    
    transition: width .14s ease-out;
    
    background-color: var(--bhs-red);
    
}

.f-nav-link:hover::after, .f-nav-link:hover::before {
    width: calc(50% - 24px) !important;
}

.f-nav-link::after {
    right: 50%;
    border-radius: 1px 0 0 1px;
}
.f-nav-link::before {
    left: 50%;
    border-radius: 0 1px 1px 0;
}

@media (min-width: 850px) {
    .home-logo-full {
        display: block;
    }
    .home-logo-med {
        display: none;
    }
}

@media (max-width: 850px) {

    .home-logo-full {
        display: none;
    }
    .home-logo-med {
        display: block;
    }

    .nav-home-logo {
        padding: 0 clamp(6px, 2vw, 12px);
        height: clamp(1.6em, 6vw, 2.2em);
    }

    .f-nav-link {
        font-size: clamp(.73em, 2.8vw, 1.2em);
        padding: 12px clamp(6px, 2.2vw, 24px);
        text-align: center;

        font-weight: 400;
    }
    
    .nav-insta-logo {
        padding: 0 clamp(8px, 3vw, 12px);
        height: clamp(1.2em, 4vw, 1.7em);
    }
}
