/* W000: Basisopmaak voor layout, header, secties, watermerk, en footer */

main {
  min-height: calc(100vh - 90px); /* 100vh min headerhoogte */
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: #fff;
}

/* Header */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
}

.header-container {
    max-width: 960px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    object-fit: contain;
    display: block;
}

/* Navigatie */

nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: flex;
    align-items: center;
}

nav a {
    position: relative;
    color: #434343;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.4s ease;
}

/* Geanimeerde onderstreping */
nav a:not(.highlighted)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #45c52b, #45c52b);
    transition: width 0.3s ease;
}

/* Hoverkleur + animatie */
nav a:hover {
    color: #45c52b;
}

nav a:not(.highlighted):hover::after,
nav a:not(.highlighted).active::after {
    width: 100%;
}

/* Actieve link blijft groen */
nav a.active {
    color: #45c52b;
}

nav .highlighted {
    display: inline-block; /* veranderd van inline-flex naar inline-block */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem; /* afgestemd op andere nav links */
    padding: 6px 12px;    /* minder verticale ruimte */
    border: 2px solid #434343;
    color: #434343;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    vertical-align: middle; /* belangrijk voor uitlijning */
    line-height: 1.25;
}


nav .highlighted:hover,
nav .highlighted.active {
    background-color: #45c52b;
    color: white;
    text-decoration: none;
    border-color: #45c52b;
}


/* Main content layout */

main {
    padding-top: 70px; /* ruimte voor vaste header */
    margin: 0 auto;
}

/* Secties */

.section {
    min-height: 85vh;
    padding: 40px 20px;
    position: relative;
}

/* Subtiele achtergrondkleuren per sectie */

#over {
    background-color: #ffffff; /* of kort: #fff */
}

#diensten {
    background-color: #eef1ef;
}

#contact {
    background-color: #ffffff;
    
}

/* Watermerk op home sectie */

#home {
    position: relative;
    z-index: 1;
}


/* Footer */

footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
}

/* Scrollbar subtiel maken voor moderne browsers */

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Voor Firefox */

html {
    scrollbar-color: rgba(0,0,0,0.2) transparent;
    scrollbar-width: thin;
}

.global-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background10.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #576879; /* <-- nieuwe tekstkleur */
}

.hero {
    min-height: 85vh;
    height: 85vh;
    display: flex;
    align-items: center;     /* verticaal centreren */
    justify-content: flex-start; /* links uitlijnen */
    height: 100%;
    background: #f5f5f5;
}


.hero-content {
    max-width: 960px;
    width: 100%;              /* Zorgt dat het de volle breedte binnen de 960 gebruikt */
    padding-left: 20px;       /* Binnenruimte links */
    padding-right: 20px;      /* Optioneel, consistentie */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0 auto;           /* Houdt het 960px blok gecentreerd binnen het scherm */
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #434343;
}

.btn.btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background-color: #45c52b;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #368c22;
}

.section-diensten {
    background-color: #f5f8fa; /* <-- dit zit op de volle breedte */
    padding: 60px 0;
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

#home {
    background-color: transparent;
}

.section-over {

    background-color: #fff; /* wit zoals je wilde */
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 95vh; /* Zorgt dat hij schermhoogte gebruikt */
  }

.over-content {
    min-height: 85vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    gap: 40px;
}

.over-text {
    flex: 1;
    color: #595959;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
}

.over-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #434343;
}

.over-text h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #576879;
}

.over-text p {
    margin-bottom: 20px;
}

.over-image {
    flex: 1;
    text-align: right;
    max-width: 50%;       /* Beperkt de ruimte die de afbeelding mag gebruiken */
}

.over-image img {
    max-width: 80%;
    min-height: 150%;    /* Optioneel: hoogte begrenzen */
    width: auto;
    height: auto;
    display: block;
}


/* Diensten sectie */
.section-diensten {
    background-color: #eef1ef;
    padding: 60px 20px;
    overflow: visible !important;
    align-content: center;    
}

.diensten-container {
    max-width: 960px;
    margin: 0 auto;
}

.diensten-header p.diensten-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #576879;
    margin-bottom: 0.25rem;
}

.diensten-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.diensten-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: visible;
    padding: 0;
    list-style: none;
    margin: 0;
}
/* WXXX: Dienstenlijst met kaarten in UL/LI structuur */
.diensten-lijst {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
}

.dienst-item {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
}

.dienst-kaart {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.dienst-kaart:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.dienst-kaart img {
    width: 100%;
    height: auto;
    display: block;
}

.dienst-content {
    padding: 20px;
}

.dienst-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.dienst-kaart:hover h3 {
    color: #45c52b;
}

.dienst-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #595959;
}

@media (max-width: 900px) {
    .dienst-item {
        flex: 1 1 100%;
    }
}

.sb-section-subtitle {
    font-size: 1.5rem; /* of een passende grootte */
    font-weight: 500;
    line-height: 1.4;
    color: #000; /* of gewenste kleur */
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.section-contact {
  padding: 0px 20px;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 960px;
  margin: 0 auto;
  min-height: 80vh; /* Zorgt dat het minstens de hoogte van het scherm vult */
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;         /* verticaal centreren */
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 50%;
  min-width: 300px;
}

.contact-form h2.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
  line-height: 1.4;
}

