/* Responsive Design Overrides */

@media (max-width: 1200px) {
  .section {
    padding: 6rem 5% 3rem 5%;
  }
  .header-nav {
    padding: 1.2rem 5%;
  }
}

@media (max-width: 992px) {
  :root {
    /* Slightly smaller scrollbars or glow sizes */
  }
  
  .grid-overlay {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Layout modifications for 2-column sections */
  .two-column-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

@media (max-width: 768px) {
  /* Disable custom cursor on touch devices */
  * {
    cursor: auto !important;
  }
  .custom-cursor, .custom-cursor-glow {
    display: none !important;
  }
  
  .header-nav {
    padding: 1rem 5%;
  }
  
  .nav-links {
    display: none; /* Hide standard links; could add hamburger but direct inline scroll works best for high end portfolio */
  }
  
  .section {
    padding: 5rem 5% 2rem 5%;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem !important;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Universe Canvas mobile sizing */
  .universe-canvas {
    height: 400px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1200px) {
  .hero-scroll-indicator {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4rem 1.5rem 2rem 1.5rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }

  .btn-nav-highlight {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
  }
}
