/**
 * Custom styles by Bart
 * Aanpassingen voor homepage video achtergrond
 */

/* Home cover video achtergrond - alleen voor template-home-2025.php */
#home-cover-video {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-cover-video .home-cover__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Donkere overlay over de video */
#home-cover-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#home-cover-video .row {
  position: relative;
  z-index: 2;
  width: 100%;
}

#home-cover-video .home-cover__content {
  position: relative;
  z-index: 2;
}

/* Responsive: lagere hoogte voor tablets en mobiel */
@media (max-width: 991px) {
  #home-cover-video {
    min-height: 400px;
    max-height: 400px;
  }
}

@media (max-width: 767px) {
  #home-cover-video {
    min-height: 300px;
    max-height: 300px;
  }
}
