.hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

/* slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide video,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay EXACT zoals je site */
.overlay {
  position: absolute;
  top: 180px;
  left: 120px;
  z-index: 5;
  color: #fff;
  max-width: 900px;
}

/* TITEL */
.overlay h1 {
  font-size: 70px;
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* SUB */
.overlay p {
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* BUTTON (exact jouw geel) */
.cta {
  display: inline-block;
  background: #f4a300;
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
}

/* pijlen zoals origineel */
.nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.nav-arrows span {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 12px 18px;
  cursor: pointer;
}

/* FIX: niks mag eroverheen liggen */
.hero-slider * {
  pointer-events: auto;
}