* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #F2EFEB; /* lichtbeige achtergrond */
  color: #000000; /* zwarte tekst */
}


/* ======================= */
/* COMPENSATIE HEADER VOOR OVER ONS */
/* ======================= */
/* ======================= */
/* OVER ONS SECTIE - Huisstijl */
/* ======================= */
/* ===================== OVER ONS HERO ===================== */
/* ===================== OVER ONS HERO ===================== */
.overons {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 0 20px;
  flex-direction: column;
  background-color: transparent;
}

/* Achtergrondfoto */
.overons-img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6); /* iets donkerder voor beter contrast */
  pointer-events: none;
}

/* Overlay */
.overons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25); /* lichter voor Bordeaux leesbaarheid */
}

/* Content */
.overons-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.3s;
  color: #ffffff;
}

/* Slide-in animatie */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Welkom tekst */
.welkom-tekst {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}

.welkom-tekst small {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #b61313; /* Bordeaux */
  margin-top: 10px;
  text-transform: uppercase;
}

/* Highlight GloMaré subtiel wit/licht */
.welkom-tekst .highlight {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.85);
}

/* Subtekst */
.subtekst {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Buttons container */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

/* Beide buttons gelijk: primair Bordeaux, afgeronde hoeken, lichte schaduw */
.btn-hero-primary,
.btn-hero-secondary {
  background-color: #7A0000;
  color: #F2EFEB;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  background-color: #A00000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* 📱 Responsief */
@media (max-width: 768px) {
  .overons {
    padding-top: 120px;
  }

  .welkom-tekst {
    font-size: 2.2rem;
  }

  .welkom-tekst small {
    font-size: 1rem;
  }

  .subtekst {
    font-size: 1rem;
  }

  .overons-content .btn-hero-primary,
  .overons-content .btn-hero-secondary {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}


/* 📱 Responsief */
@media (max-width: 768px) {
  .overons {
    padding-top: 120px;
  }

  .welkom-tekst {
    font-size: 2.2rem;
  }

  .welkom-tekst small {
    font-size: 1rem;
  }

  .subtekst {
    font-size: 1rem;
  }

  .overons-content .btn-hero-primary,
  .overons-content .btn-hero-secondary {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}


.container-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 150px;
  padding: 100px 40px;
}

.block {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #ffffff;
  color: #333333;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}

.block:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Kleur per blok */
.block.left {
  background: radial-gradient(circle at top left, #fbd786, #f7797d);
}

.block.middle {
  background: radial-gradient(circle at bottom right, #a1c4fd, #c2e9fb);
}

.block.right {
  background: radial-gradient(circle at center, #fbc2eb, #a6c1ee);
}

/* Emoji stijl - VEEL GROTER */
.block .emoji {
  font-size: 5.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

/* Titel stijl */
.block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222222;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Float animatie */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* 📱 Mobiel responsief */
@media (max-width: 768px) {
  .container-section {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }

  .block {
    width: 240px;
    height: 240px;
  }

  .block .emoji {
    font-size: 4rem;
  }

  .block h3 {
    font-size: 1.2rem;
  }
}




/* ======================= */
/* 🌸 HERO SECTIE - verbeterd */
/* ======================= */
.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px 60px;
  background: linear-gradient(180deg, #F2EFEB 0%, #EDE8E3 100%);
  overflow: hidden;
}


/* ---------- Animatie ---------- */
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}


/* ---------- Hero content ---------- */
.hero img {
  max-width: 700px;
  width: 100%;
  border-radius: 18px;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1.2s ease forwards;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: #000000;
  line-height: 1.2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
}

.hero-content h1 span {
  color: #7A0000;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #333;
}

/* ===================== HERO BUTTONS HUISSTIJL ===================== */
.hero-content .btn-container .btn {
  background-color: #7A0000; /* Bordeaux */
  color: #F2EFEB;           /* Licht/beige tekst */
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-content .btn-container .btn:hover {
  background-color: #A00000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}


/* ---------- Animaties ---------- */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 25px;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .hero-shapes .shape {
    opacity: 0.18;
    transform: scale(0.8);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 15px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-shapes .circle {
    width: 130px;
    height: 130px;
    top: -30px;
    left: -40px;
  }

  .hero-shapes .blob {
    width: 180px;
    height: 180px;
    top: 65%;
    left: 10%;
  }

  .hero-shapes .star {
    display: none;
  }
}


.mijn-verhaal {
  background-color: #F2EFEB;
  color: #000000;
  padding: 80px 20px;
  font-weight: 500;
  overflow: hidden;
}

/* Container */
.mijn-verhaal .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* Tekstblok */
.tekstblok {
  flex: 1 1 500px;
  min-width: 280px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s ease-out;
}

.tekstblok h2 {
  font-size: 2.8rem;
  color: #7A0000;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Cursive', sans-serif;
}

.tekstblok h3 {
  margin-top: 40px;
  font-size: 1.8rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
}

.tekstblok p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
}

/* Kernwaarden */
.kernwaarden {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.kernwaarden li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #000000;
  font-weight: 600;
  cursor: default;
  transition: all 0.3s ease;
}

.kernwaarden li:hover {
  transform: translateX(5px);
  color: #7A0000;
}

.kernwaarden li .bullet {
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #7A0000;
  display: inline-block;
  transition: box-shadow 0.3s ease;
}

.kernwaarden li:hover .bullet {
  box-shadow: 0 0 8px 2px rgba(122, 0, 0, 0.6);
}

/* Beeldblok */
.beeldblok {
  flex: 1 1 400px;
  min-width: 280px;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s ease-out;
}

.beeldblok img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(122, 0, 0, 0.3);
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.beeldblok img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(122, 0, 0, 0.5);
}

/* Activatieklassen voor JS */
.mijn-verhaal.animate .tekstblok {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.mijn-verhaal.animate .beeldblok {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}


/* === ALGEMENE OPMAAK === */
.programma-workshops {
  background-color: #e6e3de; /* zachte neutrale achtergrond */
  padding: 60px 20px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.programma-workshops .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

/* === SLIDESHOW === */
.slideshow {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.1));
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  border-radius: 50%;
}

.slides img.active {
  opacity: 1;
  z-index: 1;
}

/* === SLIDESHOW KNOPPEN === */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  color: #7A0000;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10;
}

.slide-btn:hover {
  background-color: #7A0000;
  color: #fff;
  box-shadow: 0 6px 12px rgba(122, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.slide-btn.prev { left: 15px; }
.slide-btn.next { right: 15px; }

/* === INFO BLOK (rechterzijde) === */
.info-blok {
  flex: 1 1 450px;
  background-color: #F2EFEB; /* LICHTE ACHTERGROND – GEEN BORDEAUX */
  color: #000;
  padding: 40px 50px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-weight: 600;
}

.info-blok h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #7A0000;
}

.info-blok .intro-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.6;
}

.info-blok ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.info-blok ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: #333;
  font-weight: 600;
}

.info-blok ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #7A0000;
}

/* === KNOP === */
.btn.btn-primary {
  display: inline-block;
  background-color: #7A0000;
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(122,0,0,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn.btn-primary:hover {
  background-color: #590000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(122,0,0,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .programma-workshops .container {
    flex-direction: column;
    text-align: center;
  }

  .info-blok {
    border-radius: 20px;
    padding: 30px;
  }

  .info-blok ul li {
    padding-left: 0;
  }

  .info-blok ul li::before {
    display: none;
  }
}

.programma-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background-color: #7A0000; /* donkerrood */
  color: #F2EFEB;
  overflow: hidden;
  gap: 40px;
  flex-wrap: wrap;
}

.video-wrapper {
  flex: 1 1 400px;
  max-width: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.content {
  flex: 1 1 300px;
  max-width: 450px;
}

.content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #F2EFEB;
  font-family: 'Inter', sans-serif;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #F2EFEBcc;
}

/* Cirkel aan de zijkant */
.circle-decor {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background-color: #F2EFEB; /* lichtbeige */
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(242, 239, 235, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* Zorg dat video niet achter de cirkel komt */
.video-wrapper,
.content {
  position: relative;
  z-index: 2;
}

footer {
  background-color: #000;
  color: #F2EFEB;
  padding: 60px 50px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-section h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #7A0000;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p, 
.footer-section li {
  line-height: 1.6;
  color: #F2EFEB;
}

.footer-section a {
  color: #F2EFEB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #7A0000;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(-10deg);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #7A0000;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #F2EFEB;
}

/* Responsive */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

/* --- EMPOWERMENT SECTIE (verbeterd en opgeschoond) --- */
.empowerment {
  position: relative;
  background: linear-gradient(135deg, #F2EFEB 0%, #E7E2DC 100%);
  padding: 100px 20px;
  overflow: hidden;
  z-index: 1;
}

/* 🎨 Achtergrondvormen */
.empowerment-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Algemene stijl voor vormen */
.empowerment-shapes .shape {
  position: absolute;
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
  filter: blur(2px);
  pointer-events: none;
}

/* Grote cirkel links */
.empowerment-shapes .circle {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, #A72B2B, #7A0000);
  border-radius: 50%;
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

/* Kleine cirkel rechts */
.empowerment-shapes .circle.small {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 70% 70%, #C65C5C, #7A0000);
  bottom: 12%;
  right: 8%;
  animation-delay: 1.5s;
}

/* Subtiele blob (roodtint in het midden) */
.empowerment-shapes .blob {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, #A72B2B 40%, transparent 70%);
  border-radius: 50%;
  top: 40%;
  left: 55%;
  opacity: 0.3;
  filter: blur(5px);
  animation-delay: 1s;
}

/* Stervorm RECHTS ✨ */
.empowerment-shapes .star {
  width: 100px;
  height: 100px;
  background: #FFD166;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 
    68% 57%, 79% 91%, 50% 70%, 
    21% 91%, 32% 57%, 2% 35%, 
    39% 35%
  );
  top: 25%;
  right: 5%; /* ⭐ nu mooi rechts */
  opacity: 0.5;
  animation-delay: 2s;
}

/* 🌬️ Animaties */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 📦 Content container */
.empowerment .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 🪶 Content box */
.empowerment-content {
  background: #EDE3DD; /* zacht roze-beige */
  border-radius: 25px;
  padding: 60px 50px;
  box-shadow: 0 12px 40px rgba(122, 0, 0, 0.25);
  border: 5px solid #7A0000;
  animation: fadeInUp 1s ease forwards;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.empowerment-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(122, 0, 0, 0.35);
}

/* 🖋️ Titel */
.empowerment-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #7A0000;
  margin-bottom: 25px;
  position: relative;
  text-transform: capitalize;
}

.empowerment-content h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: #887445;
  border-radius: 2px;
}

/* 🧾 Tekst */
.empowerment-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2e2e2e;
  margin-bottom: 25px;
  font-weight: 500;
}

/* 🔹 Lijst */
.empowerment-content ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.empowerment-content li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.15rem;
  color: #7A0000;
  font-weight: 600;
  transition: all 0.2s ease;
}

.empowerment-content li:hover {
  transform: scale(1.05);
  color: #A72B2B;
}

/* 📱 Responsief */
@media (max-width: 768px) {
  .empowerment {
    padding: 70px 15px;
  }

  .empowerment-content {
    padding: 40px 25px;
  }

  .empowerment-content h2 {
    font-size: 2.2rem;
  }

  .empowerment-content p {
    font-size: 1rem;
  }

  /* Vormen subtieler maken op mobiel */
  .empowerment-shapes .shape {
    opacity: 0.1;
    transform: scale(0.8);
  }
}



/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    min-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .programma-video {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .circle-decor {
    display: none;
  }
  
  .video-wrapper,
  .content {
    max-width: 100%;
  }
}


































/* ===================== HERO BUTTONS ===================== */
.btn-hero-primary {
  background: transparent;
  color: #991a1a;            /* zwarte tekst */
  border: 2px solid #7A0000; /* volledige border kleur */
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;      /* onderstreep verwijderd */
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: #7A0000;
  color: #F2EFEB;
}

.btn-hero-secondary {
  background: #7A0000;
  color: #ffffff;            /* zwarte tekst */
  border: 2px solid #7A0000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;     /* onderstreep verwijderd */
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #7A0000;
  color: #F2EFEB;
}

/* ===================== HEADER ===================== */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F2EFEB;
  border-bottom: 2px solid #7A0000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

.logo {
  height: 45px;
  width: auto;
}

/* ===================== NAVIGATIE ===================== */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a,
.dropbtn {
  text-decoration: none;
  color: #7A0000;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.main-nav a:hover,
.dropbtn:hover,
.main-nav a.active {
  color: #A72B2B;
}

/* ===================== DROPDOWN ===================== */
.dropdown {
  position: relative;
}

/* Dropdown-menu luxe styling */
.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 45px;
  left: 0;
  background-color: #FFF8F6; /* warmer dan wit */
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border: 1px solid #7A0000;
  z-index: 999;
}

.dropdown-menu li {
  margin: 0;
  border-bottom: 1px solid #F2EFEB;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 20px;
  color: #7A0000;
  font-size: 0.95rem;
  text-align: left;
  transition: all 0.25s ease;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, #F2EFEB, #FFE8E5);
  color: #A72B2B;
  transform: translateX(3px);
}

.dropdown-menu a::before {
  content: '•';
  color: #A72B2B;
  margin-right: 8px;
  font-size: 0.8rem;
}

/* Actieve dropdown zichtbaar */
.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
}

/* ===================== NAV-BUTTONS ===================== */
.btn-nav {
  border: 1.5px solid #7A0000;
  background-color: transparent;
  color: #7A0000;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background-color: #7A0000;
  color: #F2EFEB;
}

/* ===================== HAMBURGER MENU ===================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 24px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #7A0000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===================== MOBIEL MENU ===================== */
@media (max-width: 850px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #F2EFEB;
    border-top: 2px solid #7A0000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 15px 0;
    text-align: center;
  }

  .main-nav.show ul {
    display: flex;
  }

  /* Standaard gesloten dropdown */
  .dropdown-menu {
    position: static;
    display: none;
    flex-direction: column;
    padding-left: 0;
    background-color: #FFF8F6;
    border: 1px solid #7A0000;
    border-radius: 8px;
    margin: 5px 0;
    max-height: 300px;      /* maximaal hoogte van dropdown */
    overflow-y: auto;       /* scroll alleen bij teveel items */
  }

  /* Dropdown open */
  .dropdown.show .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    padding: 10px 20px;
  }

  .dropdown-menu a:hover {
    background-color: #F2EFEB;
    transform: none;
  }

  /* Brede klikbare knop */
  .dropbtn {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

