/* Import custom font */
@font-face {
  font-family: 'MonazStamp';
  src: url('fonts/Monaz-Stamp.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ForeverBirthday';
  src: url('fonts/Forever Birthday.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f6f8f3;
  color: #2e4632;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-weight: 400;
}
header {
  background: #dbeed6;
  padding: 20px 0 10px 0;
  text-align: center;
}
header h1 {
  margin: 0 0 10px 0;
  font-size: 2.5em;
  color: #3b5d3b;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #2e4632;
  font-weight: bold;
  transition: color 0.2s;
}
nav a:hover {
  color: #6bbf59;
}
.hero {
  background: linear-gradient(90deg, #eafbe7 60%, #dbeed6 100%);
  padding: 40px 20px 20px 20px;
  text-align: center;
}
.hero h2 {
  color: #3b5d3b;
  margin-bottom: 10px;
}
.intro {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60, 80, 60, 0.07);
  padding: 24px;
  transition: box-shadow 0.3s ease;
}
.intro:hover {
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.1);
}
@media (max-width: 768px) {
  .intro {
    margin: 20px 16px;
    padding: 20px 16px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(60, 80, 60, 0.08);
  }
}
footer {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 30%, #d1e7ff 70%, #b8d4ff 100%);
  color: #2e4632;
  text-align: center;
  padding: 24px 20px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

/* Navigatie en header */
.impact-header {
  background: #eafbe7;
  padding: 0 0 8px 0;
  text-align: center;
  border-bottom: 2px solid #6bbf59;
  max-width: 100vw;
  box-sizing: border-box;
  padding-left: 40px;
  box-shadow: 0 2px 20px rgba(60, 80, 60, 0.08);
  position: relative;
  z-index: 1003;
}
.impact-header h1 {
  margin: 0 0 10px 0;
  font-size: 2.8em;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'ForeverBirthday', 'Bubblegum Sans', cursive;
  color: #3b5d3b;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  transform: none;
  transition: all 0.3s ease;

}
.impact-header h1:hover {
  transform: scale(1.05);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

@keyframes entranceBounce {
  0% {
    transform: rotate(-2deg) translateY(-30px) scale(0.9);
    opacity: 0;
    color: #2e4632;
  }
  60% {
    transform: rotate(-2deg) translateY(5px) scale(1.05);
    opacity: 1;
    color: #6bbf59;
  }
  80% {
    transform: rotate(-2deg) translateY(-2px) scale(1.02);
    color: #4a7c59;
  }
  100% {
    transform: rotate(-2deg) translateY(0px) scale(1);
    opacity: 1;
    color: #3b5d3b;
  }
}

@keyframes gentleBounce {
  0%, 100% {
    transform: rotate(-2deg) translateY(0px);
    color: #3b5d3b;
  }
  50% {
    transform: rotate(-2deg) translateY(-5px);
    color: #6bbf59;
  }
}

@keyframes colorPulse {
  0%, 100% {
    color: #3b5d3b;
  }
  50% {
    color: #6bbf59;
  }
}
.impact-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: 100vw;
  margin-left: 0;
  margin-right: auto;
}
.impact-nav a {
  text-decoration: none;
  color: #2e4632;
  font-weight: 500;
  font-size: 1em;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.impact-nav a:hover, .impact-nav .cta-btn:hover {
  background: #6bbf59;
  color: #fff;
}
.impact-nav a:hover, .impact-nav a.active {
  background: #6bbf59;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 191, 89, 0.3);
}
.cta-btn {
  background: #6bbf59;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(60, 80, 60, 0.1);
  position: relative;
  overflow: hidden;
}
.cta-btn.big {
  display: inline-block;
  font-size: 1.2em;
  padding: 16px 32px;
  margin-top: 18px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn.big:hover {
  background: #388e3c !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.4);
}
.cta-white {
  background: #fff !important;
  color: #6bbf59 !important;
  border: 2px solid #6bbf59;
  box-shadow: 0 2px 8px rgba(60, 80, 60, 0.07);
}
.cta-white:hover {
  background: #6bbf59 !important;
  color: #fff !important;
}
.hero-foto-full {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-foto-full img {
  width: 100%;
  height: 44vw;
  min-height: 220px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.72) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(40,60,40,0.18);
  padding: 0 6vw;
  z-index: 2;
}
.hero-overlay h2, .hero-overlay p, .hero-overlay strong, .hero-overlay a {
  color: #fff !important;
}
.hero-overlay h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #fff;
}
.hero-overlay p {
  font-size: 1.5em;
  margin-bottom: 18px;
  color: #fff;
}

/* Hero sectie */
.hero-impact {
  background: linear-gradient(135deg, #eafbe7 0%, #dbeed6 30%, #c7dbc2 70%, #b8d4b0 100%);
  padding: 48px 0 32px 0;
  text-align: center;
  border-bottom: 1px solid #c7dbc2;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
.hero-impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.hero-impact h2 {
  color: #3b5d3b;
  font-size: 2.4em;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero-impact p {
  font-size: 1.1em;
  color: #2e4632;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}
.hero-foto {
  display: block;
  max-width: 340px;
  width: 90vw;
  height: auto;
  margin: 0 auto 18px auto;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(60,80,60,0.13);
}
@media (min-width: 900px) {
  .hero-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
  }
  .hero-foto {
    margin: 0;
    max-width: 400px;
    flex-shrink: 0;
  }
}
@media (max-width: 900px) {
  .hero-overlay h2 {
    font-size: 2.4em !important;
  }
  .hero-overlay p {
    font-size: 1.3em !important;
  }
}
@media (max-width: 600px) {
  .hero-overlay h2 {
    font-size: 1.875em !important;
  }
  .hero-overlay p {
    font-size: 1.0em !important;
  }
  .hero-foto-full {
    max-width: 100vw;
    margin: 0;
    width: 100vw;
    margin-left: 8px;
    margin-right: -155px;
  }
  .hero-foto-full img {
    width: 100vw;
    height: auto;
    max-height: 400px;
  }
}

/* Impact blocks */
.impact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 40px auto 0 auto;
  max-width: 1100px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
}
.impact-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(60, 80, 60, 0.06);
  padding: 32px 24px 24px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  border-top: 3px solid #6bbf59;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.impact-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6bbf59, #388e3c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.impact-block:hover::before {
  transform: scaleX(1);
}
.impact-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(60, 80, 60, 0.15);
}
.impact-block i {
  font-size: 2.4em;
  color: #6bbf59;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.impact-block:hover i {
  transform: scale(1.1);
}
.impact-block h3 {
  margin: 10px 0 8px 0;
  color: #3b5d3b;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3;
}
.impact-block p {
  color: #2e4632;
  font-size: 0.95em;
  line-height: 1.5;
  font-weight: 400;
}

/* Testimonials */
.impact-testimonials {
  background: #eafbe7;
  border-radius: 16px;
  max-width: 700px;
  margin: 48px auto 0 auto;
  padding: 32px 24px 24px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(60, 80, 60, 0.08);
  position: relative;
  overflow: hidden;
}
.impact-testimonials h3 {
  color: #3b5d3b;
  margin-bottom: 18px;
}
.testimonial {
  background: #fff;
  border-radius: 10px;
  margin: 0 auto 18px auto;
  padding: 18px 16px 10px 16px;
  box-shadow: 0 2px 12px rgba(60, 80, 60, 0.08);
  font-style: italic;
  color: #2e4632;
  max-width: 500px;
  transition: transform 0.3s ease;
  position: relative;
}
.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(60, 80, 60, 0.12);
}
.testimonial span {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: #3b5d3b;
  font-size: 0.9em;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .impact-blocks {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 98vw;
    width: 100%;
  }
  .impact-block {
    width: 100%;
    max-width: 500px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .impact-header h1 {
    font-size: 1.5em;
  }
  .hero-impact h2 {
    font-size: 1.3em;
  }
  .impact-testimonials {
    padding: 18px 6px 12px 6px;
  }
  .impact-blocks {
    gap: 12px;
    padding-left: 6px;
    padding-right: 6px;
    width: 100%;
  }
  .impact-block {
    padding: 20px 8px 16px 8px;
    font-size: 1em;
    width: 100%;
    max-width: 98vw;
  }
  .impact-block i {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  .impact-block h3 {
    font-size: 1.1em;
  }
  .impact-block p {
    font-size: 0.98em;
  }
} 
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: #3b5d3b;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10004;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  padding: 8px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle {
  outline: none !important;
}
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:focus-visible,
.menu-toggle:active {
  outline: none !important;
  background: none;
  color: #3b5d3b;
}
/* Groene box ALLEEN als menu open is */
body.menu-open .menu-toggle:hover {
  color: #fff;
  background: #3b5d3b;
  transform: scale(1.05);
}
/* Forceer GEEN styling als menu gesloten is */
body:not(.menu-open) .menu-toggle,
body:not(.menu-open) .menu-toggle:hover,
body:not(.menu-open) .menu-toggle:focus,
body:not(.menu-open) .menu-toggle:focus-visible,
body:not(.menu-open) .menu-toggle:active {
  background: none !important;
  color: #3b5d3b !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    right: 28px;
    top: 20px;
    font-size: 1.8em;
    z-index: 10004;
    pointer-events: auto;
  }
  .impact-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #eafbe7;
    box-shadow: -4px 0 20px rgba(60,80,60,0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 60px 0 0 0;
    margin: 0;
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
  }
  .impact-nav.open {
    right: 0;
  }
  .impact-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(199, 219, 194, 0.3);
    z-index: 10001;
    pointer-events: auto;
  }
  .impact-nav a {
    display: block;
    width: 100%;
    padding: 18px 28px;
    font-size: 1.15em;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
  }
  .impact-nav a:hover {
    background: rgba(107, 191, 89, 0.1);
    color: #3b5d3b;
    transform: translateX(8px);
  }
  .impact-header {
    position: relative;
    min-height: 60px;
    z-index: 10003;
  }
  body.menu-open {
    overflow: hidden;
  }
  .menu-overlay {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(60,80,60,0.3);
    z-index: 9999;
    animation: fadein 0.2s;
  }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
} 
.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 75%;
  position: relative;
  padding-right: 220px;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 40px;
  margin: 0;
  padding-top: 5px;
  padding-bottom: 3px;
  flex-shrink: 0;
}
.logo-img {
  height: 120px;
  width: auto;
  margin-right: 4px;
}
.garden-visual {
  display: flex;
  justify-content: flex-start;
  margin: 32px 0 0 0;
  padding-left: 40px;
}
.garden-visual img {
  max-width: 420px;
  width: 90vw;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(60,80,60,0.10);
}
@media (max-width: 768px) {
  .garden-visual {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .garden-visual img {
    width: 100%;
    max-width: 100%;
  }
}
.impact-nav a {
  /* verwijder altijd-groen */
  background: none;
  color: #2e4632;
  font-weight: bold;
  font-size: 1.1em;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.impact-nav a:hover, .impact-nav a.active {
  background: #6bbf59;
  color: #fff;
} 
.left-align-hero {
  align-items: center !important;
  text-align: center !important;
  padding-left: 0;
  padding-right: 0;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 601px) {
  .hero-overlay h2 {
    color: #fff !important;
    text-align: center;
    width: 100%;
    font-size: 3.4em !important;
  }
  .hero-overlay p {
    color: #fff !important;
    text-align: center;
    width: 100%;
    font-size: 1.5em !important;
  }
}
.cta-btn.big.cta-white {
  display: block;
  margin: 24px auto 0 auto;
  min-width: 220px;
  font-size: 1.25em;
  padding: 18px 40px;
  border-width: 3px;
  border-radius: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .impact-header {
    padding-left: 16px;
    z-index: 10003;
    padding-bottom: 8px;
    pointer-events: none;
  }
  .header-inner {
    justify-content: center;
    padding-right: 0;
  }
  .logo-title {
    padding-left: 16px;
    padding-top: 5px;
    padding-bottom: 3px;
    margin: 0 auto;
    justify-content: center;
  }
  .left-align-hero {
    padding-left: 16px;
    max-width: 98vw;
  }
  .impact-blocks {
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
    margin: 20px auto 0 auto;
    max-width: 95vw;
  }
  .impact-block {
    width: 100%;
    max-width: 95vw;
    min-width: 0;
    margin: 0;
    flex: 1 1 100%;
    box-sizing: border-box;
  }
  .impact-testimonials {
    padding-left: 16px;
  }
  .hero-impact h2 {
    font-size: 1.8em;
  }
  .hero-impact p {
    font-size: 1em;
  }
  .impact-header h1 {
    font-size: 1.8em;
  }
  .cta-btn.big {
    margin-top: 24px;
    margin-bottom: 12px;
    padding: 14px 28px;
    font-size: 1.1em;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .impact-header {
    padding-left: 6px;
    padding-bottom: 8px;
  }
  .header-inner {
    justify-content: flex-start;
    padding-right: 0;
    width: 100%;
  }
  .logo-title {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 3px;
    margin: 0;
    justify-content: flex-start;
    text-align: left;
  }
  .left-align-hero {
    padding-left: 6px;
    max-width: 98vw;
  }
  .impact-blocks {
    padding-left: 6px;
    padding-right: 6px;
    gap: 12px;
    margin: 16px auto 0 auto;
    max-width: 92vw;
  }
  .impact-block {
    width: 100%;
    max-width: 92vw;
    min-width: 0;
    margin: 0;
    flex: 1 1 100%;
    padding: 20px 16px 16px 16px;
    box-sizing: border-box;
  }
  .impact-block i {
    font-size: 2em;
  }
  .impact-block h3 {
    font-size: 1.1em;
  }
  .impact-block p {
    font-size: 0.9em;
  }
  .impact-testimonials {
    padding-left: 6px;
  }
  .hero-impact h2 {
    font-size: 1.4em;
  }
  .hero-impact p {
    font-size: 0.95em;
  }
  .impact-header h1 {
    font-size: 1.4em;
  }
  .logo-img {
    height: 70px;
  }
  .header-inner {
    width: 100%;
    padding-right: 20px;
  }
  .impact-nav {
    gap: 12px;
  }
  .impact-nav a {
    font-size: 1em;
    padding: 6px 12px;
  }
  .hero-impact {
    padding: 32px 12px 24px 12px;
  }
  .cta-btn.big {
    margin-top: 20px;
    margin-bottom: 8px;
    padding: 12px 24px;
    font-size: 1em;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    min-width: 160px;
  }
} 
@media (max-width: 900px) {
  .impact-testimonials {
    padding-left: 16px;
  }
}
@media (max-width: 600px) {
  .impact-testimonials {
    padding-left: 6px;
  }
} 
.menu-icon-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1em;
  color: #3b5d3b;
  cursor: pointer;
  margin-right: 32px;
  margin-left: 18px;
}
@media (max-width: 900px) {
  .menu-icon-right {
    display: none;
  }
} 
.hidden {
  display: none;
}
form {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60, 80, 60, 0.07);
  padding: 24px;
  transition: all 0.3s ease;
}
form:hover {
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.1);
  transform: translateY(-2px);
}
label {
  display: block;
  margin-top: 16px;
  font-weight: 500;
  color: #3b5d3b;
  font-size: 0.95em;
}
input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #c7dbc2;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1em;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #6bbf59;
  box-shadow: 0 0 0 3px rgba(107, 191, 89, 0.1);
}
button {
  margin-top: 20px;
  background: #6bbf59;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
button:hover {
  background: #3b5d3b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(56, 142, 60, 0.3);
} 