    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
    body { background: #F2EFEB; color: #000; line-height: 1.6; overflow-x: hidden; }
/* ===================== HEADER ===================== */
/* ===================== 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 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #000000; /* Bordeaux */
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.15); /* zachte diepte */
}

/* ===================== 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;
  }
}



    nav a:hover { border-color: #7A0000; }
    .btn {
      padding: 8px 20px; margin-left: 15px; border-radius: 6px; border: 2px solid #7A0000;
      background: transparent; color: #7A0000; font-weight: 600; cursor: pointer; transition: all 0.3s;
      text-decoration: none;
    }
    .btn:hover { background: #7A0000; color: #F2EFEB; }
    main, section { margin-top: 80px; }

    /* ---- Pakketten ---- */
    .pakketten { display: flex; flex-direction: column; gap: 60px; padding: 60px 20px; }
    .pakket-section {
      display: flex; align-items: stretch; gap: 40px; flex-wrap: wrap;
      opacity: 0; transform: translateY(60px);
      transition: opacity 1s ease, transform 1s ease;
    }
    .pakket-section.show { opacity: 1; transform: translateY(0); }
    .pakket-section.reverse { flex-direction: row-reverse; }

    .pakket-image {
      flex: 1 1 500px; display: flex; justify-content: center; align-items: center;
      border-radius: 25px; overflow: hidden;
      box-shadow: 0 12px 40px rgba(122,0,0,0.25);
      transform: translateX(-50px); opacity: 0;
      transition: all 1s ease;
    }
    .pakket-section.show .pakket-image { transform: translateX(0); opacity: 1; }
    .pakket-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 25px; }

    .pakket-content {
      flex: 1 1 500px; background: #EDE3DD; padding: 40px;
      border-radius: 25px; box-shadow: 0 12px 40px rgba(122,0,0,0.25);
      display: flex; flex-direction: column; justify-content: center; text-align: left;
      transform: translateX(50px); opacity: 0;
      transition: all 1s ease;
    }
    .pakket-section.show .pakket-content { transform: translateX(0); opacity: 1; }
    .pakket-content h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #7A0000; margin-bottom: 10px; }
    .pakket-content h3 { font-size: 1.3rem; color: #A72B2B; margin-bottom: 20px; }
    .pakket-content p { font-size: 1.1rem; margin-bottom: 15px; }
    .pakket-content ul { list-style: none; margin-bottom: 20px; }
    .pakket-content ul li { margin-bottom: 8px; font-size: 1.05rem; }
    .pakket-content .btn { display: inline-block; align-self: start; }
    .pakket-content ul {
  list-style-type: disc; /* toont bolletjes */
  padding-left: 1.5rem;  /* zorgt voor ruimte links */
}


    /* ---- Modal ---- */
    .modal {
      display: none; position: fixed; z-index: 2000; left: 0; top: 0;
      width: 100%; height: 100%; background-color: rgba(0,0,0,0.6);
      justify-content: center; align-items: center; padding: 20px;
    }
    .modal-content {
      background-color: #F2EFEB; color: #111; border-radius: 20px;
      max-width: 700px; width: 100%; padding: 40px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.3); text-align: left;
      position: relative; animation: fadeIn 0.3s ease;
    }
    .modal-content h2 { color: #7A0000; font-family: 'Playfair Display', serif; margin-bottom: 15px; }
    .modal-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 25px; }
    .modal-content .btn-contact {
      display: inline-block; padding: 12px 25px; font-size: 1.1rem;
      border-radius: 8px; border: 2px solid #7A0000; background: #7A0000;
      color: #F2EFEB; font-weight: 600; text-decoration: none; transition: all 0.3s ease;
    }
    .modal-content .btn-contact:hover { background: #A72B2B; border-color: #A72B2B; }
    .close {
      position: absolute; top: 15px; right: 20px; font-size: 1.8rem; color: #7A0000; cursor: pointer;
    }
    .close:hover { color: #A72B2B; }

    @keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }



    /* ===================== FOOTER ===================== */
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;
  }
}








/* Basis modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.modal-content {
  background-color: #F2EFEB;
  color: #111;
  border-radius: 15px;
  max-width: 500px;   /* kleiner standaard */
  width: 100%;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-align: left;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Responsive modal fix voor kleine schermen */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;         /* bijna volle breedte */
    max-width: 95%;     /* voorkom horizontaal scrollen */
    max-height: 85vh;   /* past in het scherm */
    padding: 20px;
    overflow-y: auto;   /* scrollbare content als het te groot is */
  }

  .close {
    top: 10px;
    right: 15px;
    font-size: 1.6rem;
  }
}


/* ===================== RESPONSIVE VOOR MOBIEL ===================== */
@media (max-width: 900px) {
  .pakketten {
    padding: 30px 10px;  /* minder padding rondom */
    gap: 20px;           /* minder ruimte tussen secties */
  }

  .pakket-section {
    flex-direction: column !important;  /* onder elkaar */
    align-items: center;                /* horizontaal centreren */
    text-align: center;                 /* tekst centreren */
    gap: 20px;                          /* ruimte image & content */
    margin-bottom: 20px;                /* kleine afstand tussen secties */
  }

  .pakket-image {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto;
    transform: none !important;         /* animatie reset */
  }

  .pakket-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
  }

  .pakket-content {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto;
    transform: none !important;         /* animatie reset */
    text-align: center;
    padding: 20px;                       /* minder padding */
  }

  .pakket-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .pakket-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .pakket-content p,
  .pakket-content ul li {
    font-size: 1rem;
  }

  .pakket-content ul {
    padding-left: 1rem;                 /* iets minder inspringen */
  }

  .pakket-content .btn {
    align-self: center;                  /* button centreren */
    margin-top: 15px;
  }
}

/* Extra klein scherm <500px */
@media (max-width: 500px) {
  .pakketten {
    padding: 20px 5px;   /* compacter */
    gap: 15px;
  }

  .pakket-section {
    margin-bottom: 15px;
  }

  .pakket-image, .pakket-content {
    max-width: 95%;
  }

  .pakket-content h2 {
    font-size: 1.8rem;
  }

  .pakket-content h3 {
    font-size: 1rem;
  }

  .pakket-content p,
  .pakket-content ul li {
    font-size: 0.95rem;
  }
}

/* Extra klein scherm <400px */
@media (max-width: 400px) {
  .pakket-content h2 {
    font-size: 1.6rem;
  }

  .pakket-content h3 {
    font-size: 0.95rem;
  }

  .pakket-content p,
  .pakket-content ul li {
    font-size: 0.9rem;
  }

  .pakket-content .btn {
    width: 100%;
  }
}

