/* ========== HAMBURGER MENU MOBILE STYLES ========== */
@media (max-width: 768px) {
    /* Hide the regular menu */
    #topmenu, #topmenuwrap {
        display: none !important;
    }
    
    /* Create hamburger button */
    .mobile-menu-toggle {
        display: block !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        background: #333;
        color: white;
        border: none;
        padding: 12px;
        cursor: pointer;
        border-radius: 3px;
        width: 50px;
        height: 50px;
    }
    
    .hamburger {
        width: 25px;
        height: 3px;
        background: white;
        position: relative;
        display: block;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
    
    .hamburger:before,
    .hamburger:after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: white;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .hamburger:before {
        top: -8px;
    }
    
    .hamburger:after {
        bottom: -8px;
    }
    
    /* Transform hamburger to X when menu is open */
    .mobile-menu-toggle.active .hamburger {
        background: transparent;
    }
    
    .mobile-menu-toggle.active .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 999;
        display: none;
    }
    
    .mobile-menu-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 80%;
    }
    
    .mobile-menu-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-content li {
        margin: 20px 0;
    }
    
    .mobile-menu-content a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu-content a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    /* Remove the separate close button - we don't need it anymore */
    .mobile-close {
        display: none !important;
    }
}