/* --- CSS RESET & BASE NORMALIZATION --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f5f0;
  color: #243014;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- TYPOGRAPHY & BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C5D30;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.2rem; margin-bottom: 10px; }
p, ul, ol, li, blockquote { font-size: 1rem; }
p { margin-bottom: 16px; }
.cta-message {
  font-size: 1.13rem;
  color: #1c5d30;
  font-weight: 500;
  margin-bottom: 20px;
}
blockquote {
  font-style: italic;
  color: #243014;
  border-left: 4px solid #A5D6A7;
  background: rgba(232,240,229,0.8);
  padding: 14px 28px 14px 24px;
  border-radius: 10px;
  margin-bottom: 10px;
}
ul, ol {
  margin-left: 25px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
  flex-shrink: 0;
  filter: hue-rotate(-25deg) saturate(0.7) brightness(0.95);
}

/* --- BUTTONS --- */
.button-primary, .button-primary:visited {
  background: #1C5D30;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(60, 90, 50, 0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.2s;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: #276c3a;
  color: #e2b13c;
  box-shadow: 0 4px 24px rgba(60,90,50,0.15);
  transform: translateY(-2px) scale(1.04);
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 4px 24px rgba(60,90,50,0.05), 0 1.5px 0.5px rgba(230,210,162,0.08);
  transition: box-shadow 0.25s;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  background: #f3f3f3;
  border-radius: 18px;
  padding: 36px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #f4f5ed;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(82, 115, 83, 0.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(82,115,83,0.11);
  transform: scale(1.025);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FAFFF8;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(44,82,32,0.075);
  margin-bottom: 20px;
  border-left: 7px solid #1C5D30;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(44,82,32,0.14);
  transform: scale(1.015);
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  color: #111;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #60653b;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* --- TABLE STYLE for prijzen --- */
table {
  width: 100%;
  margin: 18px 0 24px 0;
  border-collapse: collapse;
  background: #fbfbfa;
  border-radius: 10px;
  overflow: hidden;
}
thead {
  background: #e2b13c2e;
}
th, td {
  padding: 14px 12px;
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #1C5D30;
  border-bottom: 2px solid #A5D6A7;
}
td {
  font-size: 1rem;
  color: #243014;
  border-bottom: 1px solid #e7ede3;
}
tr:last-child td {
  border-bottom: none;
}

/* --- HEADER & MAIN NAVIGATION --- */
header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 18px rgba(44, 92, 53, 0.08);
  position: sticky;
  top: 0;
  z-index: 90;
}
header nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}
header nav a {
  color: #1C5D30;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .15s, color .18s;
  position: relative;
}
header nav a:not(.button-primary):hover, header nav a:not(.button-primary):focus {
  background: #e0eae1;
  color: #b38613;
}
header nav .button-primary {
  margin-left: auto;
  margin-right: 0;
}
header nav img {
  height: 38px;
  width: auto;
  margin-right: 18px;
  display: block;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #1C5D30;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #276c3a;
  color: #e2b13c;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 300;
  background: rgba(32,64,36,0.97);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.52,.01,.44,1.01), opacity 0.33s;
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: #E2B13C;
  background: none;
  border: none;
  padding: 18px 18px 0 20px;
  align-self: flex-end;
  cursor: pointer;
  position: relative;
  z-index: 320;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 0 0 44px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 8px 8px 8px;
  margin-right: 0;
  min-width: 190px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #b38613;
  color: #fff;
}

@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  header nav .button-primary {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
    gap: 6px;
  }
  header nav a {
    font-size: 0.95rem;
    padding: 6px 8px;
    margin-right: 0;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 7vw;
  }
  .text-section { padding: 18px 5vw; }
  .content-wrapper, .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .section {
    padding: 17px 2vw;
    margin-bottom: 24px;
  }
  .button-primary {
    font-size: 1rem;
    padding: 10px 14px;
  }
}

