/* === AMOR Holisme & Welzijn === */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --groen:       #3B6D11;
  --groen-mid:   #639922;
  --groen-licht: #EAF3DE;
  --groen-pale:  #f4f9ed;
  --teal:        #0F6E56;
  --teal-mid:    #1D9E75;
  --teal-licht:  #E1F5EE;
  --tekst:       #2C2C2A;
  --tekst-mid:   #5F5E5A;
  --tekst-licht: #6B6A64;
  --wit:         #ffffff;
  --rand:        #C0DD97;

  --beige:       #fff9f0;

  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h, 90px) + 14px);
}

.sectie, .hero, footer {
  scroll-margin-top: calc(var(--nav-h, 90px) + 14px);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  font-family: var(--serif);
  color: var(--tekst);
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: underline;
}

/* =====================
   NAVIGATIE
   ===================== */

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--rand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
}

.nav-logo img {
  height: 70px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--tekst-mid);
  text-decoration: none;
  font-family: var(--sans);
}

.nav-links a:hover {
  color: var(--groen);
}

/* Hamburger knop */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--groen);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobiel dropdown menu — vast onder de nav */
.mobiel-menu {
  position: fixed;
  top: var(--nav-h, 90px);
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--beige);
  border-bottom: 1px solid var(--rand);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: none;
}

.mobiel-menu.open {
  display: block;
}

.mobiel-menu a {
  display: block;
  padding: 15px 24px;
  font-size: 17px;
  color: var(--tekst-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--groen-licht);
  font-family: var(--sans);
}

.mobiel-menu a:last-child {
  border-bottom: none;
}

.mobiel-menu a:hover {
  background: var(--groen-pale);
  color: var(--groen);
}

/* =====================
   HERO
   ===================== */

.hero {
  background: linear-gradient(160deg, #f4f9ed 0%, #E1F5EE 100%);
  padding: 64px 24px 56px;
  text-align: center;
}

.hero-logo {
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
  display: block;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: normal;
  color: var(--groen);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero p {
  font-size: 19px;
  color: var(--tekst);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-acties {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =====================
   KNOPPEN
   ===================== */

.btn-groen {
  display: inline-block;
  background: var(--teal);
  color: var(--wit);
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
}


.btn-groen-breed {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  text-align: center;
}

.btn-rand {
  display: inline-block;
  background: transparent;
  color: var(--groen);
  border: 1.5px solid var(--groen);
  padding: 13.5px 24px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-family: var(--sans);
  cursor: pointer;
}

.btn-rand:hover {
  background: var(--groen-licht);
}

/* =====================
   SECTIES
   ===================== */

.sectie {
  padding: 64px 24px;
}




.sectie-beige {
  background: var(--beige);
}

.sectie-pale {
  background: var(--groen-pale);
}

.inner {
  max-width: 860px;
  margin: 0 auto;
}

.inner > p {
  margin-bottom: 20px;
}

.sectie-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--teal-mid);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sectie-titel {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: normal;
  color: var(--groen);
  margin-bottom: 20px;
}

/* =====================
   AMOR KERNWAARDEN
   ===================== */

.amor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.amor-kaart {
  background: var(--wit);
  border: 1px solid var(--teal-mid);
  border-radius: 12px;
  padding: 22px;
}

.amor-letter {
  font-size: 36px;
  font-weight: normal;
  color: var(--teal-mid);
  margin-bottom: 6px;
}

.amor-woord {
  font-size: 15px;
  font-weight: bold;
  color: var(--groen);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.amor-kaart p {
  font-size: 15.5px;
  color: var(--tekst-mid);
  line-height: 1.65;
}



/* =====================
   OVER MIJ
   ===================== */

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.over-links p {
  font-size: 17px;
  color: var(--tekst-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.over-foto {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1023 / 1537;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--rand);
  display: block;
}



/* =====================
   DIENSTEN
   ===================== */

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.dienst-kaart {
  background: var(--wit);
  border: 1px solid var(--teal-mid);
  border-radius: 12px;
  padding: 22px;
  position: relative;
}

.dienst-naam {
  font-size: 16.5px;
  font-weight: bold;
  color: var(--groen);
  margin-bottom: 5px;
  font-family: var(--sans);
}

.dienst-voor {
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 10px;
  font-family: var(--sans);
}

.dienst-prijs {
  font-size: 24px;
  font-weight: normal;
  color: var(--groen);
  margin-bottom: 4px;
}

.dienst-detail {
  font-size: 14px;
  color: var(--tekst-mid);
  margin-bottom: 14px;
  font-family: var(--sans);
}

.dienst-kaart p {
  font-size: 15.5px;
  color: var(--tekst-mid);
  line-height: 1.65;
}

.disclaimer {
  background: #f9f9f7;
  border: 1px solid var(--teal-mid);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--tekst-mid);
  line-height: 1.65;
  margin-top: 28px;
  font-family: var(--sans);
}

/* Voor wie? blok */
.voor-wie {
  background: var(--wit);
  border: 1px solid var(--teal-mid);
  border-radius: 12px;
  padding: 24px 26px;
  margin-bottom: 40px;
}

.voor-wie-intro {
  font-size: 17px;
  color: var(--tekst-mid);
  margin-bottom: 16px;
}

.voor-wie-lijst {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
}

.voor-wie-lijst li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  color: var(--tekst);
  line-height: 1.5;
}

.voor-wie-lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-mid);
}

/* Tarieven-blok (kennismaking + losse sessie) */
.tarief-blok {
  background: var(--wit);
  border: 1px solid var(--teal-mid);
  border-radius: 12px;
  padding: 6px 22px;
  margin-top: 28px;
}

.tarief-regel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--groen-licht);
}

