/* Mobile Menu Emergency Fix */
@media (max-width: 768px) {
    /* Force mobile menu visibility */
    .nav-menu {
        background: #ffffff !important;
        border: 3px solid #ff0000 !important; /* Red border for debugging */
        box-shadow: 0 0 20px rgba(0,0,0,0.5) !important;
    }

    /* Force all links to be visible */
    .nav-menu a {
        color: #000000 !important;
        background: #f0f0f0 !important;
        display: block !important;
        padding: 20px !important;
        margin: 5px !important;
        font-size: 18px !important;
        font-weight: bold !important;
        text-decoration: none !important;
        border: 2px solid #333333 !important;
    }

    .nav-menu a:hover {
        background: #cccccc !important;
        color: #0066cc !important;
    }

    .nav-menu a.active {
        background: #0066cc !important;
        color: #ffffff !important;
    }
}
