 * GLOBAL NAV
/*
 */

/** expanded wide-screen mode + dropdown menus **/

.navbar {
    background-color: white;
    height: 80px;
    padding: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    color: #262626;
}

.navbar.navbar-light .navbar-nav a.nav-link {
    color: inherit;
    margin-right: 1em;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 0;
}

.navbar .dropdown-menu li a.dropdown-item {
   color: black;
   text-decoration: none;
}
.navbar .dropdown-menu li a.dropdown-item:hover {
   background-color: #A4B494;
   text-decoration: underline;
}

.navbar.navbar-light .navbar-nav .nav-link:hover, .navbar .dropdown-menu li a:hover {
    /*background-color: #A4B494;*/
}

.navbar.navbar-light .navbar-nav a.nav-link.active {
    border-bottom: 3px solid #262626;
}

@media screen and (max-width: 767px) {
    .navbar ul.dropdown-menu.show {
        padding-top: 0;
    }
}


/** hack to show sub-sub menus, though they're not as interactive they do indent to fgive an idea of structure **/
.navbar ul.dropdown-menu.show ul.dropdown-menu {
    display: block;
    position: inherit;
    border: 0;
    padding: 0;
}
.navbar ul.dropdown-menu.show ul.dropdown-menu a {
    padding-top: 0;
    padding-left: 2em;
}
.navbar ul.dropdown-menu.show ul.dropdown-menu a:not(:last-child) {
    padding-bottom: 0;
}
@media screen and (max-width: 767px) {  /* collapsed into hamgburger = indentation padding is on the RIGHT */
    .navbar .navbar-collapse.collapse.show ul.dropdown-menu li {
        padding-right: 2em;
    }
}


/** collapsed hamburger mode **/

.navbar .navbar-toggler {
    margin-right: 10px;
    padding: 0;
    border: 2px solid #A4B494;
}

.navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(144, 180, 148)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-collapse.collapse.show {
    z-index: 10;
}

.navbar-collapse.collapse.show a.nav-link {
    padding: 0.5rem 1rem;
}

.navbar .navbar-collapse.collapse.show .dropdown-menu {
    border: none;
    margin: 0;
    padding-left: 2em;
}
.navbar .navbar-collapse.collapse.show .dropdown-menu li a.dropdown-item {
    padding: 0 1rem 0 .5rem !important;
}


/** the logo **/

.navbar .navbar-brand {
}

.navbar .navbar-brand img {
    height: 50px;
}

@media (max-width: 575px) {
    .navbar .navbar-brand img {
        height: 40px;
        margin-left: 1em;
    }
}


/*
 * SKIP NAVIGATION
 */

#skip-navigation {
    position: absolute;
    top: 8px;
    left: 275px;
}

@media screen and (max-width: 1199px) {
    #skip-navigation {
        top: 15px;
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    #skip-navigation {
        left: 250px;
    }
}
@media screen and (max-width: 675px) {
    #skip-navigation {
        display: none !important;  /* screenreaders are not phones */
    }
}

#skip-navigation a {
    color: transparent;  /* invisible unless tab-focused */
    cursor: default;
}
#skip-navigation a:focus, #skip-navigation a:hover, #skip-navigation a:active, #skip-navigation a:visited {
    color: transparent;
    cursor: default;
    outline: 0;
    border: none;
    -moz-outline-style: none;
}


/*
 * bottom spacing
 */

.navbar {
    margin-bottom: 10px;
}



/*
 * OUR OWN WEIRD BUMPER ROW BEFORE THE NAVBAR
 * a blurb, a search widget, and a logo
 */
#preheader {
    background-color: white;
}

#preheader_subtitle {
    text-transform: uppercase;
    font-size: 12px;
    font-family: Montserrat, sans-serif;
}
@media screen and (min-width: 1200px) {
    #preheader_subtitle {  /* highly contrived to vertical-align text at highly specific screen sizes, and changes with every change of font & size */
        line-height: 35px;
    }
}

#preheader_lmulogo {
    height: 35px;
}

#preheader_searchbox {
}
#preheader_searchbox .form-control {
    height: 2rem;
}
#preheader_searchbox .input-group-append {
    cursor: pointer;
}

#preheader_statebutton {
    white-space: nowrap;
}
