/* ==========================================================================
   Mobile hamburger navigation
   Only visible when .mobileNav is display:block (set in responsive.css)
   ========================================================================== */

.mobileNavBar {
    width: 100%;
}

.mobileNavInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
}

.mobileNavLogo {
    height: 50px;
}

/* Hidden checkbox controls the menu */
.mobileMenuCheckbox {
    display: none;
}

/* Hamburger icon */
.hamburgerIcon {
    font-size: 2em;
    cursor: pointer;
    color: white;
    user-select: none;
    padding: 5px 10px;
}

/* Menu panel – collapsed by default */
.mobileMenuPanel {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

/* Expand when checkbox is checked */
.mobileMenuCheckbox:checked ~ .mobileMenuPanel {
    max-height: 800px;
    transition: max-height 0.45s ease-in;
}

/* Menu items */
.mobileMenuItem a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
}

.mobileMenuItem a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.mobileMenuItemSelected a {
    font-weight: 400;
}

/* Sub-menu items are indented by the Menu control's StaticSubMenuIndent */
.mobileMenuItem .level2 a {
    padding-left: 30px;
    font-size: 15px;
}

/* Contact info at bottom of menu */
.mobileMenuContact {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.mobileMenuContact a {
    color: white;
}
