:root{
  /* Primary brand colors */
  --green-accent: #3fa874;       /* accent / hover */
  --green-soft: #e8f3ee;         /* lichte achtergrond */

  /* Neutrals */
  --black: #0f0f0f;
  --dark-gray: #1c1c1c;
  --white: #ffffff;

  /* UI */
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  
  --apple-green: #8CC63F; 
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
html {
  height: 100%;
  font-size: clamp(15px, 1vw, 17px);
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* BELANGRIJK */
  height: 100%;
}

h1, h2, h3 {
  font-family: "Cooper Black", "Georgia", "Times New Roman", serif;
  color: var(--apple-green);
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

p,
li {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(
    circle,
    #ffffff,
    #f7f5ef
  ); 
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: all;
}

/* Langzamere pulse animatie */
.preloader img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 4s infinite ease-in-out; /* was 2s → nu 4s */
}

/* Langzamere fade-in */
.preloader-content {
  animation: fadeIn 2.2s ease forwards; /* was 1.2s → nu 2.2s */
}

/* Fade-out langzamer en zachter */
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;  
  transition: opacity 2.2s ease; /* was 1s → nu 2.2s */
}

/* Pulse animatie zelf ook rustiger */
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  50%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1);   opacity: 0.8; }
}

.preloader h2 {
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Fade-in animatie */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
} 

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  color: var(--white);
  padding: 10px 20px;
    position: relative;
  z-index: 10001;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu ul li a {
  color: var(--white);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.nav-menu ul li a:hover {
  color: var(--apple-green);
}

.hamburger {
  display: none;
  cursor: pointer;

  position: fixed;          /* 🔥 BELANGRIJK */
  top: 18px;
  right: 20px;
  pointer-events: auto;
  z-index: 10002; 
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: white;
  transition: 0.4s;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu.active {
  display: block !important;
}
.ticket-koop {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  animation: softPulse 3.5s infinite;
}

.ticket-koop a{
  color: white;
}

.ticket-koop a:hover {
  color: black;
}

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(140,198,63,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(140,198,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(140,198,63,0); }
}

.button1 {background-color: var(--apple-green);} /* Green */
.hero {
  min-height: 100vh;
  background: var(--apple-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  text-align: center;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(63,168,116,0.35),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFade 1.4s ease forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: .3px;
  box-shadow: 0 10px 30px rgba(31,122,74,0.35);
  transition: all .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(31,122,74,0.45);
}

/* Ghost variant */
.button.ghost {
  background: transparent;
  color: var(--apple-green);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--apple-green);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.float-shape {
  position: absolute;
  width: clamp(100px, 18vw, 180px);
  height: clamp(100px, 18vw, 180px);
  background: radial-gradient(
    circle,
    var(--apple-green), /* Intense groene kleur */
    transparent
  );
  opacity: 0.4; /* Een lagere opacity om het visueel te versterken */
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float-1 { top: 8%; left: 0; }
.float-2 { bottom: 12%; right: 0; }
.float-3 { top: 45%; right: 0; }
.float-4 { bottom: 35%; left: 0; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontaal centreren */
  justify-content: center; /* optioneel verticaal centreren */
  text-align: center;
  padding: 50px 20px;   /* ruimte rondom de tekst */
}

main .button,
.partner-btn {
  background:var(--apple-green);
  color: var(--white);
}

.partner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* netjes op mobiel */
  margin: 40px 0;
}

.partners {
  padding: 80px 20px;
  background-color: #f7f5ef;
  text-align: center;
}

.partners h2,
.hr-card h2 {
  color: var(--green-primary);
    font-size: 2rem;
  margin-bottom: 10px;
}
.partners-sub {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #333;
  font-size: 1.05rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

    .contact-form {
    background: black;
  color: var(--white);
      padding: 40px;
      border-radius: 10px;
      max-width: 700px;
      margin: 50px auto;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .contact-form h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.6em;
      color: white;
    }
    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-size: 1.1em;
    }
    .contact-form input, .contact-form textarea {
      width: calc(100% - 20px); /* Zorgt ervoor dat de padding niet te veel ruimte in beslag neemt */
      padding: 12px;
      margin: 0 auto 20px;
      border: 1px solid #333;
      border-radius: 5px;
      font-size: 1.1em;
      background-color: #fff;
      color: #333;
      box-sizing: border-box; /* Zorgt ervoor dat padding en border geen invloed hebben op de breedte */
    }
    .contact-form textarea {
      resize: vertical;
      min-height: 150px;
    }
    .contact-form input[type="submit"] {
      background-color: var(--apple-green);
      color: white;
      width: auto;              
      padding: 12px 36px;
      font-size: 1.2em;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin: 20px auto 0;      
      display: block;
    }
    .contact-form input[type="submit"]:hover {
      background-color: var(--apple-green);
    }
    .contact-form input:focus, .contact-form textarea:focus {
      outline: none;
      border-color: #4CAF50; /* Groene focus rand */
    }
    .contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--apple-green);
}

.hr-wizard {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.hr-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--apple-green);}

.hr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.15);
}

