/* ELOXI Responsive Styles */

/* Ultra-wide monitors */
@media (min-width: 1440px) {
  html {
    font-size: 18px;
  }
}

/* Desktop and Laptops (default above max-width) */

/* Tablets */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section {
    padding: var(--spacing-16) 0;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .nav-links {
    display: none; /* Mobile menu will be handled in JS */
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-4);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  
  .btn {
    width: 100%;
    padding: 1rem;
  }
}
