/**
 * Mobile Zoom Optimization
 * Zoom uit pagina's voor mobiel voor betere weergave
 */

@media (max-width: 768px) {
  html {
    /* Zoom uit voor mobiel - toont meer content */
    zoom: 0.85;
    -webkit-text-size-adjust: 85%;
  }
  
  body {
    /* Zorg dat alles past */
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Container optimalisatie */
  .container {
    max-width: 100% !important;
    padding: 0 1rem !important;
  }
  
  /* Hero optimalisatie voor mobiel */
  .hero {
    min-height: 70vh !important;
    padding: 3rem 0 4rem !important;
  }
  
  /* Tekst leesbaar houden */
  p, span, a, li {
    font-size: clamp(0.9rem, 3vw, 1rem) !important;
    line-height: 1.6 !important;
  }
  
  h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
  }
  
  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }
  
  h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
  }
}

@media (max-width: 480px) {
  html {
    zoom: 0.8;
    -webkit-text-size-adjust: 80%;
  }
}
