/* ============================================================================
   NAVIGATION STYLES
   ============================================================================ */

/* Hamburger Icon */
.nav-hamburger {
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
    margin-left: 6px;
    font-weight: bold !important;
    font-style: normal !important;
    font-size: 16pt !important;
}

.nav-hamburger:hover {
    color: #0066cc;
}

.nav-hamburger:active {
    transform: scale(0.95);
}

/* Bottom Sheet Menu */
.nav-menu {
    position: fixed;
    bottom: -300px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: bottom 0.3s ease;
    z-index: 1999;
    padding-bottom: 20px;
}

.nav-menu.open {
    bottom: 0;
}

.nav-menu-handle {
    width: 40px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    margin: 15px auto;
}

.nav-menu a {
    display: block;
    padding: 18px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 14pt;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.nav-menu a:last-child {
    border-bottom: none;
}

.nav-menu a:hover {
    background: #f0f8ff;
    color: #0066cc;
}

.nav-menu a.active {
    background: #e6f2ff;
    color: #0066cc;
    font-weight: 900;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1998;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
