/* Reset & basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #fdfaf5;
  color: #2d2d2d;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

.signature {
  font-family: 'Ms Madi', cursive;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 350px;
  width: 80%;
  height: auto;
}

.scroll-hint {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #5a4636;
  font-style: italic;
}

.arrow {
  display: block;
  font-size: 2rem;
  margin-top: 0.5rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Over mij */
.over {
  background-color: #f8f1e6;
  padding: 6rem 2rem 4rem;
  border-top: 1px dashed #c2b6a0;
}

.over-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.over-left {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.over-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: #3a2f23;
  line-height: 1.4;
}

.over-photo {
  max-width: 100%;
  height: auto;
  display: block;
  filter: sepia(60%) contrast(1.05) brightness(0.95);
  transition: filter 0.4s ease;
}

.over-photo:hover {
  filter: sepia(0%) contrast(1.1) brightness(1);
}

.over-right {
  flex: 1;
  min-width: 280px;
  color: #3a2f23;
}

.over-right h2 {
  font-size: 2rem;
  border-bottom: 2px solid #5a4636;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.over-right p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Contact */
.contact {
  background-color: #d9c7ac;
  padding: 5rem 2rem 4rem;
  border-top: 1px dashed #c2b6a0;
}

.contact-centered {
  text-align: center;
  color: #fdfaf5;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 2rem 1rem;
}

.contact img {
  width: 150%; 
  position: relative; 
  left: -25%;
}

#email-link {
  color: #fdfaf5;
  text-decoration: underline;
}


/* Review strip */
.review-strip {
  overflow: hidden;
  height: 150px;
  background-color: #fdfaf5;
  border-top: 1px dashed #c2b6a0;
  display: flex;
  align-items: center;
}

.review-strip-inner {
  display: flex;
  animation: scrollBackAndForth 20s ease-in-out infinite alternate;
  will-change: transform;
}

.review-item {
  flex: 0 0 600px;
  padding: 0 2rem;
  border-right: 1px solid #d3c4aa;
  text-align: center;
}

.review-item p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #3a2f23;
  margin: 0 0 0.5rem;
}

.review-item a {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #5a4636;
  text-decoration: underline;
}

.review-stars {
  display: block;
  margin: 0.4rem auto 0;
  height: 25px;
  width: auto;
}

@keyframes scrollBackAndForth {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1200px); }
}

/* Pauzeer animatie op hover */
.review-strip:hover .review-strip-inner {
  animation-play-state: paused;
}

/* Werkwijze (oude blok voor enkelkolom) */
.werkwijze {
  background-color: #f8f1e6;
  padding: 5rem 1rem;
  border-top: 1px dashed #c2b6a0;
  border-bottom: 1px dashed #c2b6a0;
}

.werkwijze .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.werkwijze h2 {
  font-size: 2rem;
  border-bottom: 2px solid #5a4636;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.werkwijze p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5a4636;
}

/* Werkwijze split */
.werkwijze-split {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  min-height: 500px;
  overflow: hidden;
}

.werkwijze-left {
  background-color: #f8f1e6;
  flex: 3;
  padding: 4rem 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
}

.werkwijze-right {
  background-color: #d9c7ac;
  flex: 2;
  z-index: 2;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -18%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.werkwijze-illustratie {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  opacity: 0.85;
}

/* Content styling */
.content {
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 6rem; /* veilige ruimte t.o.v. schuine vlak */
}

.content h2 {
  font-size: 2rem;
  border-bottom: 2px solid #5a4636;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.content p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a4636;
}

/* Tarieven & Vergoeding - NIEUW (met watermerken op sectieniveau) */
.tarieven-vergoeding {
  background-color: #fdfaf5; /* zelfde als hero */
  padding: 6rem 2rem;
  border-top: 1px dashed #c2b6a0;
  border-bottom: 1px dashed #c2b6a0;
  position: relative;
  overflow: hidden;
}

/* Watermerk links (Tarieven) */
.tarieven-vergoeding::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -5%;
  transform: translateY(-10%);
  width: 70%;
  height: 70%;
  background: url("layout/tarieven.png") no-repeat left center;
  background-size: contain;
  opacity: 0.57;
  pointer-events: none;
  z-index: 1;
}

/* Watermerk rechts (Vergoeding) — gebruikt dezelfde asset per jouw verzoek */
.tarieven-vergoeding::after {
  content: "";
  position: absolute;
  top: 120%;
  right: -5%;
  transform: translateY(-120%);
  width: 70%;
  height: 80%;
  background: url("layout/vergoeding.png") no-repeat right center;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

/* Inhoud boven watermerken */
.tv-container {
  position: relative;
  z-index: 2; /* tekst en titels staan boven de watermerken */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tv-column {
  flex: 1 1 400px;
  color: #3a2f23;
  font-family: 'Playfair Display', serif;
}

.tv-column h2 {
  font-size: 2rem;
  border-bottom: 2px solid #5a4636;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}

.tv-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
  color: #5a4636;
}

/* Responsive */
@media (max-width: 768px) {
  .over-columns {
    flex-direction: column;
    text-align: center;
  }

  .over-left {
    margin-bottom: 2rem;
  }

  .over-right {
    text-align: left;
  }

  .review-item p {
    font-size: 0.9rem;
  }

.contact img {
  width: 100%; 
  left: 0%;
}

  .review-strip-inner {
    animation: none !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .review-item {
    scroll-snap-align: start;
    flex: 0 0 100%;
    margin-right: 0.2rem;
    padding: 0 1rem;
  }

  .werkwijze-split {
    flex-direction: column;
  }

  .werkwijze-left {
    background-color: #f8f1e6;
    z-index: 1;
    position: relative;
    padding: 2rem 1rem;
    margin-bottom: -5vw; /* schuift onder het volgende vlak */
  }

  .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .werkwijze-right {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    background-color: #d9c7ac;
    z-index: 2;
    position: relative;
    padding: 3rem 1rem 2rem;
  }

  .werkwijze-right img.werkwijze-illustratie {
    max-width: 60%;
    margin: 0 auto;
    display: block;
  }

  /* Mobiele weergave van watermerken — altijd zichtbaar */
  .tarieven-vergoeding {
    position: relative;
    background-color: #fdfaf5;
    overflow: visible;
  }

.tarieven-vergoeding::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    opacity: 0.52;
    width: 280px;
    height: 280px;
    z-index: 0; /* echte achtergrondlaag */
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.15));
}
  
.tarieven-vergoeding::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    opacity: 0.25;
    width: 280px;
    height: 280px;
    z-index: 0; /* echte achtergrondlaag */
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.15));
  }

  .tarieven-vergoeding::before {
    top: 35%;
    left: -10%;
    background-image: url("layout/tarieven.png");
  }

  .tarieven-vergoeding::after {
    top: 102%;
    left: -20%;
    background-image: url("layout/vergoeding.png");
  }

  /* Zorg dat tekst altijd erboven blijft */
  .tv-container {
    position: relative;
    z-index: 2;
  }
}

