
:root {
  --background: #f8f8f8;
  --accent:  #222423;
  --text: black;
  --text2: #fff;
  --soft: #aa635c;
  --footer:#837263;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  color: var(--text);
  overflow-x: hidden;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-display: swap; /* <<< zorgt dat het direct zichtbaar is */
}

/* -------------------- HEADER -------------------- */
.klein {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(164, 0, 0);
  position: fixed;
  width: 100%;
  top: 0;
  padding: 5px 60px;
  z-index: 25;
  flex-wrap: wrap;
}

.mobile-links {
  display: none;

}

.klein a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text2);
  font-size: 15px;
  white-space: nowrap;
}

.klein i {
  font-size: 18px;
}

.left-links, .right-links {
  display: flex;
  gap: 30px;
}

/* Alleen desktop */
.desktop-only {
  display: flex;
}

/* Mobiele specifieke stijlen */
@media (max-width: 900px) {
  .klein {
    justify-content: center;
    gap: 15px;
    padding: 5px 20px;
  }

  .left-links, .right-links {
    gap: 15px;
  }

  .desktop-only {
    display: none; /* Verberg rechts in topbalk */
  }

  .klein a span {
    font-size: 14px;
  }

   /* Hamburger menu links onderaan */
   .mobile-links {
    display: flex;
    flex-direction: column;
    margin-top: auto; /* duwt het naar onderin */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    width: 100%;
  }

  .mobile-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    margin: 10px 0;
    font-size: 0.95rem;
  }

  .mobile-links i {
    font-size: 20px;
  }

}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: var(--text2);
  position: fixed;
  width: 100%;
  top: 27px;
  z-index: 20;
  border-bottom: 1px solid var(--footer);
}

/* LOGO */
.logo {
  width: 115px;
  height: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

/* NAVIGATIE */
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav a:hover {
  border-bottom: 2px solid var(--soft);
}

.nav a.active {
  border-bottom: 2px solid var(--soft);
  color: var(--soft);
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropbtn {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Pijltje */
.dropbtn::after {
  content: "▾";
  font-size: 1.25rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Dropdown-menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--text2);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 6px;
  z-index: 100;
  flex-direction: column;
}

.dropdown-content a {
  color: var(--text);
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #fff;
}

/* Desktop hover dropdown */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
  .dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
  }
  .dropbtn:hover {
    border-bottom: 2px solid var(--soft);
    color: var(--soft);
  }
}

/* Hamburger & overlay */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 35;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========================= */
/* RESPONSIVE MOBIEL (max-width 900px) */
/* ========================= */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background-color: var(--text2);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 30px 30px 30px; /* links iets lager voor hamburger */
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 30;
    overflow-y: auto;
  }

  .nav.open { right: 0; }

  /* Navigatie links */
  .nav a, .dropbtn {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--text);
  }

  .nav a:hover, .dropbtn:hover {
    color: var(--soft);
    border-bottom: none;
  }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    display: block;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    display: none;
    padding-left: 15px;
    margin-top: 5px;
    flex-direction: column;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown.open .dropdown-content {
    display: flex !important;
  }

  .dropdown .dropbtn::after {
    transform: rotate(0deg);
  }
  .dropdown.open .dropbtn::after {
    transform: rotate(180deg);
  }


  .header { padding: 20px 30px; }
}

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 280px;
  color: var(--text);
  margin-top: 40px; /* ruimte voor de fixed header */
  background-size: cover;
  background-color: var(--accent);
  background-position: center;
  padding-top: 45px;
  display: flex;
  justify-content: center; /* horizontaal centreren */
  align-items: center;     /* verticaal centreren */
  text-align: center;      /* tekst centreren */
}

.hero-text h1 { font-size: 3.4rem; color: var(--text2); margin-bottom: 10px; font-weight: 600; } /* Hero subtitel */ .hero-text p { font-size: 1.2rem; color: var(--text); margin-bottom: 20px; }
.hero2 {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #917c6e70, #634e41);
  height: 500px;
  overflow: hidden;
}