/* --- FOOTER --- */
footer {
  background: #13381a;
  color: #fff;
  padding: 0 0 18px 0;
}
footer .container {
  padding-top: 26px;
  padding-bottom: 0;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
footer .content-wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer img {
  width: 46px;
  height: auto;
  margin-bottom: 7px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #edf0e3;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #b38613;
}
footer p, footer em {
  font-size: 0.98rem;
  color: #e3e6d7;
}
footer em { font-style: italic; }

@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

/* --- ORGANIC/NATURE DECORATIVE ELEMENTS --- */
.section, .testimonial-card, .card, .text-section {
  /* Subtle organic/irregular border radius */
  border-radius: 18px 30px 20px 22px;
}
.card {
  background: #f8f5ed url('../assets/textures/leaf.png') repeat;
  background-size: 340px auto;
  border-left: 7px solid #b38613;
}
.text-section {
  box-shadow: 0 2px 8px rgba(60,90,50,0.04);
}

/* --- ORGANIC/ACCENT LINES --- */
h1, h2, h3 { position: relative; }
h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  margin-top: 4px;
  background: #b38613;
  border-radius: 12px;
  opacity: 0.4;
}

/* --- MICRO INTERACTIONS --- */
a, .button-primary, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background .17s, color .17s, box-shadow .18s, transform 0.12s;
}

/* --- FOCUS STATES --- */
a:focus, .button-primary:focus, .mobile-menu-close:focus {
  outline: 2px solid #B38613;
  outline-offset: 2px;
  background: #fafae1;
}

/* --- ICONS IN TEXT --- */
li img, p img {
  margin-right: 8px;
  vertical-align: middle;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #f7f6ed;
  color: #1c5d30;
  padding: 18px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  box-shadow: 0 -2px 16px rgba(60,90,50,0.12);
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  animation: cookie-in 0.42s cubic-bezier(.61,-0.38,.89,1.3);
}
@keyframes cookie-in {
  0% { transform: translateY(100%); opacity: 0; }
  80% { transform: translateY(-8px); opacity: .7; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  padding: 9px 24px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  margin: 0;
}
.cookie-banner .accept {
  background: #1C5D30;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #317b42;
  color: #fff;
}
.cookie-banner .reject {
  background: #ffffff;
  color: #1C5D30;
  border: 1px solid #1C5D30;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #eaf5e8;
  color: #b38613;
  border-color: #b38613;
}
.cookie-banner .settings {
  background: #b38613;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #87681a;
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 8px 8px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons { gap: 7px; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,64,34,0.65);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.33s cubic-bezier(.69,-0.042,.66,1.07);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #f5f7ed;
  padding: 33px 28px 21px 28px;
  border-radius: 18px;
  box-shadow: 0 7px 40px 2px rgba(38,92,53,0.15);
  min-width: 280px;
  max-width: 94vw;
  color: #1c5d30;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-card-in 0.44s cubic-bezier(.61,-0.38,.89,1.3);
  position: relative;
}
@keyframes modal-card-in {
  0% { transform: scale(0.84); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 10px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #1c5d30;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #b38613;
  margin-right: 8px;
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal-content button {
  border: none;
  padding: 8px 18px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #1C5D30;
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-content button.reject {
  background: #fff;
  color: #1c5d30;
  border: 1px solid #1c5d30;
}
.cookie-modal-content button.reject:hover, .cookie-modal-content button.reject:focus {
  background: #fafae1;
  color: #b38613;
}
.cookie-modal-content button.save {
  background: #b38613;
  color: #fff;
}
.cookie-modal-content button.save:hover, .cookie-modal-content button.save:focus {
  background: #87681a;
  color: #fff;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 11px; right: 18px;
  color: #b38613;
  background: none;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid #b38613;
  outline-offset: 2px;
}

/* --- CUSTOM SCROLLBAR --- */
html {
  scrollbar-color: #b38613 #eaeae0;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 12px;
  background: #ececdf;
}
body::-webkit-scrollbar-thumb {
  background: #b38613;
  border-radius: 8px;
}

/* --- UTILITY CLASSES --- */
.hide { display: none !important; }

/* --- ANIMATIONS FOR CTA BUTTONS --- */
.button-primary {
  will-change: transform, box-shadow;
}
.button-primary:active {
  transform: scale(0.965);
}

/* --- END --- */
