/* 
 * Amarved Recovery System - Responsive Stylesheet 
 */

/* Tablets & Small Desktops */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.5rem;
  }

  .nav-actions {
    display: none; /* Hide buttons in mobile nav for now, or move them inside .nav-links */
  }

  .glass-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Disable custom cursor on touch devices */
  .cursor-dot, .cursor-outline {
    display: none !important;
  }
}