.tarief-regel:last-child {
  border-bottom: none;
}

.tarief-naam {
  font-family: var(--sans);
  font-weight: bold;
  font-size: 15px;
  color: var(--groen);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tarief-detail {
  display: block;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--tekst-mid);
  margin-top: 3px;
}

.tarief-prijs {
  font-size: 26px;
  color: var(--groen);
  white-space: nowrap;
}

.tarief-noot {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.6;
  margin-top: 18px;
}

/* =====================
   WERKWIJZE
   ===================== */

.stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stap {
  text-align: center;
  padding: 18px 10px;
}

.stap-nr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--groen-licht);
  color: var(--groen);
  font-size: 14px;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 1px solid var(--rand);
}

.stap-titel {
  font-size: 15px;
  font-weight: bold;
  color: var(--groen);
  margin-bottom: 6px;
  font-family: var(--sans);
}

.stap p {
  font-size: 14.5px;
  color: var(--tekst-mid);
}

.sectie-label-mt {
  margin-top: 40px;
}

.werk-intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--tekst-mid);
  line-height: 1.7;
}

.werk-lijst {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  max-width: 680px;
}

.werk-lijst li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  color: var(--tekst-mid);
  line-height: 1.5;
}

.werk-lijst li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--groen);
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}

/* =====================
   AANMELDEN / CTA
   ===================== */