.hero2 .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* vult hero zonder uitrekken */
  display: block;
  filter: brightness(115%);
}

.hero2 .hero-text {
  position: absolute;
  top: 135px;      /* 20px van onderkant */
  right: 61px;        /* 20px van linkerkant */
  transform: none;   /* verwijder centrering */
  text-align: right;  /* tekst links uitlijnen */
  z-index: 2;        /* bovenop de hero afbeelding */
}

/* Hero titel */
.hero2 .hero-text h1 {
  font-size: 4.5rem;   /* eventueel kleiner voor hero2 */
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text2);
}

/* Hero subtitel */
.hero2 .hero-text p {
  font-size: 1.2rem;
  color: var(--text2);
  font-weight:600;
  margin-bottom: 15px;
}

/* Hero button */
.hero2 .btn {
  background-color: var(--accent);
  padding: 10px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--text2);
  transition: 0.3s;
}

.hero2 .btn:hover {
  background-color: var(--soft);
  color: var(--background);
}

/* -------------------- FEATURED -------------------- */
.featured {
  text-align: center;
  padding: 100px 60px;
}

.featured h2 {
  margin-bottom: 50px;
  border-bottom: 3px solid var(--accent);
  font-size: 2rem;
  color:var(--accent);
  display: inline-block;      
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.product-card {
  border-radius: 20px;
  padding: 30px;
  height:300px;
  transition: 0.4s;
  color:var(--accent);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.product-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


/* -------------------- FOOTER -------------------- */
.footer {
  background-color: var(--accent);
  color: var(--text2);
  padding: 40px 60px 20px;
  font-size: 15px;
}

/* LOGO */
.logofooter {
  width:190px;
  height:100px;
  filter: brightness(0) invert(1); /* maakt wit */
}

.footer-column .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px; /* ruimte tussen icoon en tekst */
  margin-bottom: 12px; /* verticale spacing tussen items */
  color: #ffffff; /* pas aan naar je footer kleur */
  text-decoration: none;
  transition: color 0.2s;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-column h3 {
  color: var(--footer);
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 6px;
}

.footer-column a {
  color: var(--text2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color:rgb(151, 0, 0);
}

.whatsapp-link2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.whatsapp-icon2 {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1); /* maakt wit */
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid var(--footer);
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--text2);
  text-decoration: none;
  font-weight: 400;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: var(--background);
}

#toTopBtn {
  display: none; /* Begin verborgen */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  font-size: 24px;
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}

#toTopBtn:hover {
  background-color: #555;
}

.contact-form p {
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* automatische responsive kolommen */
  gap: 40px;
  justify-content: center; /* center de grid horizontaal */
  align-items: start;
  margin-top: 30px;
}

.contact-card {
  color: var(--accent);
  border-radius: 20px;
  padding: 30px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-decoration: none;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--accent);
  border-radius: 10px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.contact-form select {
  cursor: pointer;
}

/* -------------------- CONTACT PAGINA MODERN -------------------- */
.contact-section {
  padding: 80px 60px;
  color: var(--accent);
  max-width: 1400px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
  gap: 60px;  
  justify-content: center; 
  align-items: flex-start;
}

.contact-form h2,
.contact-info h2 {
  font-family: "PT Serif", serif;
  color: var(--accent);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--soft);
  font-size: 2rem;
  color:var(--accent);
  display: inline-block;  
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 10px 20px -5px, rgba(0, 0, 0, 0.3) 0px 6px 10px -5px;
}

/* Icon styling */
.contact-card i.material-symbols-outlined {
  font-size: 3rem; /* veel groter dan standaard */
  color: var(--soft);
  transition: transform 0.3s ease, color 0.3s ease;
  margin-bottom: 15px;
  display: block;
}

/* Icon animation bij hover op de card */
.contact-card:hover i.material-symbols-outlined {
  transform: scale(1.3) rotate(-10deg); /* iets draaien en groter */
  color: var(--accent); /* kleur verandert */
}



