/* Wrapper vult breedte en hoogte */
.oogst-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80vh;
  background: var(--primary-color);
  overflow: hidden;
  color: #fff;
  padding: 0px;
}

/* Tekst in container (zelfde breedte als UX rows) */
.oogst-inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}
.oogst-text {
  max-width: 450px;
}
.oogst-phase-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.oogst-phase-desc {
  font-size: 1rem;
  line-height: 1.5;
}

/* Pijlen */
.oogst-arrows {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.oogst-btn {
  background: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0px;
  transition: 0.2s ease-in-out;
}
.oogst-btn:hover {
  color: var(--secondary-color);
}

/* Animatieblok (full-width rechts) */
.oogst-animatie {
  position: absolute;
  right: -29%;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw; /* neemt rechter deel scherm */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cirkelpad */
.oogst-circle {
  position: relative;
  width: 420px;
  height: 420px;
  border: 50px solid #2693d6;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: visible;
}

/* Fases */
.fase {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease, width 0.3s, height 0.3s;
}
.fase img {
  width: 80%;
  height: auto;
}
.fase.active {
  width: 320px;
  height: 320px;
  z-index: 5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fase.active img {
  width: 80%;
}

/*---productiepagina---*/
/*video*/
.video-wrapper {
  width: 100%;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5.4; 
  border-radius: 20px;
  object-fit: cover; 
  display: block;
}

.video-player2 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; 
  border-radius: 20px;
  object-fit: cover; 
  display: block;
}
