/* Responsive CSS voor Kurstjens Puttenboorbedrijf - Multi-page versie */

/* Tablet (middelgrote schermen) */
@media (max-width: 992px) {
  /* Algemeen */
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  /* Grids aanpassen */
  .card-grid,
  .benefits-grid,
  .service-areas {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* 2-koloms layout wordt 1-kolom */
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Hero section aanpassen */
  .hero-section {
    height: 350px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
    .nav-list li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-list a {
    display: block;
    padding: 0.8rem 1rem;
    width: 100%;
  }
}

/* Mobile (kleine schermen) */
@media (max-width: 768px) {
  /* Algemeen */
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  /* Header aanpassen */
  .site-header {
    padding: 0.6rem 0;
  }
  
  .site-header .container {
    flex-direction: row;
    justify-content: center;
    padding: 2.6rem 1rem;
    position: relative;
  }
  
  .logo {
    margin-bottom: 0;
    max-width: 160px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Mobiel menu toggle */
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 0.5rem 0;
    margin-top: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-list a {
    display: block;
    padding: 0.8rem 1rem;
    width: 100%;
  }
  
  /* Grids aanpassen naar 1 kolom */
  .card-grid,
  .benefits-grid,
  .service-areas {
    grid-template-columns: 1fr !important;
  }
  
  /* Hero section verkleinen */
  .hero-section {
    height: 300px;
  }
  
  .hero-content {
    padding: var(--spacing-sm);
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Buttons verkleinen */
  .cta-button, .submit-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  /* Form aanpassingen */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  /* Timeline aanpassingen */
  .about-timeline {
    padding-left: 1rem;
  }
  
  .timeline-year {
    left: -1.5rem;
    width: 3rem;
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  /* Hero section nog kleiner */
  .hero-section {
    height: 250px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  /* Footer aanpassingen */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Cookie consent vereenvoudigen */
  .cookie-consent {
    padding: 1rem;
  }
  
  .cookie-content h3 {
    font-size: 1.2rem;
  }
  
  .cookie-content p {
    font-size: 0.9rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Mobile menu animations */
@media (max-width: 768px) {
  .mobile-menu-toggle.active .hamburger-icon {
    background-color: transparent;
  }
  
  .mobile-menu-toggle.active .hamburger-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active .hamburger-icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .cookie-consent,
  .mobile-menu-toggle,
  .cta-button {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .hero-section {
    height: auto;
    position: static;
  }
  
  .hero-image::after {
    display: none;
  }
  
  .hero-content {
    position: static;
    color: #000;
    padding: 0;
  }
  
  .hero-content h1,
  .hero-content p {
    background: none;
    color: #000;
    text-shadow: none;
  }
  
  .page-break {
    page-break-before: always;
  }
}