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

/* =========================
   BASE
========================= */

:root {
  --accent: orange;
  --accent-hover: #ff7a00;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #333;
}

/* Headers */
h1, h2, h3 {
  font-family: 'Chelsea Market', cursive;
  margin: 0;
}

/* =========================
   NAV / HEADER
========================= */

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 40px;
  height: 70px;

  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  background: var(--accent);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* =========================
   HERO (LANDING PAGE)
========================= */

.hero {
  background: linear-gradient(180deg, #dcf3ff, white);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3em;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */

.btn {
  background: var(--accent);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* =========================
   CONTAINERS
========================= */

.text-content {
    max-width: 1000px;
    margin: 0 auto;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
  padding: 40px 20px;
}

/* =========================
   SPLINE (GROEP PAGINA'S)
========================= */

.spline-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.spline-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* alleen onderkant fade */
.spline-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to top, white, transparent);
  z-index: 2;
  pointer-events: none;
}
/* =========================
   CARDS (TEKST BLOKKEN)
========================= */

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* =========================
   VIDEO
========================= */

video {
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #777;
  margin-top: 40px;
}
/* =========================
   IMAGES
========================= */
.image-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.image-wrapper img {
  width: 90%;
  max-width: 1100px;
  height: 80vh;
  object-fit: cover;

  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* hover effect */
.image-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.split-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.split-text {
  flex: 1;
}

.carousel {
  flex: 1;
  position: relative;
  min-height: 250px;
}

/* image in card stijl */
.split-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

/* zelfde hover als card */
.split-card:hover img {
  transform: scale(1.02);
}

/* tekst helft */
.split-text {
  flex: 1;
}

/* image helft */
.split-image {
  flex: 1;
}

/* responsive */
@media (max-width: 1000px) {
  .split-card {
    flex-direction: column;
  }
}
.carousel {
  position: relative;
  width: 100%;
  height: 300px; /* belangrijk → anders geen hoogte */
  overflow: hidden;
  border-radius: 15px;
}

/* alle images boven elkaar */
.carousel img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 1;
  transition: opacity 0.6s ease;
}

.carousel img {
  position: absolute;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.carousel img.active {
  opacity: 0;
}
.landing-split {
  display: flex;
  gap: 40px;
  align-items: flex-start;

  /* 🔥 BELANGRIJK: zelfde breedte als container */
  max-width: 1000px;
  margin: 0 auto;

  /* geen extra “card look” effecten */
  box-shadow: none;
  background: transparent;
  padding: 40px 20px;
}

/* tekst en image gelijk verdeeld */
.landing-split .split-text {
  flex: 0.8;
}

.landing-split .split-image {
  flex: 1.4;
}

/* image clean zonder shadow/hover */
.landing-split .split-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: none;
  transition: none;
}

/* responsive */
@media (max-width: 1000px) {
  .landing-split {
    flex-direction: column;
     margin-bottom: 10px;
  }
}
.landing-split:hover {
  transform: none !important;
}
/* haalt ruimte tussen deze 2 blocks weg */
.no-gap-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 10px; /* voorkomt “plak-gevoel” */
}

.no-gap-top {
   margin-top: 0 !important;
  padding-top: 10px;
}
.no-gap-bottom + .card {
  margin-top: 0 !important;
}

p {
  margin-bottom: 16px;
}
ul { 
  margin-bottom: 16px;
}

h3{
  margin-bottom: 6px;
}

@media (max-width: 768px) {

  header {
    padding: 10px 15px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  nav a {
    margin: 5px 0;
    font-size: 14px;
  }
}
#intro {
  margin-top: 20px;
}
.video-card {
  margin-top: 60px;
}
.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; /* verder uit elkaar */
  margin: 20px 0 30px;
}

.hero-logos img {
  height: 150px; /* kleiner */
  width: auto;
  object-fit: contain;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 6px 5px rgba(0,0,0,0.15));
}

.hero-logos img:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
}