/* ===============================
   INTRO, HIGHLIGHTS, OPTIONS
   RESPONSIVE STYLING
   =============================== */

/* === INTRO === */
.intro {
  padding: 80px 60px;
  background-color: var(--background-beige);
}

.text-container-intro {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.text-container-intro .title {
  font-size: 40px;
  margin-bottom: 10px;
}

.text-container-intro .description {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 18px;
  color: var(--main-colour);
}

/* === HIGHLIGHTS === */
.highlights {
  padding: 100px 20px;
  background-color: white;
  text-align: center;
}

.photo-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.kop {
    text-align: center;
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-nav a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  transition: 0.3s;
}

.slider-nav a.active {
  background-color: var(--main-colour);
}

/* === OPTIONS === */
.options {
  padding: 100px 40px;
  background-color: var(--background-beige);
}

.options .kop {
  font-size: 28px;
  margin: 40px 0 20px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* === RESPONSIVE MEDIA === */
@media (max-width: 768px) {
  .intro {
    padding: 50px 20px;
  }

  .text-container-intro .title {
    font-size: 32px;
  }

  .text-container-intro .description {
    font-size: 16px;
  }

  .photo-title {
    font-size: 17px;
    text-align: center;
  }

  .kop {
    text-align: center;
  }

  .custom-slider {
    flex-direction: column;
    padding: 0 10px;
  }

  .slider-track {
    width: 100%;
  }

  .wing-btn {
    width: 60px;
  }

  .options .kop {
    font-size: 22px;
  }
}











.divider {
  width: 90%;
  height: 1px;
  background-color: #333; /* Pas aan naar jouw gewenste kleur */
  margin: 16px auto; /* Maakt het gecentreerd en geeft ruimte erboven/onder */
  opacity: 0.8;
}