/* ===============================
   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 (DESKTOP BLIJFT HETZELFDE) === */
.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);
}


/* ===============================
   ALLEEN MOBIEL AANPASSEN
   =============================== */
@media (max-width: 768px) {

  /* Intro */
  .intro {
    padding: 50px 20px;
  }

  .text-container-intro .title {
    font-size: 32px;
  }

  .text-container-intro .description {
    font-size: 16px;
  }

  .photo-title {
    font-size: 20px;
  }

  .options .kop {
    font-size: 22px;
  }

  @media (max-width: 768px) {

  /* Slider */
  .photo-gallery {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;

  margin-left: -20px;   /* trekt hem breder */
  margin-right: -20px;
  padding-left: 20px;   /* houdt nette binnenruimte */
  padding-right: 20px;
}

  .photo-gallery::-webkit-scrollbar{
    display: none;
  }

  /* ✅ Spacers: zorgen dat er aan de randen GEEN afgesneden foto-strookjes zijn */
  .photo-gallery::before,
  .photo-gallery::after{
    content: "";
    flex: 0 0 4px;            /* randruimte (pas aan: 16-24px is perfect) */
  }

  /* Slides */
  .gallery-item{
    flex: 0 0 75%;             /* jouw “mooie” look met beetje preview */
    scroll-snap-align: center;
  }

  .gallery-item img{
    width: 100%;
    height: auto;
    display: block;
  }
}

/* === DIVIDER === */
.divider {
  width: 90%;
  height: 1px;
  background-color: #333;
  margin: 16px auto;
  opacity: 0.8;
}