/* Kopjes */
.hr-card h2 {
  color: var(--purple);
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Tekst */
.hr-card p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  opacity: 0.9;
}
.split-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  padding: 6rem 10%;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.split-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #555;
}

.split-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
  transition: transform .6s ease;
}

.split-image img:hover {
  transform: scale(1.04);
}
/* ===== Algemene content styling ===== */

section {
  width: 100%;
  max-width: min(1100px, 92vw);
  padding: clamp(24px, 6vw, 60px);
  margin: 60px auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(40px);
  animation: sectionIn .9s ease forwards;
  box-sizing: border-box;

}

section:nth-of-type(2) { animation-delay: .1s; }
section:nth-of-type(3) { animation-delay: .2s; }
section:nth-of-type(4) { animation-delay: .3s; }

@keyframes sectionIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--apple-green);
}

section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--apple-green);
  max-width: 820px;
  margin: 0 auto 20px;
}

section ul {
  max-width: 700px;
  margin: 30px auto;
  padding-left: 0;
  list-style: none;
}

section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #333;
}

section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--apple-green);
  font-weight: bold;
}

.basic-section {
  background: black;
  border-left: 8px solid var(--apple-green);
  color: var(--apple-green);
  text-align: center;
}

.basic-section strong {
  color: var(--apple-green);
}

/* ===== Socials ===== */
/* Maak alle afbeeldingen in de basic section responsief */
.basic-section img {
  max-width: 100%;
  height: auto;
  display: block;
}
#socials ul {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

#socials li {
  padding-left: 0;
}

#socials li::before {
  display: none;
}

#socials a {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 40px;
  background: var(--apple-green);
  color: var(--white);
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255,255,255,0.35);
}

#socials a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31,122,74,0.35);
}
/* ===== Social icons footer ===== */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
}

.social {
  width: 60px; /* of 50px, afhankelijk van je voorkeur */
  height: 60px;
  border-radius: 50%;
  background: var(--apple-green);
  display: flex; /* gebruik flex om iconen te centreren */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 50px; /* je hebt dit al, kan blijven */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social svg {
  width: 100%;
  height: 100%;
  fill: white;
  display: block;
  align-items: center;
}

/* Hover animatie (rustig & gezond) */
.social:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(31,122,74,0.45);
}

/* Instagram gradient */
.social.instagram {
  background: radial-gradient(
    circle at 30% 30%,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

/* TikTok donker maar stijlvol */
.social.tiktok {
  background: linear-gradient(
    135deg,
    #000,
    #111
  );
  box-shadow: 0 4px 8px 0 white;
}

/* Facebook iets rustiger blauw */
.social.facebook {
  background: linear-gradient(
    135deg,
    #1877f2,
    #145dbf
  );
}

/* ===== Footer tekst (inhoudelijk) ===== */

footer p {
  opacity: 0.8;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  color: var(--apple-green);
}

/* ===== Responsive aanpassingen ===== */
@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 80vh;
    background-position: center top;
    padding-bottom: 40px;
  }
  .hamburger {
    display: block; /* Toon de hamburgerknop */
  }
  .nav-menu {
    display: none; /* Verberg het menu standaard */
    position: absolute;
    right: 0;
    top: 50px; /* Onder de header */
    background: black;
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 1000;
  }    
  .nav-menu.active {
    max-height: 300px; /* Voldoende hoogte om menu te tonen */
  }
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }

  /* Header spacing */
  .header {
    padding: 12px 16px;
  }

  /* Nav-menu full width dropdown */
  .nav-menu ul li a {
    padding: 12px;
    font-size: 18px;
  }
    section {
    padding: 28px 18px;
    margin: 24px auto;
    border-radius: 14px;
  }

  .basic-section {
    border-left-width: 4px;
  }

  section h2 {
    font-size: 1.8rem;
  }

  section p {
    font-size: 1rem;
  }
    .basic-section:first-of-type {
    margin-top: 40px;
  }
  .fact-section ul {
    grid-template-columns: 1fr;
  }
  .fact-section h2 {
    font-size: 1.8rem;
  }
  .float-shape {
    width: 100px;
    height: 100px;
    opacity: 0.2;
  }
  .social.tiktok,
  .social.instagram,
  .social.facebook {
    width: 60px;
    height: 60px;
  }
  .social.tiktok svg,
  .social.instagram svg,
  .social.facebook svg {
    width: 100%;
    height: 100%;
  }
}

footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
    background: black;
  color: var(--white);  padding: 40px 0 20px;
  text-align: center;
  text-decoration: none;
    box-sizing: border-box;

}
.footer-col a {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--apple-green);
  color: white;
  font-size: 0.9rem;
 list-style: none; 
text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}


.footer-col a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);

}
/* Container die alles centreert */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 0 20px;
  width: 100%;
}

/* Kolommen */
.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
list-style: none !important; 
}

.footer-column a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
}

.footer-column a:hover {
  opacity: 1;
  text-decoration: underline;
}
/* Puntjes uit footer-lijsten verwijderen */
.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-col ul li {
  list-style: none;
}

