/* ===================== RESET & BODY ===================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: 'Poppins', sans-serif; 
  scroll-behavior: smooth; 
}
body { background: #F2EFEB; color: #111; line-height: 1.7; }
a { text-decoration: none; color: inherit; }



/* ===================== MAIN ===================== */


/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh; /* Flexibele hoogte */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F2EFEB;
  overflow: hidden;
  padding-top: 80px; /* ruimte voor fixed header */
}

.hero img.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: #FFD700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.btn-container .btn {
  margin: 0 10px;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #7A0000;
  color: #F2EFEB;
  border: none;
}
.btn-primary:hover { background: #A72B2B; }

.btn-secondary {
  background-color: #7A0000;
  color: #F2EFEB;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.btn-secondary:hover { background: #F2EFEB; color: #7A0000; }

/* ===================== FOUNDER SECTION ===================== */
.founder-section, .vision-section { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 50px; 
  max-width: 1200px; 
  margin: 80px auto; 
  padding: 0 20px; 
  align-items: center; 
}
.founder-text, .vision-text { flex: 1 1 500px; }
.founder-text h2, .vision-text h2 { 
  font-family: 'Merriweather', serif; 
  font-size: 2.8rem; 
  color: #7A0000; 
  margin-bottom: 20px; 
}
.founder-text p, .vision-text p { margin-bottom: 20px; font-size: 1.15rem; line-height: 1.8; }
.founder-image, .vision-image { flex: 1 1 500px; display: flex; justify-content: center; align-items: center; }
.founder-image img, .vision-image img { width: 100%; max-width: 500px; border-radius: 25px; box-shadow: 0 12px 40px rgba(122,0,0,0.25); }

/* ===================== TIMELINE ===================== */
.timeline-section { padding: 100px 20px; text-align: center; background: #F2EFEB; }
.timeline-section h2 { font-family: 'Merriweather', serif; font-size: 3rem; color: #7A0000; margin-bottom: 60px; }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #7A0000;
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 70px;
  text-align: left;
}
.timeline-dot {
  position: absolute;
  left: 22px;
  top: 0;
  width: 16px;
  height: 16px;
  background: #FFD699;
  border: 4px solid #7A0000;
  border-radius: 50%;
}
.timeline-item .year {
  font-weight: 700;
  color: #7A0000;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}
.timeline-item p { font-size: 1.1rem; line-height: 1.6; }

/* ===================== KERNWAARDEN ===================== */
/* ===================== KERNWAARDEN ===================== */
.values-section {
  background: #F2EFEB;
  padding: 100px 20px;
  text-align: center;
}

.values-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #7A0000;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: stretch;
}

.value-card {
  background: #F2EFEB;
  color: #7A0000;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.5;
}


/* ===================== FILOSOFIE ===================== */
.philosophy-section { background: #7A0000; color: #F2EFEB; text-align: center; padding: 100px 20px; }
.philosophy-section h2 { font-family: 'Merriweather', serif; font-size: 3rem; margin-bottom: 40px; }
.philosophy-section p { max-width: 900px; margin: 0 auto 40px; font-size: 1.3rem; line-height: 1.7; }
.philosophy-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.philosophy-item {
  background: #EDE3DD; color: #7A0000; padding: 40px 25px; border-radius: 25px;
  font-size: 1.2rem; min-width: 220px; box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  font-weight: 600; transition: transform 0.3s;
}
.philosophy-item:hover { transform: translateY(-15px); }

/* ===================== TEAM ===================== */
.team-section { max-width: 1200px; margin: 100px auto; padding: 0 20px; text-align: center; }
.team-section h2 { font-family: 'Merriweather', serif; font-size: 3rem; color: #7A0000; margin-bottom: 60px; }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; }
.team-member {
  background: #F2EFEB; padding: 30px; border-radius: 25px; max-width: 250px; flex: 1 1 250px; 
  transition: transform 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.team-member:hover { transform: translateY(-15px); }
.team-member img { width: 100%; border-radius: 25px; margin-bottom: 20px; }
.team-member h3 { font-weight: 700; color: #7A0000; margin-bottom: 10px; }
.team-member p { font-size: 1rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: #F2EFEB; padding: 100px 20px; text-align: center; }
.testimonials-section h2 { font-family: 'Merriweather', serif; font-size: 3rem; color: #7A0000; margin-bottom: 60px; }
.testimonials-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; }
.testimonial {
  background: #EDE3DD; padding: 40px; border-radius: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 300px; font-style: italic; font-size: 1.1rem; transition: transform 0.3s;
}
.testimonial:hover { transform: translateY(-10px); }

/* ===================== CONTACT CTA ===================== */
.contact-cta { background: #EDE3DD; color: #111; text-align: center; padding: 100px 20px; }
.contact-cta h2 { font-family: 'Merriweather', serif; font-size: 3rem; margin-bottom: 30px; }
.contact-cta p { max-width: 900px; margin: 0 auto 40px; font-size: 1.3rem; line-height: 1.7; }
.contact-cta a {
  display: inline-block; padding: 15px 35px; border-radius: 12px; background: #7A0000; color: #F2EFEB; font-weight: 600; transition: all 0.3s;
}
.contact-cta a:hover { background: #A72B2B; }

/* ===================== 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;
  }
}









/* ===================== HERO BUTTONS ===================== */
.btn-hero-primary {
  background: transparent;
  color: #ffffff;            /* zwarte tekst */
  border: 2px solid #ffffff; /* 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: transparent;
  color: #ffffff;            /* zwarte tekst */
  border: 2px solid #ffffff;
  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;
  }
}
