/* Algemene header styling */
header {
  margin-left: 220px;
  width: calc(100% - 220px);
  height: 200px;
  background-image: url('../../afbeeldingen/Laigle/Laigle-buiten-zijkantS1.jpg');
  background-size: cover;
  background-position: center;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  top: 0;
  transition: margin-left 0.3s ease;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.4), 
              0 6px 15px rgba(0,0,0,0.2);
}

    /* Extra kleine schermen */
    @media (max-width: 600px) {
      main {
        margin-left: 0;
        padding: 1rem;
      }
        header {
        margin-left: 0;
        width: 100%;
        height: 0vmin;
        min-height: 100px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        justify-content: center;
        padding: 20px;
      }
    }

    p {
      font-family: 'Open Sans', sans-serif !important;
    }

    h1, h2, h3, h5, h6 { 
      font-family: 'Playfair Display', serif !important;
      font-weight: 600;
    }

  /* Reservatie sectie */
  .reservatie-sectie {
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .reservatie-sectie h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
  }
  
  .reservatie-sectie p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555;
    line-height: 1.7;
  }
  
  .reservatie-methoden {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .reservatie-methode {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .reservatie-methode:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  
  .reservatie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #8ba888;
    border-radius: 50%;
    margin-bottom: 1rem;
    color: white;
  }
  
  .reservatie-icon.bellen {
    background: #2c5530;
  }
  
  .reservatie-icon.mailen {
    background: #8ba888;
  }
  
  .reservatie-icon.whatsapp {
    background: #25D366;
  }
  
  .reservatie-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .reservatie-methode h3 {
    margin: 0 0 0.5rem 0;
    color: #2c5530;
    font-size: 1.3rem;
    text-align: center;
  }
  
  .reservatie-methode p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.95rem;
    text-align: center;
  }
  
  .reservatie-link {
    display: inline-block;
    background: #8ba888;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
  }
  
  .reservatie-link:hover {
    background: #2c5530;
    transform: translateY(-2px);
  }
  
  .contact-intro {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
  }
  
  .contact-intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
  }
  
  .contact-methods-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-method {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #8ba888;
    transition: all 0.3s ease;
  }
  
  .contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    background: #fff;
  }
  
  .method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #8ba888;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: white;
  }
  
  .method-icon.whatsapp {
    background: #25D366;
  }
  
  .method-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .method-content {
    flex: 1;
  }
  
  .method-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c5530;
    font-size: 1.4rem;
  }
  
  .method-content p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 1rem;
  }
  
  .contact-btn {
    display: inline-block;
    background: #8ba888;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .contact-btn:hover {
    background: #2c5530;
    transform: translateY(-2px);
  }
  
  .contact-address {
    display: inline-block;
    background: #f1f3f4;
    color: #555;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-style: normal;
    line-height: 1.5;
  }
  
  /* Responsive aanpassingen */
  @media (max-width: 600px) {
      .reservatie-methoden {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .reservatie-methode {
    width: 100%;
    max-width: 280px;
    padding: 1rem 0.75rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .reservatie-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  
  .reservatie-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .reservatie-methode h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .reservatie-methode p {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    max-width: 220px;
  }
  
  .reservatie-link {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    min-width: 100px;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
  }
  
  /* Zorg dat de knop-container gecentreerd is */
  .reservatie-methode .reservatie-link {
    align-self: center;
  }
}

/* Voor hele kleine schermen */
@media (max-width: 400px) {
  .reservatie-methode {
    max-width: 260px;
    padding: 0.9rem 0.5rem;
  }
  
  .reservatie-methode h3 {
    font-size: 0.85rem;
  }
  
  .reservatie-methode p {
    font-size: 0.65rem;
    max-width: 200px;
  }
  
  .reservatie-link {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    min-width: 90px;
  }

    
    .reservatie-sectie h1 {
      font-size: 2rem;
    }
    
    .reservatie-sectie p {
      font-size: 1rem;
    }
    
    .contact-methods-vertical {
      gap: 1.5rem;
      padding: 0 1rem;
    }
    
    .contact-method {
      padding: 1.5rem;
      flex-direction: column;
      text-align: center;
    }
    
    .method-icon {
      margin-right: 0;
      margin-bottom: 1rem;
    }
    
    .contact-intro h1 {
      font-size: 2rem;
    }
    
    .contact-intro p {
      font-size: 1rem;
    }
  }