/* === Hero Layout met zijbanen === */
.hero-layout {
  background-image: url("img/bg-herfst-nieuw.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fdf7ef;
}

 body.homepage {
  background: linear-gradient(to bottom, #fff7ebff 0%, #fcd5a6 100%)!important; 
}


.hero-side.left,
.hero-side.right {
  flex: 0 0 12%;
  min-width: 100px;
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  background-color: transparent;
  z-index: 1;
}

/* === Hero middenblok === */
.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  margin-top: 0;
  padding: 4rem 2rem;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  z-index: 0;
  background-image: url("img/bg-herfst-nieuw.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(to bottom, #fff7eb 0%, #fcd5a6 100%)!important; 
}


.hero-blok {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.85);
border-radius: 8px;
gap: 1.5rem;
flex-wrap: wrap;
max-width: 960px;
margin: 0 auto;
padding: 2rem;
position: relative;
z-index: 1;
}

/* === Hero Content === */
.hero-text h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-text .situatie {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-text .renderzin {
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-text .activatie {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--kleur-accent-dark);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* === CTA-knoppen === */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-buttons a {
  display: inline-block;
  align-items: center;
  padding: 6px 16px;
  font-size: 15px;
  border-radius: 10rem;
  white-space: nowrap;
  width: auto;
  max-width: none;
  text-align: center;
}


.knop-accent {
  display: inline-block;
  padding: 10px 24px;
  background-image: var(--gradient-accent);
  color: var(--kleur-accent-tekst); /* #c2d4f2 */
  font-family: var(--font-heading);
  font-weight: bold;
  border: 2px solid rgba(0, 85, 165, 0.3);
  border-radius: 10rem; /* eclipsvorm */
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-image 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.knop-accent:hover {
  background-image: var(--gradient-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: rgba(0, 85, 165, 0.5);
}
.knop-cta {
  display: inline-block;
  padding: 10px 24px;
  background-image: var(--gradient-cta);
  color: var(--kleur-tekst); /* #003366 */
  font-family: var(--font-heading);
  font-weight: bold;
  border: 2px solid rgba(0, 0, 0, 0.1); /* lichte rand */
  border-radius: 10rem; /* eclipsvorm */
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background-image 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.knop-cta:hover {
  background-image: var(--gradient-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: rgba(0, 0, 0, 0.2); /* iets donkerder bij hover */
}

/* === Afbeelding === */
.hero-img {
  flex: 1 1 45%;
  max-width: 480px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center; 
 padding: 1rem;
  z-index: 1;
}

.hero-img img {
  width: clamp(320px, 45vw, 580px);
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(102, 61, 0, 0.1);
  object-fit: contain;
}

/* === Mobiel fix === */
@media screen and (max-width: 768px) {
  .hero-blok {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .hero-img {
    order: -1;
    margin-top: 1rem;
  }

  .hero-text {
    order: 0;
    text-align: center;
  }

  .hero-text,
  .hero-img {
    max-width: 100%;
  }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
}