  /* Extra layout voor privacysectie (alles in jouw huisstijl) */
    
  
  * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body { background: #F2EFEB; color: #111; line-height: 1.7; }
a { text-decoration: none; color: inherit; }


  
  




header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F2EFEB;
  border-bottom: 2px solid #7A0000;
  display: flex;
  align-items: center;
  padding: 16px 50px; /* 50px links en rechts */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

.logo {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #000000;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.main-nav {
  margin-left: auto; /* duwt nav naar rechts */
}

.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;
  }
}







/* Responsiviteit */
@media (max-width: 600px) {
  .privacy-section {
    padding: 30px 20px;
  }

  .privacy-section h1 {
    font-size: 2rem;
    margin-top: 35px; /* Titel iets lager op mobiel */
  }

  .privacy-section h2 {
    font-size: 1.15rem;
  }

  .privacy-section p, 
  .privacy-section li {
    font-size: 0.95rem;
  }
}





















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%;
  }
}


















/* === Styling voor de Privacy Section === */
.privacy-section {
  max-width: 900px;
  margin: 60px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 50px 40px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

/* Titels en koppen */
.privacy-section h1 {
  font-size: 2.4rem;
  color: #7A0000; /* bordeaux */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.privacy-section h2 {
  color: #7A0000; /* bordeaux */
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 45px;
  margin-bottom: 8px;
  border-bottom: 2px solid rgba(122, 0, 0, 0.15);
  padding-bottom: 6px;
}

/* Tekst en paragrafen */
.privacy-section p {
  margin: 12px 0 18px;
  font-size: 1.05rem;
  color: #444;
}

.privacy-section ul {
  margin: 10px 0 20px 25px;
}

.privacy-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Links */
.privacy-section a {
  color: #7A0000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.privacy-section a:hover {
  color: #a30000;
  text-decoration: underline;
}

/* Vetgedrukte tekst */
.privacy-section strong {
  color: #222;
  font-weight: 600;
}

/* Footer / laatste paragraaf */
.privacy-section .footer-note {
  margin-top: 50px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  font-style: italic;
}

/* Responsiviteit */
@media (max-width: 600px) {
  .privacy-section {
    padding: 30px 20px;
  }

  .privacy-section h1 {
    font-size: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.15rem;
  }

  .privacy-section p, 
  .privacy-section li {
    font-size: 0.95rem;
  }
}
