/* Mobile Menu Fixes - Clean & Simple */

/* Ensure header is always on top */
.header {
  z-index: 9999 !important;
  position: sticky !important;
  top: 0 !important;
}

/* Mobile navigation overlay */
@media (max-width: 768px) {
  .nav.active {
    z-index: 99999 !important;
    background: #1e40af !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  }
  
  .nav.active a {
    padding: 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    font-size: 1.1rem !important;
  }
  
  .nav-toggle {
    z-index: 100000 !important;
  }
}

/* Clean homepage - no clutter */
body {
  overflow-x: hidden;
}

/* Remove any conflicting sticky elements */
.trending-carousel,
.update-bar {
  display: none !important;
}
