.header-section {
      position: relative;
      height: 100vh; /* hele schermhoogte */
      overflow: hidden;
    }
    .header-img {
      max-height: 65vh;
      max-width: 60vw;
      object-fit: cover;
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4); /* donker overlay effect */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }
    
.overlay-container {
  position: relative;
  width: 100%;
  height: auto; /* of een vaste hoogte als nodig */
}

.mobile-img {
  width: 90vw;
  display: block;
}

.text-overlay {
  color: white;
  text-align: center;
  z-index: 2; /* boven de afbeelding */
}

/* Optioneel: een lichte overlay achtergrond voor beter contrast */
.text-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3); /* donkerlaag over afbeelding */
  z-index: -1;
  border-radius: 200px;
}
