* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute; /* Zet de navbar over de header */
  width: 100%; /* Zorgt ervoor dat de navbar over de volledige breedte gaat */
  background-color: transparent; /* Maakt de achtergrond doorzichtig */
  padding: 10px 50px; /* Geeft wat ruimte */
  z-index: 1000; /* Zorgt ervoor dat het menu bovenop blijft */
}

.logo {
  width: 50px;
  margin: 0; /* Verwijder de marges */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-family: "tekton-pro", sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.dropbtn {
  color: white;
  text-decoration: none;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a:hover,
.dropbtn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  top: 100%;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: black;
}

.dropdown-content a img {
  width: 20px;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.flag-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
}

.header {
  height: 900px;
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
  background-size: cover;
  background-position: center;
}

.header-content {
  max-width: 500px;
  margin-left: 10%;
  margin-right: 10%;
}

.header-content h1 {
  font-family: "Tekton-Pro", sans-serif;
  font-size: 5em;
}

.header-content p {
  font-size: 1.6em;
  margin-top: 10px;
}

/*      BODY      */

.segment {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-column {
  width: 40%;
  margin-left: 5%;
  margin-right: 5%;
  color: #1a5fa2;
}

.text-column h2 {
  font-family: "Tekton-Pro", sans-serif;
  font-size: 4em;
  margin-bottom: 10px;
  line-height: 0.95em;
}

.text-column p {
  font-size: 1.5em;
  line-height: 1.6;
}

.image-column,
.video-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-column img {
  width: 100%;
}

.video-column iframe {
  width: 100%;
  height: 500px;
}

.reverse {
  flex-direction: row-reverse;
}

.over-amptraid {
  width: 100%;
}

/*    ACTIVITEIT   */

.activiteit {
  height: 800px;
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
  background-size: cover; /* Zorgt ervoor dat de achtergrond de hele sectie bedekt */
  background-position: center;
  background-repeat: no-repeat; /* Voorkomt herhaling */
  width: 100vw; /* Zorgt ervoor dat de sectie altijd 100% van het scherm gebruikt */
}

.volgende-activiteit {
  max-width: 500px;
  margin-left: 10%;
  margin-right: 10%;
}

.volgende-activiteit h1 {
  font-family: "Tekton-Pro", sans-serif;
  font-size: 4em;
  text-align: center;
  line-height: 0.9em;
}

.volgende-activiteit h5 {
  text-align: center;
  font-size: 1em;
  font-weight: 100;
  line-height: 2em;
}

.volgende-activiteit p {
  font-size: 1.6em;
  width: 100%;
  margin-top: 20px;
}

.activiteit-foto {
  width: 40%;
  margin: 0 auto;
  border-radius: 20px;
}

.activiteit-knop {
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 2px solid white;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.2s ease-in-out;
  font-family: Arial, Helvetica, sans-serif;
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.activiteit-knop:hover {
  background-color: white; /* Donkerdere tint bij hover */
}

.pdf-knop {
  display: inline-block;
  margin-left: 15px; /* Zorgt voor ruimte tussen de knoppen */
  vertical-align: middle;
}

.pdf-icon {
  width: 30px; /* Zorgt ervoor dat het niet groter wordt */
  height: 30px;
  max-width: 100%; /* Voorkomt dat de afbeelding de container overschrijdt */
  max-height: 100%;
  transition: opacity 0.2s ease-in-out;
}
.pdf-icon:hover {
  opacity: 0.7; /* Lichte doorzichtigheid bij hover */
}

/*     ACTIVITEITEN   */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.std {
  text-align: center;
  width: 100%;
  padding: 50px;
}

.sponsor {
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  text-align: center;

  font-size: 2em;
  text-align: center;
}

.sponsor h1 {
  margin-bottom: 20px;
  color: #1a5fa2;
  font-family: "Tekton-Pro", sans-serif;
}

.sponsor svg {
  width: 10%;
  padding-left: 20px;
}

/* 🌍 RESPONSIVE DESIGN 🌍 */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .segment {
    flex-direction: column;
    text-align: center;
  }

  .text-column {
    width: 90%; /* Breder op kleine schermen */
    margin: 20px auto; /* Ruimte rondom */
  }

  .image-column,
  .video-column {
    width: 100%; /* Zorgt ervoor dat afbeeldingen en video’s het hele scherm vullen */
  }

  .image-column img,
  .video-column iframe {
    width: 90%;
  }

  .volgende-activiteit {
    text-align: center;
    margin: 0 auto;
  }

  .activiteit-foto {
    display: none;
  }

  .activiteit-knop {
    padding: 12px 50px;
    width: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