.cta-blok {
  background: linear-gradient(160deg, #E1F5EE 0%, #f4f9ed 100%);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}

.cta-blok h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: normal;
  color: var(--groen);
  margin-bottom: 14px;
}

.cta-intro {
  font-size: 17px;
  color: var(--tekst-mid);
  max-width: 480px;
  margin: 0 auto 30px;
  line-height: 1.75;
}

form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-groep label {
  font-size: 14.5px;
  color: var(--tekst-mid);
  font-family: var(--sans);
}

.form-groep input,
.form-groep select,
.form-groep textarea {
  padding: 10px 12px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-size: 16px;
  background: var(--wit);
  color: var(--tekst);
  font-family: var(--serif);
}

.form-groep textarea {
  min-height: 88px;
  resize: vertical;
}

.form-noot a {
  color: var(--teal);
}

.form-noot {
  font-size: 13.5px;
  color: var(--tekst-mid);
  text-align: center;
  margin-top: 10px;
  font-family: var(--sans);
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-consent label {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--tekst-mid);
}

.form-consent a {
  color: var(--teal);
}

.form-fout {
  font-family: var(--sans);
  font-size: 14.5px;
  color: #9E2A20;
  background: #FDF1EF;
  border: 1px solid #E2B7B1;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.succes-alt {
  margin-top: 10px;
  font-family: var(--sans);
}

.succes-alt a {
  color: var(--teal);
  text-decoration: underline;
}

.succes-bericht {
  display: none;
  background: var(--teal-licht);
  border-radius: 10px;
  padding: 22px;
  margin-top: 14px;
  text-align: center;
}

.succes-bericht h3 {
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.succes-bericht p {
  font-size: 16px;
  color: var(--tekst-mid);
}

/* =====================
   FOOTER
   ===================== */

footer {
  position: relative;
  background: linear-gradient(160deg, #E1F5EE 0%, #f4f9ed 100%);
  color: var(--teal);
  padding: 40px 24px 28px;
  font-size: 15px;
  font-family: var(--sans);
}

footer strong {
  color: var(--teal);
}

footer a {
  text-decoration: none;
  color: var(--teal);
}

.footer-grid {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.footer-blok h3 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--groen);
  margin-bottom: 12px;
}

.footer-blok p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-blok iframe {
  width: 100%;
  height: 190px;
  border: 0;
  border-radius: 10px;
  display: block;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 22px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

.social-icon.instagram:hover {
  box-shadow: 0 6px 14px rgba(220, 39, 67, 0.35);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 110, 86, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13.5px;
  text-align: center;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-powered {
  flex-basis: 100%;
  justify-content: center;
}

/* =====================
   RESPONSIVE — MOBIEL
   ===================== */

@media (max-width: 700px) {
  nav {
    padding: 10px 16px;
  }

  .nav-logo img {
    height: 54px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 40px 16px 36px;
  }

  .hero-logo {
    max-width: 240px;
  }

  .amor-grid,
  .diensten-grid,
  .over-grid,
  .voor-wie-lijst {
    grid-template-columns: 1fr;
  }

  .over-foto {
    max-width: 100%;
    margin: 4px auto 0;
  }

  .stappen {
    grid-template-columns: repeat(2, 1fr);
  }

  .werk-lijst {
    grid-template-columns: 1fr;
  }

  .sectie {
    padding: 48px 16px;
  }

  .cta-blok {
    padding: 32px 16px;
  }

  .form-rij {
    grid-template-columns: 1fr;
  }

  .hero-acties .btn-groen,
  .hero-acties .btn-rand {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .stappen {
    grid-template-columns: 1fr;
  }
}

/* =====================
   LEVEN — organische golven, blaadjes, hartjes & beweging
   ===================== */

/* Secties krijgen ruimte voor golven en blaadjes eromheen.
   Geen overflow:hidden — anders wordt de golf boven de sectie afgekapt. */
.sectie {
  position: relative;
}

.sectie .inner {
  position: relative;
  z-index: 2;
}

/* --- Golf-overgang bovenaan een sectie --- */
.golf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  transform: translateY(-100%);
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.golf svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.sectie-beige > .golf { color: var(--beige); }
.sectie-pale  > .golf { color: var(--groen-pale); }
footer > .golf        { color: var(--teal-licht); }

.hero { position: relative; overflow: hidden; }
.hero > * { position: relative; z-index: 1; }

/* --- Zachtere, gelaagde achtergronden --- */
.hero {
  background:
    radial-gradient(circle at 14% 22%, rgba(29, 158, 117, 0.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(99, 153, 34, 0.14), transparent 44%),
    linear-gradient(160deg, #f4f9ed 0%, #E1F5EE 100%);
}

.cta-blok {
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 158, 117, 0.10), transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(99, 153, 34, 0.12), transparent 45%),
    linear-gradient(160deg, #E1F5EE 0%, #f4f9ed 100%);
  position: relative;
  overflow: hidden;
}

/* --- Zwevende logo in de hero --- */
.hero-logo {
  animation: zweef 6s ease-in-out infinite;
}

@keyframes zweef {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* --- Kaarten komen een beetje omhoog bij hover --- */
.amor-kaart,
.dienst-kaart,
.voor-wie,
.tarief-blok {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amor-kaart:hover,
.dienst-kaart:hover,
.voor-wie:hover,
.tarief-blok:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(59, 109, 17, 0.10);
}

/* --- Zachte reveal bij het scrollen --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.zichtbaar {
  opacity: 1;
  transform: none;
}

/* Lichte trapsgewijze vertraging binnen een grid */
.amor-grid .reveal:nth-child(2)  { transition-delay: 0.08s; }
.amor-grid .reveal:nth-child(3)  { transition-delay: 0.16s; }
.amor-grid .reveal:nth-child(4)  { transition-delay: 0.24s; }
.diensten-grid .reveal:nth-child(2) { transition-delay: 0.10s; }
.stappen .reveal:nth-child(2) { transition-delay: 0.08s; }
.stappen .reveal:nth-child(3) { transition-delay: 0.16s; }
.stappen .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Respecteer de voorkeur voor minder beweging */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================
   JURIDISCHE PAGINA'S (Disclaimer, Privacybeleid, Algemene Voorwaarden)
   ===================== */

.juridisch {
  max-width: 720px;
}

.juridisch .laatst-bijgewerkt {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--tekst-licht);
  margin-bottom: 28px;
}

.juridisch h2 {
  font-size: 21px;
  font-weight: normal;
  color: var(--groen);
  margin: 32px 0 12px;
}

.juridisch h2:first-of-type {
  margin-top: 0;
}

.juridisch p {
  color: var(--tekst-mid);
  margin-bottom: 14px;
  line-height: 1.75;
}

.juridisch ul {
  margin: 0 0 14px 20px;
  color: var(--tekst-mid);
}

.juridisch li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.juridisch strong {
  color: var(--groen);
}

/* =====================
   FAQ ACCORDION
   ===================== */

.faq-lijst {
  margin-top: 28px;
}

.faq-item {
  background: var(--wit);
  border: 1px solid var(--teal-mid);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--sans);
  font-weight: bold;
  color: var(--groen);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--teal-mid);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--groen-pale);
}

.faq-antwoord {
  padding: 0 22px 20px;
}

.faq-antwoord p {
  color: var(--tekst-mid);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