/* Tekst onder icon */
.contact-card p, 
.contact-card ul {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-card h5 {
  text-align: left;
  font-size: 0.9rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--accent);
  background-color: var(--text2);
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  border: none;
  border-radius: 10px;
  outline: none;
  transition: background-color 0.3s ease;
}

.contact-form button {
  align-self: start;
  background-color: var(--accent);
  border: none;
  color: white;
  font-size: 16px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: var(--soft);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 5px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 15px; /* ruimte tussen icoon en nummer */
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.whatsapp-link:hover {
  color:var(--soft);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease; 
}

.whatsapp-icon:hover {
  transform: scale(1.2); 
}

/* -------------------- MAP SECTION -------------------- */
.map-section {
  width: 100%;
  height: 450px;

}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------- DIENSTEN GRID -------------------- */
.diensten {
  padding: 80px 20px;
  text-align: center;
}

.diensten h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 40px;
  border-bottom: 3px solid #837263;
  display: inline-block;
  padding-bottom: 5px;
}

/* Grid layout */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.dienst-card {
  display: flex;
  align-items: stretch; /* icoon en content even hoog */
  gap: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: rgba(71, 61, 49, 0.4) 0px 5px, rgba(88, 73, 59, 0.3) 0px 10px, rgba(136, 99, 69, 0.2) 0px 15px, rgba(170, 135, 94, 0.1) 0px 20px, rgba(211, 167, 130, 0.05) 0px 25px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.dienst-card:hover {
  transform: translateY(-5px);
  box-shadow: 
  rgba(71, 61, 49, 0.4) -5px 5px, 
  rgba(88, 73, 59, 0.3) -10px 10px, 
  rgba(136, 99, 69, 0.2) -15px 15px, 
  rgba(170, 135, 94, 0.1) -20px 20px, 
  rgba(211, 167, 130, 0.05) -25px 25px;

}

.dienst-icon {
  background-color: var(--footer);
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-size: 32px;
  flex-shrink: 0;
  align-self: flex-start;
}

.dienst-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* knop onderaan */
  align-items: flex-start; /* links uitlijnen */
  text-align: left;
  flex: 1;
  min-height: 220px; /* houdt hoogte consistent */
}

.dienst-content h3 {
  color: var(--accent);
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.dienst-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1; /* duwt knop naar beneden */
}

