* {
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  /* Standaard 100vh, maar we passen dit aan op mobiel */
  height: 100%;
  background-color: #84ab98;
}

h1 {
  font-size: 3em;
  font-family: 'BBH Sans Bartle', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  font-family: quicksand, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #465E6B;
}

.button-grid {
  display: flex; /* Beter 'flex' hier dan 'grid' voor knoppenrij */
  gap: 20px;
  padding: 10px 0px;
  max-width: 900px;
  justify-content: center; /* Gebruik 'content' voor 'flex' */
  align-items: center;
  font: bold 16px sans-serif;
  color: #F5F0E6;
  text-transform: uppercase;
}

.blue-button {
  background: linear-gradient(to right, #465E6B 50%, #FFF 50%);
  background-size: 200% 100%;
  background-position: left;
  color: #FFF;
  padding: 10px 15px;
  border-radius: 15px;
  text-align: center;
  text-transform: uppercase;
  width: fit-content;
  transition: background-position 0.4s ease, color 0.4s ease;
  font-weight: bold;
}

.blue-button:hover {
  background-position: right;
  color: #84ab98;
}

.screen {
  /* Zorg dat alle secties scroll-snap correct gebruiken */
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center; /* verticaal centreren */
  align-items: center; /* horizontaal centreren */
  scroll-snap-align: start;
  box-sizing: border-box;
  padding: 40px 10vw;
}

/* ------------------------------------- */
/* Desktop Intro Layout (Standaard) */
/* ------------------------------------- */
.intro {
  flex-direction: row; /* Content en image naast elkaar op desktop */
  justify-content: center; /* Centreer de totale inhoud */
  align-items: center;
  gap: 80px; /* Ruimte tussen content en image */
  padding: 40px 10vw;
  width: 100vw;
  max-width: 1600px; /* Beperk de totale breedte */
  margin: 0 auto;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Links uitlijnen op desktop */
  gap: 30px;
  flex: 1; /* Neemt gelijke ruimte in */
  max-width: 50%;
}

.intro-image {
  display: flex;
  justify-content: center; /* Centreer de afbeelding binnen zijn container */
  align-items: center;
  flex: 1; /* Neemt gelijke ruimte in */
  max-width: 50%;
}

.image-florre {
  width: 100%;
  max-width: 500px; /* Maximale breedte op desktop */
  height: auto;
  border-radius: 50px;
  /* Verwijder de vaste margin-right: 60px; */
  box-shadow: 0 8px 20px rgba(15, 23, 20, 0.06);
}

.image-florre:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.wisselwoord {
  transition: opacity 0.5s;
  border-bottom: 2px solid #6B8B7C;
  padding-bottom: 2px;
}
.wisselwoord.hide {
  opacity: 0;
}

/* ------------------------------------- */
/* Mobiele Layout (Media Query) */
/* ------------------------------------- */
@media (max-width: 900px) {
  
  /* De .intro sectie wordt kolom-gebaseerd */
  .intro {
    flex-direction: column; /* Content en image onder elkaar */
    align-items: left;
    justify-content: flex-start; /* Start bovenaan op mobiel */
    gap: 40px;
    
    /* Belangrijk: verwijder de vaste 100vh op mobiel zodat de content past */
    min-height: auto; 
    height: auto;
    padding: 80px 5vw; /* Meer verticale padding */
  }

  h1 {
    font-size: 2em; /* Iets kleinere header op mobiel */
  }

  h2 {
    font-size: 1.5em; /* Iets kleinere subheader op mobiel */
  }

  /* Intro-content (Tekst) boven de afbeelding */
  .intro-content {
    align-items: left; /* Tekst en knoppen centraal uitlijnen */
    text-align: left;
    max-width: 90%;
    order: -1; /* Zorgt ervoor dat de tekst eerst komt (boven de afbeelding) */
  }

  .intro-content header {
    font-size: 3em; /* Iets kleinere header op mobiel */
  }

  /* De knoppen binnen de grid ook centraal uitlijnen */
  .intro-content grid {
    justify-content: left;
  }
  
  /* Intro-image (Afbeelding) onder de content */
  .intro-image {
    max-width: 100%; /* Meer ruimte voor de afbeelding */
    justify-content: left;
  }

  .image-florre {
    width: 300px; /* Vaste, kleinere maat voor mobiel */
    max-width: 100%; /* Zorg dat deze niet overloopt */
    box-shadow: 0 8px 20px rgba(15, 23, 20, 0.06);
  }
  
  /* Algemene screen aanpassing voor mobiel */
  .screen {
    min-height: auto;
    height: auto;
    padding: 10vh 5vw;
  }

  .expertise-section {
    flex-direction: column;
    gap: 30px;
  }
}

.expertise-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Links uitlijnen op desktop */
  gap: 30px;
  flex: 1; /* Neemt gelijke ruimte in */
}

.experience-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontaal centreren */
  gap: 30px;
  flex: 1; /* Neemt gelijke ruimte in */
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.expertise-card {
  background: #FFFFFF;
  color: #1F292E;
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(15, 23, 20, 0.06);
  border: 1px solid rgba(15, 23, 20, 0.04);
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.expertise-card p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

/* hover effect */
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15, 23, 20, 0.09);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.experience-card {
  background: #FFFFFF;
  color: #1F292E;
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(15, 23, 20, 0.06);
  border: 1px solid rgba(15, 23, 20, 0.04);
  width: 100%;
  display: flex-start;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.experience-card p {
  margin: 15px 0;
  font-size: 0.95rem;
  flex: 1;
}

/* hover effect */
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15, 23, 20, 0.09);
}

/* Responsive: 1 column on small screens, 2 columns on medium */
@media (max-width: 1100px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

ul li {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
  text-indent: -1.5em;
  padding-left: 1.5em;
}


/* Cursor effects */

/* 1. Verberg de standaard muis op de hele pagina */
body {
    cursor: none;
    /* Jouw bestaande body styles blijven hier staan... */
}

/* 2. De stijl van de custom cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #F5F0E6;
    background-color: #F5F0E6;
    border-radius: 50%;
    
    pointer-events: none; /* Héél belangrijk! */
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s; /* Iets aangepast voor soepelheid */
    z-index: 9999;
}

/* 3. Het effect wanneer je over een kaart gaat */
#cursor.cirkel-groen {
    width: 25px;
    height: 25px;
    border: 2px solid #84ab98;
    background-color: #84ab98
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontaal centreren */
  gap: 30px;
  flex: 1; /* Neemt gelijke ruimte in */
}

.magnetic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;

  /* Make it large and circular */
  width: 150px;
  height: 75px;
  padding: 0;
  border-radius: 25px;

  /* button visual (match other buttons with gradient + hover) */
  background: linear-gradient(145deg, #465E6B 50%, #FFFFFF 50%);
  background-size: 300% 100%;
  background-position: left;
  color: #FFFFFF;
  border: 3px solid #465E6B;

  /* typography */
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;

  /* visual polish */
  box-shadow: 5px 8px 24px rgba(15, 23, 20, 0.12);
  cursor: pointer;
  transition: background-position 0.36s ease, color 0.36s ease, border-color 0.36s ease, transform 0.24s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

/* hover state (keeps the gradient animation used elsewhere) */
.magnetic-button:hover {
  background-position: right;
  color: #84ab98;
  border-color: #FFF;
}