/*
Theme Name: Minimal Clean Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Een clean, minimalistisch WordPress thema zonder onnodige features
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-clean
*/

/* --- Variabelen --- */
:root {
  /* Kleuren (Schematische benadering, vul gerust je exacte hex codes in) */
  --bg-light: #f0fdf4; /* De zachtgroene achtergrond */
  --bg-white: #ffffff;
  --text-dark: #00350e; /* Donkergroene tekst */
  --text-light: #475569; /* Grijzere tekst */
  --accent-green: #57a150; /* Felgroen voor knoppen */
  --accent-dark-green: #047857;
  --dark-green-section: #064e3b; /* Achtergrond waarom-wij / footer */

  /* Spatiëring */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --border-radius: 20px;

  /* Typografie — pas hier de basisgroottes aan */
  --font-scale: 1;
  --font-scale-body: 1;
  --font-h1: 70px;
  --font-h2: 50px;
  --font-h3: 30px;
  --font-h4: 20px;
  --font-p: 16px;
  --line-height-heading: 1.4;
  --line-height-body: 1.6;
}

html {
  scroll-behavior: smooth;
}

*,
*:hover {
  cursor: none !important;
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #2aa21f;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(42, 162, 31, 0.5);
  background: transparent;
  transition:
    width 0.2s,
    height 0.2s,
    border-color 0.2s,
    background 0.2s;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(1, 60, 17, 0.4);
  background: rgba(42, 162, 31, 0.08);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  *,
  *:hover {
    cursor: auto !important;
  }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #013c11, #2aa21f, #4dcf40);
  z-index: 9998;
  transition: width 0.1s linear;
}

/* Ripple */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-out 0.55s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-out {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Basis Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("/wp-content/uploads/2026/03/BG-groen.png") center center /
    cover fixed;
  color: var(--text-dark);
  line-height: var(--line-height-body);

  word-break: break-word;
  hyphens: auto;
}

/* --- Lay-out Helpers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding: 0 0;
}

.text-center {
  text-align: center;
}

.logo img {
  max-width: 70vw;
}

/* --- Typografie & Knoppen --- */
h1 {
  font-size: calc(var(--font-h1) * var(--font-scale));
  font-weight: 600;
  line-height: var(--line-height-heading);
  margin-bottom: 15px;
}

h2 {
  font-size: calc(var(--font-h2) * var(--font-scale));
  font-weight: 600;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-sm);
}

h3 {
  font-size: calc(var(--font-h3) * var(--font-scale));
  font-weight: 600;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: calc(var(--font-h4) * var(--font-scale));
  font-weight: 600;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: calc(var(--font-p) * var(--font-scale-body));
  font-weight: 400;
  line-height: var(--line-height-body);
  color: #00350e;
  text-wrap-style: balance;
}

h1 span {
  color: var(--accent-green);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.4s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #013c11 0%, #2aa21f 50%, #4dcf40 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: var(--bg-white);
  border: none;
  box-shadow:
    0 4px 6px -4px rgba(16, 185, 129, 0.2),
    0 10px 15px -3px rgba(16, 185, 129, 0.2);
  border-radius: 5px;
}

.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 162, 31, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.btn-outline:hover {
  background-color: var(--accent-green);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 15px;
}

.badge {
  display: inline-block;
  background-color: #d1fae5;
  color: var(--accent-dark-green);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border: 1px solid #a7f3d0;
  letter-spacing: 0.08em;
}
.badge:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #10b981;
  display: inline-block;
  /* position: absolute; */
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 1px;
}
.text-white p,
.text-white {
  color: white !important;
}

/* --- Secties --- */
section {
  padding-bottom: 90px;
  gap: 54px;
  display: flex;
  flex-direction: column;
}
.hero {
  padding-top: 90px;
}

.hero p {
  max-width: 780px;
  margin: auto;
}

/* Navigatie */

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Kaarten (Cards) */
.card,
.stats-card,
.cta-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow:
    0 8px 10px -6px rgba(6, 78, 59, 0.05),
    0 20px 25px -5px rgba(6, 78, 59, 0.05);
}

/* Statistieken */
.stats-card {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 44px 69px;
  box-shadow: 10px 10px 30px 0px rgba(87, 161, 80, 0.15);
}

.stat-item h2 {
  margin-bottom: 0px;
  font-size: 60px;
  color: var(--accent-green);
}

.intro-text {
  max-width: 1000px;
  margin: auto;
}

/* Tekst + Afbeelding secties */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.split-grid--reverse .split-text {
  order: 2;
}
.split-grid--reverse .split-image {
  order: 1;
}

.split-text h3 {
  color: var(--accent-green);
  margin-bottom: var(--spacing-sm);
}

.split-image img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: block;
}

/* Donkere diensten sectie */
.diensten-dark {
  background-image: url(/wp-content/uploads/2026/03/Frame-5680.png);
  background-size: cover;
  padding-top: 90px;
  margin: 0;
  width: 100%;
}

.diensten-dark + section {
  padding-top: 90px;
}

.diensten-dark h2 {
  color: var(--bg-white);
  margin-bottom: var(--spacing-lg);
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.dienst-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--bg-white);
}

.dienst-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -20px;
  margin-bottom: -33px;
}

.dienst-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.dienst-item p {
  color: var(--bg-white);
}

