/* ===== MOBILE NAVIGATION COMPONENT ===== */
/* Hamburger menu and mobile drawer */
/* Extracted from index.php for reusability */

/* Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, #910029, #730027);
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #910029 0%, #5a001a 100%);
    z-index: 10000;
    transition: left 0.3s ease;
    padding-top: 60px;
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    left: 0;
}

.mobile-nav-drawer .nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-nav-drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-drawer ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-drawer ul li a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease;
}

.mobile-nav-drawer ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 10px;
        right: 15px;
        z-index: 9998;
    }

    .mobile-nav-drawer {
        display: block;
    }
}