/* css/responsive.css */

/* Hide mobile overlay on desktop globally */
.nav-mobile-overlay {
  display: none;
}

/* Mobile Base Nav Adjustments */
.nav-mobile-menu {
  display: none;
  cursor: none;
  color: var(--white);
  flex-direction: column;
  gap: 6px;
  width: 24px;
}

.nav-mobile-menu span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  :root {
    --content-padding: 6vw;
  }
  
  .nav-right, .nav-heartbeat {
    display: none;
  }
  
  .nav-mobile-menu {
    display: flex;
  }

  .nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 8999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  
  .nav-mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Disable custom cursor entirely on touch devices if possible, or below tablet */
  .cursor-outer, .cursor-inner {
    display: none !important;
  }
  
  body {
    cursor: auto !important;
  }
  
  a, button {
    cursor: pointer !important;
  }

  .artists-grid {
    grid-template-columns: 1fr !important;
  }

  .artists-grid-divider {
    display: none;
  }

  .kinetic-phase-grid, .values-grid, .footer-grid, .korben-nice-grid {
    grid-template-columns: 1fr !important;
  }
  
  .kinetic-css-art {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
  }
  
  .hero-meta {
    display: none; 
  }
}
