* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Source Sans 3', sans-serif;
    color: #2f2f2f;
    font-size: clamp(16px, 4vw, 18px);
  }
  
  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    height: 100svh;
    background-image: url("../images/fotomamadutch.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 8%;
  }

  @media (max-width: 768px) {
    .hero {
      aspect-ratio: 3 / 4;
      background-position: 90% center;
      min-height: auto;
    }
  }
  
  
  /* TITEL BLOK */
  .hero-content {
    max-width: 520px;
  }
  
  .hero h1 {
    font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  }
  
  .hero .intro {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
    color: #f1f1f1;
  }
  
  /* INFO BOX */
  .info-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1200px;
  
    display: grid;
    grid-template-columns: 320px 1fr 180px;
    gap: 32px;
  
    background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.5) 55%,
    rgba(255, 255, 255, 0.8) 100%
);

    backdrop-filter: blur(6px);
    padding: 32px;
    border-radius: 8px;
  }
  
  /* LINKER FOTO */
  .info-left img {
    width: 100%;
    border-radius: 6px;
  }
  
  /* TEKST */
  .info-center p {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .info-center strong {
    font-weight: 500;
  }
  
  .info-center .handwritten {
    font-family: "Lavishly Yours", cursive;
    font-size: 30px;
    line-height: 1.2;
    color: #2f2a23;
    margin-top: 8px;
  }
  
  
  /* BUTTON */
  .btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 22px;
  
    background: #e7e3dc;
    color: #2f2f2f;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #d8d2c8;
  }
  
  /* LOGO */
  .info-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .info-right img {
    width: 140px;
  }

  
  /* HEADER */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.05em;
}

/* HAMBURGER */
.hamburger {
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: white;
  transition: all 0.4s ease;
}

/* MENU OVERLAY */
.menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 90;
}

.menu ul {
  list-style: none;
  text-align: center;
}

.menu li {
  margin: 24px 0;
}

.menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2f2a23;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.menu a:hover {
  opacity: 0.6;
}

/* ACTIEVE STATUS */
.menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* HAMBURGER → KRUIS */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

.page-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 8% 80px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
}

.page-hero-content {
  position: relative;
  max-width: 700px;
  color: white;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* CONTENT SECTIE */
.section {
  padding: 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.section p {
  line-height: 1.7;
  margin-bottom: 16px;
}

/* IMAGE GRID (impressie) */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* ← maakt er een vierkant van */
  object-fit: cover;
  border-radius: 12px;
}

/* KAARTEN (aanbod) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

/* CONTACT */
.contact-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.contact-box button {
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #e1cfaa;
  cursor: pointer;
}

/* OVER ONS */
.about {
  background: #f6f4f0;
  border-radius: 24px;
  margin: 80px auto;
  margin-bottom: 0;

}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.8;
  max-width: 620px;
}

.about-text strong {
  font-weight: 500;
}

.about-closing {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 500;
}

/* HANDGESCHREVEN ACCENT */
.about-quote {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-quote .handwritten {
  font-family: "Lavishly Yours", cursive;
  font-size: 36px;
  line-height: 1.3;
  color: #2f2a23;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-quote {
    justify-content: flex-start;
  }
}

/* VERHAAL SECTIE */
.story {
  background: linear-gradient(
    to bottom,
    #f6f4f0 0%,
    #f7f5f1 40%,
    #ffffff 100%
  );
  padding: 80px 8% 140px;
  border-radius: 24px;
}

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

.story p {
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.9;
  margin-bottom: 22px;
}

/* OPENINGSZIN */
.story-intro {
  margin-top: 0;
}

/* KANTELMOMENT */
.story-break {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 48px 0;
}

/* EINDE */
.story-ending {
  margin-top: 56px;
  font-size: 18px;
  line-height: 1.7;
}

.story-ending .handwritten {
  display: block;
  margin-top: 16px;
  font-family: "Lavishly Yours", cursive;
  font-size: 38px;
  color: #2f2a23;
}


.story-label {
  font-size: 32px;
  margin-bottom: 32px;
  color: #2f2a23;
}

.story-image {
  margin: 64px 0;
  max-width: 420px;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
}

.transition {
  padding: 60px 8% 40px;
  text-align: center;
}

.transition-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
}

/* PAARDENCOACHING */
.coaching-intro {
  font-family: 'Playfair Display', serif;
  max-width: 800px;
}

.coaching-label {
  font-size: 34px;
  margin-bottom: 24px;
}

.coaching-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.coaching-content {
  background: #f6f4f0;
  border-radius: 32px;
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
}

.coaching-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.coaching-ending {
  text-align: center;
  max-width: 720px;
}

.coaching-ending p {
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.8;
}

.coaching-quote.handwritten {
  font-family: "Lavishly Yours", cursive;
  font-size: 52px;
  line-height: 1.2;
}

/* IMPRESSIE INTRO */
.impressie-intro {
  max-width: 760px;
  margin: 0 auto;
}

.impressie-label {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 24px;
  color: #2f2a23;
}

.impressie-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* AFSLUITING */
.impressie-ending {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
}

.impressie-ending p {
  line-height: 1.8;
}

.impressie-quote {
  font-family: "Lavishly Yours", cursive;
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 40px;
  color: #2f2a23;
}

/* FOOTER */
.footer {
  background-color: #f5f2ee;
  padding: 64px 24px 24px;
  font-family: "Source Sans 3", sans-serif;
  color: #3b3b3b;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.footer-brand img {
  max-width: 180px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.footer h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  text-decoration: none;
  color: #3b3b3b;
  font-size: 15px;
}

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

.footer-contact p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact a {
  color: #3b3b3b;
  text-decoration: none;
}

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

/* Onderregel */
.footer-bottom {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {

  body {
    font-size: 18px; /* was ±16 */
    line-height: 1.8;
  }

  p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px 6%;
  }

  .menu a {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
    .page-hero {
    aspect-ratio: 3 / 4;
    background-position: 90% center;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .story {
    padding: 60px 6% 100px;
  }

  .story p {
    font-size: 15px;
    line-height: 1.8;
  }

  .story-break {
    font-size: 1.4rem;
    margin: 32px 0;
  }

  .story-ending .handwritten {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .coaching-lead {
    font-size: 1.3rem;
  }

  .coaching-quote.handwritten {
    font-size: 36px;
  }

  .coaching-grid {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .image-grid {
    gap: 16px;
  }

  .impressie-quote {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 6% 24px;
  }

  .footer-inner {
    gap: 32px;
  }

  .footer-brand img {
    max-width: 150px;
  }
}

.about-button {
  margin-top: 32px;
  text-align: center;
}