.dienst-quote {
  display: flex;
  align-items: center;
}

.dienst-quote p {
  color: var(--bg-white);
  font-size: calc(var(--font-h3) * var(--font-scale));
  font-weight: 600;
  line-height: 1.6;
  word-break: auto-phrase;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* Waarom wij Sectie */
.why-us > .container {
  background-color: var(--dark-green-section);
  color: var(--bg-white);
  border-radius: 40px;
  margin: auto;
  padding: var(--spacing-lg);
}

.flex-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.check-list {
  list-style: none;
  margin-top: var(--spacing-md);
}

.check-list li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  padding-left: 36px;
}

.check-list li:before {
  display: block;
  content: "";
  background-image: url(/wp-content/uploads/2026/03/checkmarkjeee.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-bottom: -29px;
  /* margin-right: 12px; */
  position: absolute;
  margin-left: -37px;
  position: relative;
}

.check-list li p {
  color: var(--bg-white);
}

.check-list li p span {
  opacity: 0.6;
}

/* CTA */
.cta-card {
  padding: var(--spacing-lg);
  margin: 0 auto;
  box-shadow: 10px 10px 30px 0px rgba(87, 161, 80, 0.15);
}

.cta-card h4 {
  font-weight: 300;
  color: var(--accent-green);
}

.cta-link {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.cta-link a {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #013c11 0%, #2aa21f 100%);

  padding: 32px 0px;
}

.grid-3-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-md);
}

.socials a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  width: 35px;
  height: 35px;
  text-align: center;
}

/* Icon placeholders (Tijdelijk) */
.icon-placeholder,
.icon-small,
.large-icon-placeholder {
  background-color: #ebf7f1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.icon-placeholder {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
}
.icon-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-small {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}
.large-icon-placeholder {
  width: 120px;
  height: 120px;
  font-size: 3rem;
  border-radius: 50%;
  background: #3c7d5c;
}

/* Contact sectie */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contact-info h2 {
  color: var(--accent-green);
  margin-bottom: var(--spacing-sm);
}

.contact-details {
  margin-top: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-weight: 700;
  color: var(--accent-green);
  margin-right: 0.5rem;
}

/* Gravity Forms reset */
.contact-section .gfield_required.gfield_required_text {
  display: none;
}

.contact-section .contact-form .gform_wrapper {
  margin: 0;
}

.contact-section .contact-form .gform_fields {
  display: grid;
  gap: 1rem;
}

.contact-section .contact-form .gfield--width-full {
  grid-column: 1 / -1;
}

.contact-section .contact-form .gfield_label {
  font-weight: 600;
  color: var(--accent-green);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  background: var(--bg-white) !important;
  font-family: "Poppins", sans-serif !important;
  font-size: calc(var(--font-p) * var(--font-scale-body)) !important;
  color: var(--text-dark) !important;
  box-shadow: none !important;
}

.contact-section .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-green);
}

.contact-section .contact-form .gform_footer,
.contact-section .contact-form .gform_page_footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.contact-section .contact-form input[type="submit"] {
  background: linear-gradient(
    135deg,
    #57a150 0%,
    #57a150 50%,
    #4dcf40 100%
  ) !important;
  background-size: 200% 200% !important;
  background-position: 0% 0% !important;
  color: var(--bg-white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  box-shadow:
    0 4px 6px -4px rgba(16, 185, 129, 0.2),
    0 10px 15px -3px rgba(16, 185, 129, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.4s ease;
}

.contact-section .contact-form input[type="submit"]:hover {
  background-position: 100% 100% !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 162, 31, 0.35);
}

/* --- Responsive --- */
@media (max-width: 980px) {
  :root {
    --font-scale: 0.8;
    --font-scale-body: 0.9;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3-footer {
    grid-template-columns: 1fr 1fr;
  }

  .stats-card {
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    padding: var(--spacing-md);
  }

  .stat-item {
    flex: 0 0 40%;
  }
}

@media (max-width: 767px) {
  :root {
    --font-scale: 0.8;
    --font-scale-body: 0.9;
  }

  h1 {
    font-size: calc(var(--font-h1) * 0.6);
  }

  .hamburger {
    display: flex;
  }

  .navbar .container {
    flex-wrap: wrap;
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    padding: 1rem 0 0.5rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .gform_fields {
    grid-template-columns: 1fr;
  }

  .split-grid .split-text {
    order: 1;
  }
  .split-grid .split-image {
    order: 2;
  }

  .diensten-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diensten-dark {
    margin: 0 2%;
    border-radius: 24px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3-footer {
    grid-template-columns: 1fr;
  }

  .stats-card {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .stat-item {
    flex: unset;
    width: 100%;
  }

  .flex-split {
    gap: var(--spacing-md);

    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }

  .why-us {
    margin: 0 var(--spacing-sm);
    border-radius: 20px;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-card {
    padding: var(--spacing-md);
  }
}

@media (max-width: 479px) {
  :root {
    --font-scale: 0.8;
    --font-scale-body: 0.85;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .diensten-grid {
    grid-template-columns: 1fr;
  }

  .diensten-dark {
    margin: 0;
    border-radius: 0;
  }

  .why-us {
    margin: 0;
    border-radius: 0;
  }

  .stats-card {
    padding: var(--spacing-sm);
  }
}