.contact-form form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #6e6b6b;
  border-radius: 4px;
}

.checkbox-wrapper {
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-form form button.btn {
  background-color: #45c52b;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form form button.btn:hover {
  background-color: #368c22;
}

.contact-info {
  flex: 1 1 40%;
  background: #f2f2f2;
  padding: 20px 30px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #333;
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-info p a {
  color: #333;
  text-decoration: underline;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


.service-wrapper {
    display: flex;
    height: 60vh;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.service-image img {
    width: 330px;
    height: 430px;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-image-cloud img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 1px;

}

.service-content {
    max-width: 500px;
    color: #595959;
    font-size: 1.125rem;
    line-height: 1.6;
}

.service-content .btn.btn-primary {
  margin-top: 1.5rem; /* of bijv. 24px */
}

.service-content .service-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #576879;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-content p {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 1.125rem;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: none;
  text-align: start;
  box-sizing: inherit;
  margin-top: 0;
  margin-bottom: 0;
  color: #595959;
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 calc(50% - 20px); /* 2 per rij bijv. */
  box-sizing: border-box;
}

.section-text {
  flex-basis: 100%; /* >>> forceren naar nieuwe regel */
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .service-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: left;
    height: auto;            /* belangrijk: geen vaste hoogte */
    gap: 30px;
    padding: 40px 20px;
    margin: 0 auto;
  }

  .service-image img {
    width: 90%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }

  .service-content {
    max-width: 100%;
    padding: 0 10px;
    text-align: left;
  }

  .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .cta-alt-section {
    height: auto; /* laat de inhoud de hoogte bepalen */
    padding: 40px 20px;
    margin-top: 40px;
  }

  .cta-alt-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-alt-text,
  .cta-alt-button {
    flex: 1 1 100%;
    text-align: center;
  }
}






.cta-section {
  background-color: #576879; /* groene achtergrond */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e6e6e6;
}

.cta-section .btn {
  background-color: #fff;
  color: #00553D;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;

}

.cta-section .btn:hover {
  background-color: #e6e6e6;
}

.sb-hero-simple-section {
  min-height: 20vh; /* of bijvoorbeeld 50vh */
}

.page-label {
  font-size: 0.875rem !important;
  font-style: normal !important;
  font-family: Poppins, sans-serif !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  color: #45c52b !important;
  display: block !important;
}

.page-subtitle {
    font-size: 2rem !important;
    font-style: normal !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0px !important;
    text-transform: none !important;
    margin-bottom: 10px !important;
    max-width: 500px; /* of een andere waarde die goed oogt */
    word-wrap: break-word;
}

/* Intake form layout styling */
.intake-form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1rem;
  font-family: 'Inter', sans-serif;
}

.form-subtitle {
  color: #2e7d32;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #6e6b6b;
  border-radius: 4px;
  font-size: 1rem;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin-top: 1.5rem;
}

.form-legend {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-fieldset label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.form-submit {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
}

.form-submit:hover {
  background-color: #25642a;
}

.form-label,
.form-legend {
  font-weight: 600;
}

.cta-alt-section {
  background-color: #576879;  /* Donkergroen of wat jij wilt */
  color: #fff;
  padding: 20px 10px;
  height: 20vh;
}

.cta-alt-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* mobiel-vriendelijk */
}

.cta-alt-text {
  flex: 1 1 40%;
  text-align: left;
}

.cta-alt-button {
  flex: 1 1 35%;
  text-align: left;
}

.cta-alt-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-alt-subtitle {
  font-size: 1.2rem;
  color: #e6e6e6;
  margin: 0;
}

.cta-alt-section .btn-secondary {
  background-color: #ffffff;
  color: #576879;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-alt-section .btn-secondary:hover {
  background-color: #e6e6e6;
}

@media (max-width: 768px) {
  .cta-alt-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-alt-button {
    text-align: center;
  }
}

.site-footer {
  background-color: #252525; /* antraciet */
  color: #fff;
  padding: 20px 5px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 960px; /* afgestemd op je standaard layout */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 30%; /* 3 kolommen */
  min-width: 220px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-column p,
.footer-column ul,
.footer-column li {
  color: #ccc;
  margin: 0 0 8px 0;
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #45c52b;
}
.footer-logo {
  height: 24px;      /* pas aan zoals gewenst */
  margin-bottom: 10px;
}

html {
  scroll-behavior: smooth;
}

/* Basisstijl */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: 2px #007bff;
  cursor: pointer;

  z-index: 1000;
}

.hamburger:hover {
  color: #45c52b; /* Blauw bij hover */
}

/* Navigatie standaard */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Mobiel weergave */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000; /* zwarte hamburger-knop */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;      /* wit menu */
    border: 1px solid #000;      /* zwarte rand */
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border-radius: 6px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #222; /* zelfde kleur als desktopmenu (pas aan indien anders) */
    text-decoration: none;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: #178a00; /* accentkleur bij hover (pas aan naar wens) */
  }

  
}


@media (max-width: 768px) {
  .cta-alt-section .btn-secondary {
    border: 2px solid #576879;  /* zwarte omranding */
  }
}

@media (max-width: 768px) {
  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .contact-info {
    margin-bottom: 60px;
  }
}