/* Onderste balk */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: none;
  padding-top: 15px;
  font-size: 14px;
}

.whatsapp-btn{position:fixed;right:20px;bottom:20px;  background: linear-gradient(
    180deg,
    #2AB540,
    var(--apple-green)
  );
  box-shadow: 0 14px 40px rgba(31,122,74,0.35);
  width: clamp(52px, 14vw, 64px);
  height: clamp(52px, 14vw, 64px);
border-radius:50%;display:grid;place-items:center;color:#fff;cursor:pointer;z-index:90;transition:transform .18s; border:none; outline: none; }
.whatsapp-btn:hover{transform:translateY(-6px);}
.whatsapp-svg{width:30px;height:30px;display:block;filter:drop-shadow(0 2px 6px rgba(0,0,0,0.12));}

@media (max-width: 480px) {
  .hamburger .bar {
    width: 22px;
  }
  .menu-links a {
    font-size: 22px;
  }

  .menu-logo {
    width: 140px;
    margin-bottom: 30px;
  }

  .menu-langs a img {
    width: 22px;
  }
  .ticket-koop,
  .button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
    .social {
    width: 44px;
    height: 44px;
  }

  .social svg {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 600px) {
  section {
    padding: 24px 16px;
    margin: 20px auto;
  }

  h1, h2 {
    text-align: center;
  }

  p {
    text-align: center;
  }
  .hr-card {
    padding: 30px 22px;
  }

  .hr-card h2 {
    font-size: 1.4rem;
  }
  .footer-container {
    gap: 24px;
  }

  .footer-col h3 {
    margin-bottom: 8px;
  }
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    padding: 4rem 6%;
  }

  .split-section.reverse {
    direction: ltr;
  }
}
@media (hover: none) {
  a:hover,
  button:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ===== Fullscreen hamburger menu ===== */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.menu-content {
  text-align: center;
  color: white;
}

.menu-logo {
  width: 180px;
  margin-bottom: 50px;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.menu-links li {
  margin: 20px 0;
}

.menu-links a {
  font-size: clamp(20px, 5vw, 28px);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.menu-links a:hover {
  color: var(--apple-green);
}

.menu-langs a {
  margin: 0 15px;
  font-size: 18px;
  color: #aaa;
  text-decoration: none;
}

.menu-langs a:hover {
  color: var(--apple-green);
}

.hero-wrapper {
  position: relative;
  min-height: 100vh;
  background-image: url("https://www.consultancy.nl/illustrations/news/detail/2023-04-05-023937472-Afschaffen_btw_op_groente_en_fruit_om_meerdere_redenen_niet_haalbaar.jpg"); /* jouw afbeelding */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.35) 70%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.header,
.hero-section {
  position: relative;
  z-index: 1;
}
.header {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0)
  );
}
.hero-section {
  background: transparent; /* belangrijk */
  color: white;
  padding: clamp(90px, 12vh, 140px) clamp(16px, 5vw, 60px);
  margin: 0 auto;
  box-shadow: none;
  border-left: none;
}
.menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10001;
}
/* ===== Follow hint animatie ===== */

.follow-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  gap: 6px;
}

.follow-text {
  font-size: 0.95rem;
  opacity: 0.85;
  letter-spacing: 0.5px;
  color: var(--apple-green);
}

.arrow {
  font-size: 40px;
  color: var(--apple-green);
  animation: bounceArrow 1.8s infinite ease-in-out;
}

/* Subtiele bounce animatie */
@keyframes bounceArrow {
  0%   { transform: translateY(0); opacity: 0.4; }
  50%  { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.4; }
}
.footer-col:hover .arrow {
  animation-play-state: paused;
}
.fact-section {
  background: black;
  border-left: 8px solid var(--apple-green);
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  color: var(--apple-green);
}

.fact-section h2 {
  color: var(--apple-green);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.fact-section ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style-type: none;
  padding: 0;
}

.fact-section li {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.fact-section li:hover {
  transform: translateY(-8px);
}

.fact-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}
.fact-section li:hover .fact-icon img {
  transform: scale(1.15) rotate(-3deg);
}
.fact-section p {
  font-size: 1.05rem;
  color: var(--apple-green);
}
@keyframes sectionIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fact-section {
  animation: sectionIn 1s ease forwards;
}

.fact-section li {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.fact-section li:nth-child(1) { animation-delay: 0.2s; }
.fact-section li:nth-child(2) { animation-delay: 0.4s; }
.fact-section li:nth-child(3) { animation-delay: 0.6s; }

/* 1️⃣1️⃣ Grote schermen (4K / ultrawide) */
@media (min-width: 1600px) {
  section,
  .hr-wizard,
  .footer-container {
    max-width: 1400px;
  }
}

/* 1️⃣2️⃣ Animaties uitschakelen voor performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.footer-column ul li::before,
.footer-column ul li::after,
section ul li::before,
section ul li::after {
  display: none !important;
}
/* Verwijder pseudo-elementen die mogelijk puntjes toevoegen */
.footer-column ul li::before,
.section ul li::before {
  display: none !important;
}