.dienst-btn {
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dienst-btn:hover {
  background-color: var(--soft);
  transform: translateY(-2px);
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {
  .footer {
    padding: 30px 20px;
  }
  .footer-container {
    gap: 30px;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-column .footer-contact-link {
    flex-direction: column; /* icon en tekst onder elkaar */
    justify-content: center; /* horizontaal centreren */
    align-items: center; /* verticaal centreren */
  }

  .footer-column .footer-contact-link i,
  .footer-column .footer-contact-link img {
    margin-bottom: 5px; /* ruimte tussen icon en tekst */
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 60px 30px;
  }

  .map-section {
    height: 300px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease; 
  }
  
  .whatsapp-icon:hover {
    transform: scale(1.2); 
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* automatische responsive kolommen */
    gap: 40px;
    justify-content: center; /* center de grid horizontaal */
    align-items: start;
    margin-top: 30px;
  }
  
  .contact-card {
    color: var(--accent);
    border-radius: 20px;
    padding: 30px;
    height: 200px; /* vaste hoogte voor alle cards */
    display: flex;
    flex-direction: column;
    align-items: center; /* centreren van icon en tekst */
    justify-content: center; /* verticaal centreren van content */
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {

  .hero {
    height: 220px;
  }

  
.hero-text h1 { 
  font-size: 2.6rem; 

  } 
  .hero2 {
    height: 360px;
  }

  .hero2 .hero-text {
    position: absolute;
    top: 150px;      /* 20px van onderkant */
    right: 30px;        /* 20px van linkerkant */
    transform: none;   /* verwijder centrering */
    text-align: right;  /* tekst links uitlijnen */
    z-index: 2;        /* bovenop de hero afbeelding */
  }
  
  /* Hero titel */
  .hero2 .hero-text h1 {
    font-size: 2.1rem;   /* eventueel kleiner voor hero2 */
    margin-bottom: 10px;
    color: var(--text2);
    font-weight: 600;
  }
  
  /* Hero subtitel */
  .hero2 .hero-text p {
    display: none;
  }
  
  /* Hero button */
  .hero2 .btn {
    background-color: var(--accent);
    color: white;
    padding: 10px 35px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }

  .hero-logo {
    width: 200px;
  }
}

/* Algemene layout */
.midden {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  color:var(--accent);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 0.8s ease-out;
}

/* eindpositie */
.fade-in-down.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-extra {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.fade-in-extra.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-side {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.fade-in-side.visible {
  opacity: 1;
  transform: translateX(0);
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}
/* Linkerkant: tekst */
.about-left {
  flex: 1 1 500px;
}

.about-left .section-title {
  text-align: left;
  margin-bottom: 15px;
}

.about-text {
  text-align: left;
  line-height: 1.7;
  color: #333;
}

/* Rechterkant: missie & visie kaarten onder elkaar */
.about-right {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h1 {
  color: var(--soft);
  margin-bottom: 10px;
  font-size: 1.5em;
}

.card p {
  color: var(--accent);
  line-height: 1.6;
}

/* Team */
.team {
  text-align: left;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member h3 {
  font-weight: bold;
  font-size: 2rem;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.role {
  color: var(--soft);
  margin-bottom: 10px;
}

/* Kernwaarden */
.values {
  position: relative;
  width: 100%;
  height: 400px; /* niet te hoog, kan je aanpassen */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}

/* Achtergrondafbeelding */
.values img.faq-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* zorgt dat het beeld niet uitrekt */
  z-index: -1;
  filter: brightness(0.45); /* donkere overlay voor leesbaarheid */
}

/* Grid met de value-cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}

/* De individuele value cards */
.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
}

/* Iconen */
.value-card .material-symbols-outlined {
  font-size: 40px;
  color: var(--accent);
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 15px;
}

/* Titels en tekst */
.value-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  color: #eee;
  line-height: 1.5;
}

/* FAQ */
.faq {
  position: relative;
  width: 100%;
  min-height: 450px;
  color: var(--text);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* De afbeelding vult de hele sectie */
.faq-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* afbeelding vult, zonder vervorming */
  z-index: 0;
}

/* Donkere overlay voor leesbaarheid */
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Inhoud boven de afbeelding en overlay */
.faq > *:not(.faq-img) {
  position: relative;
  z-index: 2;
}

/* Titels */
.faq h2 {
  color: var(--footer);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 3rem;
}

.faq h3 {
  color: var(--text2);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 2.5rem;
}

/* Container met vragen */
.faq-container {
  max-width: 800px;
  width: 100%;
  margin-top: 20px;
}

/* FAQ vragen */
.faq-question {
  width: 100%;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* FAQ antwoorden */
.faq-answer {
  display: none;
  color: var(--accent);
  padding: 10px 15px;
  font-size: 14px;
  background-color: var(--footer);
  margin-bottom: 10px;
}

.faq-answer a{
 color:var(--accent);
 font-weight: 700;

}


.faq-item.active .faq-answer {
  display: block;
}

.cta {
  position: relative;
  max-width: 1200px;
  margin: -120px auto 80px; /* laat de CTA half over de hero zweven */
  background: rgba(255, 255, 255, 0.95); /* lichte transparantie */
  border-radius: 16px;
  box-shadow: rgba(71, 61, 49, 0.4) 0px 5px, rgba(88, 73, 59, 0.3) 0px 10px, rgba(136, 99, 69, 0.2) 0px 15px, rgba(170, 135, 94, 0.1) 0px 20px, rgba(211, 167, 130, 0.05) 0px 25px;
  text-align: center;
  padding: 40px 30px;
  z-index: 5;
  backdrop-filter: blur(5px); /* optioneel: geeft een luxe glasachtig effect */
}

.cta-container {
  max-width: 1700px;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 30px;
}

strong {
  font-weight: 700;
  color:black;
}

.cta-btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--soft);
  border-color: var(--soft);
  transform: translateY(-3px);
}

/* STAPPEN */
.overstap-steps {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.overstap-steps h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.overstap-steps .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.overstap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.overstap-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: rgba(71, 61, 49, 0.4) 0px 5px, rgba(88, 73, 59, 0.3) 0px 10px, rgba(136, 99, 69, 0.2) 0px 15px, rgba(170, 135, 94, 0.1) 0px 20px, rgba(211, 167, 130, 0.05) 0px 25px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overstap-card:hover {
  transform: translateY(-5px);
  box-shadow: 
  rgba(71, 61, 49, 0.4) -5px 5px, 
  rgba(88, 73, 59, 0.3) -10px 10px, 
  rgba(136, 99, 69, 0.2) -15px 15px, 
  rgba(170, 135, 94, 0.1) -20px 20px, 
  rgba(211, 167, 130, 0.05) -25px 25px;
}

.overstap-card span {
  background-color: var(--footer);
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-size: 32px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-bottom: 10px;
}

.overstap-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.overstap-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* overstap */
.overstap-cta {
  background: linear-gradient(135deg, #f2f2f2, #eaeaea);
  text-align: center;
  padding: 70px 20px;
}

.overstap-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.overstap-cta-content h2 {
  font-size: 2.2rem;
  color: #222;
  border-bottom: 3px solid #837263;
  padding-bottom: 5px ;
}

.overstap-cta-content p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.overstap-cta-btn {
  background: #222;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.overstap-cta-btn:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

/* Responsief voor mobiel */
@media (max-width: 768px) {

  .cta {
    margin: -40px 20px 50px; /* minder overlap op mobiel */
    padding: 30px 20px;
    max-width: 90%; /* past mooi op kleine schermen */
  }
  .cta h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .cta p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 30px;
  }
  .cta-btn {
    display: inline-block;
    margin: 0 auto;
  }
  
  .overstap-cta {
    padding: 25px;
  }
  .overstap-cta-content h2 {
    font-size: 1.6rem;
    color: #222;
  }
  
  .overstap-cta-content p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.05rem;
  }
}


/* Responsive */
@media (max-width: 350px) {
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* automatische responsive kolommen */
    gap: 40px;
    justify-content: center; /* center de grid horizontaal */
    align-items: start;
    margin-top: 30px;
  }

  .contact-card {
    color: var(--accent);
    border-radius: 20px;
    padding: 30px;
    height: 200px; /* vaste hoogte voor alle cards */
    display: flex;
    flex-direction: column;
    align-items: center; /* centreren van icon en tekst */
    justify-content: center; /* verticaal centreren van content */
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .fade-in-up,
  .fade-in-down,
  .fade-in-extra,
  .fade-in-side {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .mission-vision {
    flex-direction: column;
  }

  .values-grid {
    display: flex;
    flex-direction: column;
    animation: scroll-up 15s linear infinite;
    align-items: center;
  }

  .value-card {
    flex: 1 1 200px;
    border-radius: 12px;
    padding: 30px;
    width:300px;
    transition: all 0.3s ease;
    color: var(--accent);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  @keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* schuift alle cards omhoog */
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-left .section-title,
  .about-text {
    text-align: center;
  }

  .about-right {
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 500px;
  }

  .about-left {
    flex:0;
  }
}

.offerte-btn:hover {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.prijzen-info {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.info-blok {
  background: var(--accent);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 8px;
}

.info-blok h5 {
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-blok p,
.info-blok ul {
  color: #bab4af;
  font-size: 0.9rem;
  line-height: 1.5;
}

.prijzen-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}

.overstap-reasons {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reason-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(180, 38, 50, 0.3) 0px 4px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(180, 38, 50, 0.5) 0px 8px 16px;
}

.reason-card .material-symbols-outlined {
  font-size: 40px;
  color: #b42632;
  margin-bottom: 10px;
}

.overstap-form-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.overstap-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #473d31;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b42632;
}

.form-btn {
  background-color: var(--accent);
  color: white;
  padding: 14px 25px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-btn:hover {
  background-color: var(--soft);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  /* Geen hover dropdown op mobiel! */
  .dropdown-content {
    position: static;
    box-shadow: none;
  }
}


/* -------------------- BOEKHOUDING PAGINA -------------------- */
.boekhouding {
  padding: 50px 20px;
  max-width: 1400px;
  color: var(--accent);
  margin: 0 auto;
}

.boekhouding h2 {

  font-size: 2rem;
  color: var(--accent);
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--soft);
  display: inline-block;
  padding-bottom: 5px;
}

.boekhouding p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.boekhouding ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.boekhouding ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 1rem;
}

/* Voordelen sectie */
.voordelen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.voordeel-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voordeel-item h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.voordeel-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.voordeel-item:hover {
  transform: translateY(-5px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* -------------------- SALARISADMINISTRATIE -------------------- */
.salarisadministratie {
  padding: 50px 20px;
  max-width: 1400px;
  color: var(--accent);
  margin: 0 auto;
}

.salarisadministratie h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 30px;
  text-align: center;
}

.salarisadministratie h2 {
  font-size: 2rem;
  color: var(--accent);
  margin: 50px 0 20px;
  border-bottom: 3px solid var(--soft);
  display: inline-block;
}

.salarisadministratie p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.salarisadministratie ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
  color: #555;
}

.voordelen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.voordeel-item {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: rgba(71, 61, 49, 0.4) 0px 5px,
              rgba(88, 73, 59, 0.3) 0px 10px,
              rgba(136, 99, 69, 0.2) 0px 15px,
              rgba(170, 135, 94, 0.1) 0px 20px,
              rgba(211, 167, 130, 0.05) 0px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voordeel-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    rgba(71, 61, 49, 0.4) -5px 5px,
    rgba(88, 73, 59, 0.3) -10px 10px,
    rgba(136, 99, 69, 0.2) -15px 15px,
    rgba(170, 135, 94, 0.1) -20px 20px,
    rgba(211, 167, 130, 0.05) -25px 25px;
}

.voordeel-item h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.voordeel-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -------------------- BELASTINGAANGIFTE -------------------- */
.belastingaangifte {
  padding: 50px 20px;
  max-width: 1400px;
  color: var(--accent);
  margin: 0 auto;
}
.belastingaangifte p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.belastingaangifte h2 {
  font-size: 2rem;
  margin: 50px 0 20px;
  border-bottom: 3px solid var(--soft);
  display: inline-block;
}

.belastingaangifte a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.belastingaangifte a:hover {
  color: var(--soft);
  text-decoration: underline;
}
/* -------------------- JAARREKENING SECTION -------------------- */
.jaarrekening {
  padding: 50px 20px;
  max-width: 1400px;
  color: var(--accent);
  margin: 0 auto;
}

.jaarrekening p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.jaarrekening h2 {
  font-size: 1.7rem;
  padding-bottom:10px;
  color: var(--accent);
  border-bottom: 3px solid var(--soft);
}

.jaarrekening h3 {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--accent);
  font-weight: 700;
}

.jaarrekening ul {
  list-style: disc inside;
  color: #555;
  margin-bottom: 20px;
}

.jaarrekening ul li {
  margin-bottom: 10px;
  color: #555;
  margin-top: 10px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .boekhouding {
    padding: 80px 30px;
  }
  .voordelen {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .boekhouding h1 {
    font-size: 2rem;
  }
  .boekhouding h2 {
    font-size: 1.5rem;
  }
  .boekhouding p, .boekhouding ul li {
    font-size: 0.95rem;
  }
}

/* ===========================
   HERO OVERSTAP
=========================== */
.hero-overstap {
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center; /* horizontaal centreren */
  align-items: center; /* verticaal centreren */
  text-align: center;
  padding: 40px 20px;
}

.hero-container {
  max-width: 800px;
}

.overstap-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.overstap-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f1f5f9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Verwijder alle media-query aanpassingen die het naar links duwen */
@media (min-width: 768px) {
  .hero-overstap {
    text-align: center;
    padding: 60px 40px;
  }

  .hero-buttons {
    justify-content: center;
  }
  
}



.btn-primary {
  background-color: var(--footer);
  color: white;
  border: 2px solid var(--footer);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 25px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Verbergen op mobiel */
@media (max-width: 900px) {
  .hero-card {
    display: none; /* niet zichtbaar op mobiel */
  }
}
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 10px;
}

.card-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.card-text {
  font-weight: 500;
}

.card-note {
  font-size: 0.85rem;
  opacity: 0.9;
}

.note-text {
  font-size: 1rem;
  color: rgb(236, 236, 236);
  text-align: center;
  margin-top: 10px;
}

/* ===========================
   VOLLEDIG ONTZORGD
=========================== */
.ontzorgd-section {
  background: #fff;
  border-radius: 20px;
  padding: 60px 20px;
  max-width: 1400px;
  margin: 80px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.062);
}

.ontzorgd-section h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 40px;
  text-align: center;
}

.ontzorgd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .ontzorgd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
}

.ontzorgd-card {
  border-radius: 15px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.ontzorgd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ontzorgd-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
}

.ontzorgd-card .card-header span {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  padding: 10px;
  border-radius: 10px;
  color: var(--text2);
}

.ontzorgd-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.ontzorgd-note {
  grid-column: 1 / -1;
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 18px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  color: #065f46;
}

/* Overstappen Sectie (Homepagina) */
.overstap-home {
  margin: 80px auto;
  max-width: 1000px;
  text-align: center;
}

.overstap-content h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.overstap-content p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 30px;
}

.btn-overstap {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-overstap:hover {
  background-color: var(--soft);
  border-color: var(--soft);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .overstap-content h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .overstap-content{
    padding:10px;
  }
  .overstap-home {
    max-width: 1000px;
    text-align: center;
    margin: 0;
    padding:10px;
  }
  
  .overstap-content p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 30px;
  }
  
}

.thank-you-content {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  text-align: left;
  color: #333;
}

.thank-you-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ========================= */
/* KNOP TERUG NAAR HOME */
/* ========================= */
.thank-you-content .btn {
  display: inline-block;
  background-color: var(--footer); /* accentkleur knop */
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.thank-you-content .btn:hover {
  background-color: var(--soft);
  transform: translateY(-2px);
}

@media (min-width: 900px) {
  .thank-you-content {
    margin: 30px auto;
  }

  .thank-you-content h2 {
    font-size: 1.5rem;
  }

  .thank-you-content p {
    font-size: 1rem;
  }

  .thank-you-content .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  
}

/* Cookie Consent - full width, centered */
.cookie-consent {
  position: fixed;
  bottom: 0; /* helemaal onderaan */
  left: 0;
  width: 100%; /* volledige breedte */
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px 0; /* alleen verticaal padding */
  display: flex;
  flex-direction: column; /* zodat tekst en knop onder elkaar staan */
  align-items: center; /* horizontaal centreren */
  justify-content: center;
  gap: 10px;
  z-index: 9999;
  font-size: 1rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  text-align: center; /* tekst centreren */
}

.cookie-consent a {
  color: var(--footer);
  text-decoration: underline;
}

.cookie-consent button {
  background-color: var(--footer);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
  border-radius: 5px;
}


.cookie-consent button:hover {
  background-color: var(--soft);
}

/* Verberg popup als deze is geaccepteerd */
.cookie-consent.hide {
  display: none;
}
