/* ==========================
   Global & Body styling
   ========================== */
html {
  scroll-behavior: smooth; /* vloeiend scrollen naar secties */
}

/* CSS: font-face toevoegen */
@font-face {
  font-family: 'Coolvetica';
  src: url('fonts/Coolvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Globaal toepassen */
body {
  font-family: 'Coolvetica', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('Glass.jpeg'); /* fullscreen achtergrond */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* blijft op zijn plek bij scrollen */
  color: white;
  text-align: center;
  overflow-x: hidden; /* voorkomt horizontale scrollbar */
}

/* ==========================
   Hero-sectie (Titel + Afbeeldingen)
   ========================== */
.hero {
  height: 100vh; /* fullscreen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

/* Titelafbeelding */
.title-image {
  max-width: 80%;
  height: auto;
}

/* Rij met kleine klikbare afbeeldingen */
.image-row {
  display: flex;
  flex-wrap: wrap; /* op mobiel onder elkaar */
  justify-content: center;
  gap: 1.5rem;
}

.image-row a {
  display: inline-block;
}

.image-row a img {
  width: 40vw;       /* past automatisch aan */
  max-width: 200px;  /* maximale breedte */
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block;
}

/* Hover-effect: tilt en omhoog */
.image-row a img:hover {
  transform: translateY(-10px) rotate(-3deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.image-text-section {
  display: flex;
  align-items: center; /* verticale centrering */
  justify-content: space-between;
  min-height: 80vh;
  padding: 4rem 2rem;
  background: transparent; /* geen gekleurd vlak */
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 400px;
  text-align: left;
}

.image-content {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.image-content img, .image-content iframe {
  width: 180px; /* gemiddeld grote afbeeldingen */
  border-radius: 12px;
}

p {
  color: white; /* je bestaande tekstkleur */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* lichte schaduw */
}

.highlight {
  color: #bababa; /* kies hier je gewenste kleur */
  font-weight: bold; /* optioneel, maakt het ook vet */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
align-items: flex-start;  padding: 4rem 2rem;
  background: transparent; /* geen gekleurd vlak */
}

.section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* schuift alles naar boven zodat tekst en afbeeldingen gelijk staan */
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

.section-text {
  flex: 1 1 400px;
  text-align: left;
   font-weight: bold;
   color: white;
   
}

.section-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end; /* rechts uitlijnen */
}

.section-images img {
  max-width: 500px;
  border-radius: 12px;
}

#Over {
  background-image: url('kip.jpeg');
  background-attachment: fixed;
  background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


#Nieuws {
  background-image: url('Op expeditie.png');
  background-attachment: fixed;
    background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

#Socials {
  background-image: url('kikker.jpeg');
  background-attachment: fixed;
    background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.instagram-row-wrapper {
  display: flex;
  justify-content: center;      /* horizontaal centreren */
  margin-top: -3rem;            /* schuift de hele rij iets omhoog */
}

.instagram-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      /* embeds zelf centreren */
  gap: 6rem;                    /* ruimte tussen de embeds */
}

.instagram-row blockquote.instagram-media {
  flex: 1 1 30%;
  max-width: 33%;
  min-width: 250px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  color: black;
}

.section-text {
  flex: 1 1 400px;
  font-size: 1.5rem;
  text-align: left;
}

.section-image {
  flex: 1 1 300px;
}

.section-image img {
  width: 100%;
  border-radius: 12px;
}

/* Sectie 3 socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.socials iframe, .socials img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
}

/* ==========================
   Mobielvriendelijk
   ========================== */
@media (max-width: 500px) {
  .image-row a img {
    width: 60vw; /* afbeeldingen groter op kleine schermen */
  }

  .hero {
    gap: 1.5rem; /* minder ruimte tussen titel en afbeeldingen */
  }

  section {
    padding: 3rem 1.5rem;
  }
}

/* ==========================
   Footer / copyright bar
   ========================== */
.footer {
  width: 100%;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
   background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* ruimte tussen copyright en knop */
}

/* Terug naar boven knop */
.scroll-top {
  background: #4f4f4faa; /* lichte knop */
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background: #ffffff;
}