:root {
	--geel: #f8af41;
	--lichtgeel: #f6e3b6;
	--blauw:#1b83c6;
	--lichtblauw:#559dcc;
	--rood:#be1d2e;
	--lichtrood:#f5e1db;
	--donkergroen: #39b072;
	--lichtdonkergroen:#e9f4eb;
	--groen:#84b96b;
	--lichtgroen:#a6cc94;
	--paars:#64318a;
	--lichtpaars:#f1eef7;
	--oranje:#e9511c;
	--lichtoranje:#efc0b0;
	--wit: #ffffff;
	--zwart:#333333;
    /* Jouw nieuwe kleurrijke gradient */
    --header-gradient: linear-gradient(
        to right,
        #0783c6 0%,
        #0783c6 10%,
        #008dcd 10%,
        #008dcd 20%,
        #3496d0 20%,
        #3496d0 30%,
        #419cc0 30%,
        #419cc0 40%,
        #53a4b2 40%,
        #53a4b2 50%,
        #61aaa2 50%,
        #61aaa2 60%,
        #67ae91 60%,
        #67ae91 70%,
        #84b86b 70%,
        #84b86b 80%,
        #93c260 80%,
        #93c260 90%,
        #9fc452 90%,
        #9fc452 100%
    );
    --footer-gradient: linear-gradient(
        to bottom,
        #0783c6 0%,
        #0783c6 10%,
        #008dcd 10%,
        #008dcd 20%,
        #3496d0 20%,
        #3496d0 30%,
        #419cc0 30%,
        #419cc0 40%,
        #53a4b2 40%,
        #53a4b2 50%,
        #61aaa2 50%,
        #61aaa2 60%,
        #67ae91 60%,
        #67ae91 70%,
        #84b86b 70%,
        #84b86b 80%,
        #93c260 80%,
        #93c260 90%,
        #9fc452 90%,
        #9fc452 100%
    );
	
	--footer-gradient-reversed: linear-gradient(
    to bottom,
    #9fc452 0%,
    #9fc452 20%,
    #93c260 20%,
    #93c260 40%,
    #84b86b 40%,
    #84b86b 60%,
    #67ae91 60%,
    #67ae91 80%,
    #61aaa2 80%,
    #61aaa2 100%
);
	
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: auto;
   
}
/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

table th,
table td {
    text-align: left;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

table th {
    background-color: #f0f0f0;
}

/* Algemene tabelstyling */
.table-container {
    width: 100%;
    overflow-x: auto; /* horizontaal scrollen als nodig */
    -webkit-overflow-scrolling: touch; /* smooth scroll op iOS */
    margin-bottom: 2rem;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px; /* dwingt scrollen op smalle schermen */
}

/* Cell styling */
.table-container th,
.table-container td {
    padding: 0.5rem;
    border: 1px solid #ccc;
    text-align: left;
    white-space: nowrap; /* voorkomt afbreken van tekst */
}

.table-container th {
    background-color: #f0f0f0;
}

/* Responsive check: alles blijft nowrap op klein scherm */
@media (max-width: 600px) {
    .table-container th,
    .table-container td {
        white-space: nowrap;
    }
}
a.link-phone,
a.link-mail,
a.link-web {
    position: relative;
    padding-left: 2.4em;
}

a.link-phone::before,
a.link-mail::before,
a.link-web::before {
    position: absolute;
    left: 0;
    top: 0;

    width: 1.6em;
    height: 1.6em;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.25);
    color: #fff;

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 0.85em; /* 👈 groter icoon */
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);

    line-height: 1;
}
a.link-phone::before {
    content: "\f095";
}
a.link-mail::before {
    content: "\f0e0";
}
a.link-web::before {
    content: "\f0ac";
}
p a.link-phone,
p a.link-web,
p a.link-mail {
    display: block;
    margin: 0.5em 0;
    padding-left: 2.6em; /* ruimte voor icoon */
    position: relative;
	text-decoration: none;
}

p a.link-phone + br,
p a.link-web + br,
p a.link-mail + br {
    display: none;
}
.clear {
    clear: both; /* zorgt dat deze div onder alle floated elementen komt */
    width: 100%; /* optioneel, meestal handig */
    height: 0;   /* optioneel, zodat het geen extra ruimte inneemt */
    display: block; /* standaard voor div, kan meestal weg */
}

a {
    color: var(--zwart);
   	text-decoration: underline;
   
}
a:hover { 
     	text-decoration: none;
	}
.blauw {background-color:var(--blauw) !important;}
.blauw h4 { font-weight:400;}
.lichtblauw {background-color:var(--lichtblauw);   border-top-left-radius: 30px;
    border-top-right-radius: 30px;}
.groen {background-color:var(--groen); border-radius: 0 40px 40px 0 !important;}
.lichtgroen {background-color:var(--lichtgroen) !important;   border-top-left-radius: 30px;
    border-top-right-radius: 30px;}
body {
    display: flex;
    flex-direction: column;
     font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
    font-weight: 400;
	font-style: normal;
    color:var(--zwart);
	 min-height: 100vh; /* Add this */
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}
/* ===============================
   FLUID TYPOGRAPHY (CLAMP)
   =============================== */
.homebreadcrumb {display: none !important;}
.mobielfooter {display: inherit;}
/* Basis tekst */
p {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Headings */
h1 {
   font-family: "Gluten", cursive;
	 font-style: normal;
	font-optical-sizing: auto;
  font-weight: 600;

    font-size: clamp(1.2rem, 2.6rem + 2vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0.8em;
}

h2 {
     font-family: "Gluten", cursive;
  font-weight: 600;
 	 font-style: normal;
	font-optical-sizing: auto;
    font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0.8em;
}

h3 {
	  font-family: "Gluten", cursive;
    font-size: clamp(1.3rem, 1.15rem + 0.9vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: 0.6em;
	color:var(--blauw);
}

h4 {
    font-size: clamp(1.1rem, 1.05rem + 0.4vw, 1.4rem);
    line-height: 1.4;
    margin-bottom: 0.5em;
}


/* Base button styling */
.btn {
    position: relative;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--wit);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
    transition: left 0.5s ease;
    z-index: -1;
    border-radius: 8px;
}



.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Individual button colors */

.button-type1 {
    position: absolute;
    left: 0;
    bottom: 20px;
    padding: 10px 30px 10px 30%; /* 10% padding links voor tekst */
    color: white;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(
        to right,
        #9fc452 0%,
        #9fc452 10%,
        #93c260 10%,
        #93c260 20%,
        #84b86b 20%,
        #84b86b 30%,
        #67ae91 30%,
        #67ae91 40%,
        #61aaa2 40%,
        #61aaa2 50%,
        #53a4b2 50%,
        #53a4b2 60%,
        #419cc0 60%,
        #419cc0 70%,
        #3496d0 70%,
        #3496d0 80%,
        #008dcd 80%,
        #008dcd 90%,
        #0783c6 90%,
        #0783c6 100%
    );
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 50px),
        calc(100% - 20px) 100%,
        0 100%
    ); /* schuine hoek rechtsboven */
    transition: transform 0.2s, filter 0.2s;
}

.button-type1:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* hover effect voor dynamiek */
.button-type1:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Kleine variant van de knop voor gebruik in tekstblokken */
.button-type2 {
    position: relative; /* absolute hoeft niet in een tekstblok */
    display: inline-block;
    padding: 10px 20px 10px 20px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    background: linear-gradient(
        to right,
        #9fc452 0%,
        #9fc452 10%,
        #93c260 10%,
        #93c260 20%,
        #84b86b 20%,
        #84b86b 30%,
        #67ae91 30%,
        #67ae91 40%,
        #61aaa2 40%,
        #61aaa2 50%,
        #53a4b2 50%,
        #53a4b2 60%,
        #419cc0 60%,
        #419cc0 70%,
        #3496d0 70%,
        #3496d0 80%,
        #008dcd 80%,
        #008dcd 90%,
        #0783c6 90%,
        #0783c6 100%
    );
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 47px),
        calc(100% - 15px) 100%,
        0 100%
    ); /* schuine hoek iets kleiner */
    transition: transform 0.2s, filter 0.2s;
}

.button-type2:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}


.btn-geel {
    background-color: var(--geel);
}

.btn-blauw {
    background-color: var(--blauw);
}

.btn-rood {
    background-color: var(--rood);
}

.btn-donkergroen {
    background-color: var(--donkergroen);
}

.btn-groen {
    background-color: var(--groen);
    color: var(--zwart);
}
.btn-groen:hover {
    color: var(--wit);
}

.btn-paars {
    background-color: var(--paars);
}

.btn-oranje {
    background-color: var(--oranje);
}

.btn-zwart {
    background-color: var(--zwart);
}

/* Gradient border variant */
.btn-gradient-border {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    color: var(--zwart);
    background-color: var(--wit);
    background-clip: padding-box;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.btn-gradient-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient-border:hover::before {
    opacity: 1;
}

.btn-gradient-border:hover {
    color: var(--wit);
    background: linear-gradient(90deg, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

/* Animated gradient variant */
.btn-animated {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--wit);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: all 0.4s ease;
    text-decoration: none;
    overflow: hidden;
}

.btn-animated:hover {
    background-position: 0 0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-animated-geel {
    background-image: linear-gradient(90deg, var(--geel) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

.btn-animated-blauw {
    background-image: linear-gradient(90deg, var(--blauw) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

.btn-animated-rood {
    background-image: linear-gradient(90deg, var(--rood) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

.btn-animated-donkergroen {
    background-image: linear-gradient(90deg, var(--donkergroen) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

.btn-animated-groen {
    background-image: linear-gradient(90deg, var(--groen) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

.btn-animated-paars {
    background-image: linear-gradient(90deg, var(--paars) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}

.btn-animated-oranje {
    background-image: linear-gradient(90deg, var(--oranje) 50%, #f8af41, #e94539, #be1d2e, #64318a, #0783c6, #1275bb, #39b072, #8dc044, #d5da2e);
}


.top-bar {
    background: var(--header-gradient);
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 25px;
    margin-left: 30%;
}
.logo {margin-top:-50px; width:100%; max-width:320px;}
.logo img {
    max-width: 450px; /* Iets verkleind voor betere fit */
	width:100%;
    height: auto;
    display: block;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Nummer standaard zichtbaar (desktop) */
.phone-text {
    display: inline;
}

/* Icoon klikbaar maken */
.phone-link {
    text-decoration: none;
}

/* Content Scroller - DIT DEEL SCROLLT */
.content-scroller {
    flex: 1; /* Pakt alle overgebleven ruimte tussen header en footer */
    
}

.icon-bol {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  background: var(--wit);
  color: #0783c6;

  border-radius: 50%;
  font-size: 18px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;

 font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.85rem);
  line-height: 1;

  color: var(--wit);

  background: transparent;
  padding: 0;

  border-radius: 999px;
}

/* UL reset */
.breadcrumb ul {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  list-style: none;
  padding: 0;
  margin: 0;
}

/* LI */
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  white-space: nowrap;
}

/* =========================
   BREADCRUMB – VOLLEDIG
   ========================= */

.breadcrumb {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--wit);
}

/* Home icoon */
.breadcrumb .icon-bol {
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.9;
}

/* UL reset + flex wrap */
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px; /* verticaal | horizontaal */
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

/* LI */
.breadcrumb li {
  display: flex;
  align-items: center;
  max-width: 100%;
}

/* Scheidingsteken */
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 6px;
  opacity: 0.6;
  font-size: 12px;
  flex-shrink: 0;
}

/* Links */
.breadcrumb a {
  color: var(--wit);
  text-decoration: none;
  opacity: 0.85;
  white-space: nowrap;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Tekst afbreken */
.breadcrumb a,
.breadcrumb span {
  overflow-wrap: break-word;
  word-break: normal;
}

/* Alleen laatste breadcrumb mag wrappen */
.breadcrumb li:last-child {
  white-space: normal;
  font-weight: 500;
  opacity: 0.9;
}

.breadcrumb li:not(:last-child) {
  white-space: nowrap;
}

/* =========================
   MOBIEL
   ========================= */

@media (max-width: 700px) {
  .breadcrumb {
    font-size: 12px;
  }

  .breadcrumb ul {
    line-height: 1.4;
  }

  .breadcrumb .icon-bol {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}





.container-inner {
    max-width: 1600px; /* Iets minder breed voor betere leesbaarheid */
    margin: 0 auto;
    padding: 0;
}
.kleur {
  background:var(--footer-gradient);
	width:100%;
	height:auto;
	    border-radius: 0 0 40px 40px;
}



.hero-text.rechts {border-radius: 40px 0px 0px 40px; box-shadow: 6px 0 15px rgba(0, 0, 0, 0.08); overflow: hidden;}


.hero-image.links img {border-radius: 0px 40px 40px 0px; box-shadow: -6px 0 15px rgba(0,0,0,0.08);}
.hero-image.links {box-shadow: none;border-radius: 0 0 40px 0;}


/* Hero blokken compacter maken */
.hero-grid {
    align-items: start;  
}

.hero-text, .hero-image {
    min-height: auto !important;  /* Verwijdert vaste minimumhoogte */
   
}

.hero-image img {
    height: auto !important;  /* Zorgt dat de afbeelding niet wordt uitgerekt */
    max-height: 100%;         /* Limiteert de hoogte tot de ouder */
}


.hero-grid {
    display: flex;             /* zet de twee hero-cards naast elkaar */
    align-items: flex-start;   /* bovenkant uitlijnen */
  
}

.hero-card.hero-text {
    flex: 1;                   /* neemt beschikbare ruimte in */
}

.hero-card.hero-image {
    flex: 1;                   /* evenveel ruimte als de tekst */
    max-height: 100%;           /* past aan containerhoogte */
}

.hero-card.hero-image img {
    width: 100%;               /* afbeelding past in de hero-card */
    height: 100%;              /* past hoogte aan de container */
    object-fit: cover;         /* afbeelding netjes inschalen zonder vervormen */
}


/* Hero grid: twee kolommen, hoogte automatisch gebaseerd op text */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #fff;
    align-items: stretch; /* zorgt dat beide kolommen dezelfde hoogte hebben */
	
}

/* Hero tekst: padding bepaalt de hoogte */
.hero-text {
    background: var(--groen);
    color: white;
    padding: 50px 15% 50px 50px; /* padding bepaalt hoogte */
    border-radius: 0px 40px 40px 0px;
    box-shadow: -6px 0 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-text {
  animation: slideInFromRight 1s ease-out;
  animation-delay: 0.3s; /* Komt 0.3 seconde later */
  opacity: 0; /* Belangrijk: start onzichtbaar voor de delay */
  animation-fill-mode: forwards; /* Blijft zichtbaar na animatie */
}

.hero-image {
  animation: slideInFromRight 1s ease-out;
}


/* Sterretjes rechtsboven */
.hero-text::after {
    content: '';
    position: absolute;
    bottom:-40px;
    right: 20px;
    width: 420px;
    height: 420px;
    background-image: url(../images/popje_naar_rechts.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    pointer-events: none;
	    z-index: -1;

}

/* Sterretjes rechtsboven zwart – alleen variant5 */
.hero-card.hero-text.variant2::after
 {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 444px;
    height: 342px;
    background-image: url(../images/popje_naarlinks.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    pointer-events: none;
}



.hero-text h1 {
    font-family: "Gluten", cursive;
    margin-bottom: 25px;
}
.hero-image {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative; /* Zorgt dat de absolute afbeelding hierbinnen blijft */
    border-radius: 40px 0 0 40px;
    /* Verwijder eventuele vaste hoogtes als die er staan */
    min-height: 0; 
}
.hero-image img {
    position: absolute; /* Haalt de foto uit de hoogtemeting */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Vult de volledige hoogte die de tekst-kolom creëert */
    object-fit: cover; /* Zorgt dat de foto netjes snijdt en niet vervormt */
    display: block;
    border-radius: 40px 0 0 40px;
}
.hero-image::after {
  content: '';
  position: absolute;

  bottom: -100px;           /* steekt boven het vlak uit */
  right: -20px;         /* steekt rechts uit */

  width: 40%;
  height: 75%;

 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;

  pointer-events: none;
}


.hero-image img {
 width: 100%;
    /* DIT ZORGT DAT DE AFBEELDING MEEGROEIT: */
    height: 100%; 
    object-fit: cover; 
    border-radius: 40px 0px 0px 40px;
    box-shadow: -6px 0 15px rgba(0,0,0,0.08);
    display: block;
}

.star-decor {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.8;
}


/* Container met gradient en afgeronde bovenhoeken */
.custom-container {
    background: var(--footer-gradient);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 30px 20px; /* ruimte rondom de blokken */
	    margin: 40px 0;
}

/* Inner wrapper om flex te gebruiken voor drie blokken */
.custom-inner {
	max-width: 1600px;
	margin:0 auto;
    display: flex;
    gap: 20px; /* ruimte tussen de blokken */
    justify-content: space-between;
    flex-wrap: wrap; /* zorgt dat het op mobiel netjes onder elkaar valt */
}

/* Elk individueel blok */
.custom-block {
    background: #fff;
    flex: 1 1 calc(33.333% - 13.33px); /* 3 blokken met gap correct */
    padding: 20px 20px 90px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}
.custom-block h3 {
	    font-family: "Gluten", cursive;
    font-size: clamp(2.3rem, 2.15rem + 1.9vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 0.2em;
    color: var(--blauw);
    font-weight: 500;
}
.custom-block img {  border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 100%;
    height: auto;
}

/* Mobiel: blokken onder elkaar */
@media (max-width: 768px) {
    .custom-block {
        flex: 1 1 100%;
    }
}

/* Container met gradient en afgeronde bovenhoeken */
.custom2-container {
     border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 30px 20px; /* ruimte rondom de blokken */
	    margin: 40px 0;
}

/* Inner wrapper om flex te gebruiken voor drie blokken */
.custom2-inner {
	max-width: 1200px;
	margin:0 auto;
 
}
.custom2-inner h2 {    font-family: "Gluten", cursive;
    font-size: clamp(2.3rem, 2.15rem + 1.9vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 0.6em;
    color: var(--blauw);
    font-weight: 500;
text-align:center;
}
.custom2-inner p {font-weight:bold;    text-align: center;}


/* Wrapper voor #ccc zijkanten op brede schermen */
.custom3-outer {
     margin-bottom: 40px;
  width: 100%;
 padding:0;
	    background-color: #dae8bb;
    border-radius: 40px 40px 0 0;
}

.custom3 {
  max-width: 1600px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
    padding: 0 20px 0px;
    margin-bottom: 28px;
}

/* RIJ: 2 blokken naast elkaar */
.custom3-row {
  display: flex;
  gap: 20px;
}

.custom3-block {
  flex: 1;          /* ← was width: 100%, nu flex: 1 zodat ze 50/50 naast elkaar passen */
  min-height: 480px;
  overflow: hidden;
  display: flex;
}

  /* === BLOK BASIS === */
  .custom3-block {
    display: flex;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
  }

  /* === FOTO === */
  .custom3-block .photo {
    flex: 0 0 50%;
    width: 50%;
    overflow: hidden;
  }

  .custom3-block .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* === TEKST === */
  .custom3-block .text {
    flex: 0 0 50%;
    width: 50%;
    padding: 60px 50px 80px 50px;
    position: relative;
  display: flex;
    /* flex-direction: column; */
    justify-content: left;
  }

  .custom3-block .text h3 {
    margin-bottom: 16px;
    color: #fff;
 
  }

  .custom3-block .text p {
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    max-width: 480px;
  }

  /* === KLEUREN per blok positie === */
  /* Linksboven (1e blok) = photo-right → tekst links */
  .custom3-block.pos-1 .text { background: #84b96b; }
  /* Rechtsboven (2e blok) = photo-right → tekst links */
  .custom3-block.pos-2 .text { background: #66ae91; }
  /* Linksonder (3e blok) = photo-left → tekst rechts */
  .custom3-block.pos-3 .text { background: #52a5b3; }
  /* Rechtsonder (4e blok) = photo-left → tekst rechts */
  .custom3-block.pos-4 .text { background: #3f9dc0; }

  /* === BORDER RADIUS ===
     photo-left blokken (foto links, tekst rechts):
       foto: rechtsboven + rechtsonder = 20px
       tekst: linksboven + linksonder = 20px
  */
  .custom3-block.photo-left .photo {
    border-radius: 0 20px 20px 0;
  }
  .custom3-block.photo-left .text {
    border-radius: 20px 0 0 20px;
  }

  /* photo-right blokken (tekst links, foto rechts):
       tekst: rechtsboven + rechtsonder = 20px
       foto: linksboven + linksonder = 20px
  */
  .custom3-block.photo-right .text {
    border-radius: 0 20px 20px 0;
  }
  .custom3-block.photo-right .photo {
    border-radius: 20px 0 0 20px;
  }

  /* === KNOP STANDAARD (foto links, tekst rechts) — knop links === */
  .button-type1 {
    position: absolute;
    left: 0;
    bottom: 20px;
    padding: 14px 40px 14px 30%;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 20px) 100%,
      0 100%
    );
    transition: transform 0.2s, filter 0.2s;
    display: inline-block;
    cursor: pointer;
  }

  .button-type1:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
  }

  /* Knopkleur = iets donkerder dan blokkleur */
  .pos-3 .button-type1,
  .pos-4 .button-type1 {
    background:#fff;
	  color:#52a5b3;
  }

  /* === KNOP RECHTS (photo-right: tekst links, foto rechts) ===
     Knop aan de rechterkant, tegen de foto aan.
     Schuine hoek linksonder (spiegeling).
  */
  .custom3-block.photo-right .button-type1 {
    left: auto;
    right: 0;
    padding: 14px 30% 14px 40px;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      20px 100%,
      0 calc(100% - 50px)
    );
      background: #fff;
   
  }

  .pos-1 .button-type1,
  .pos-2 .button-type1 {
       background: #fff;
    color: #84b96b;
  }

  /* === MOBIEL === */
  @media (max-width: 768px) {
	  
	   .custom3-row {
    flex-direction: column;
  }
	  
    .custom3-block {
      flex-direction: column;
      min-height: unset;
    }

    .custom3-block .photo,
    .custom3-block .text {
      flex: unset;
      width: 100%;
    }

    .custom3-block .photo {
      height: 260px;
      order: 0;
    }

    .custom3-block .text {
      order: 1;
      padding: 40px 30px 80px 30px;
    }

    /* Reset border radius mobiel */
    .custom3-block .photo,
    .custom3-block .text {
      border-radius: 0 !important;
    }

    /* Knop reset naar links op mobiel */
    .custom3-block.photo-right .button-type1 {
      left: 0;
      right: auto;
      padding: 14px 40px 14px 30%;
      clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 50px),
        calc(100% - 20px) 100%,
        0 100%
      );
    }
  }


/* Container netjes inline-flex */
#mx_search_form form {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Input veld mooi afgerond */
#mx_search_form input[type="text"] {
    flex: 1;
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
    outline: none;
}

/* Knop met vergrootglas */
.search-btn {
    background-color: var(--wit);
    border: none;
    border-radius: 50%;
      width: 30px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Icoon wit */
.search-btn i {
    color: var(--wit);
    font-size: 1rem;
}

/* Hover effect */
.search-btn:hover {
    background-color: var(--blauw);
    transform: scale(1.05);
}

/* Footer basis */
.footer-thin {
    display: grid;
    grid-template-columns: 4fr 1fr auto;
    gap: 40px;
    padding: 40px 20px;
    font-size: 0.9rem;
    align-items: start;
	color:#fff;
		    margin-bottom: 70px;
}
.footer-thin a {color:#fff;}

.footer-logo img {
    width: 256px;      
    height:auto;  
    display: block;
    object-fit: contain; 
}
.footer-left address {    margin-left: 120px;}
.footer-left .footer-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
 
}

.footer-right .footer-logo img {
        width: 100%;
    max-width: 200px;
    height: auto;
 
}


/* Linker blok */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-left address {
    font-style: normal;
    line-height: 1.6;
}

/* Middenblok */
.footer-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* ⬅ alles naar onder */
    gap: 6px;
    height: 100%;
    max-width: 312px;
	}

.footer-center p {
    margin: 0;
    line-height: 1.6;
}

/* Rechterblok */
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* ⬅ alles naar onder */
    gap: 6px;
    height: 100%;
}

/* ===============================
   BLOCKQUOTE
   =============================== */

blockquote {
    position: relative;
    margin: 1.8em 0;
    padding: 28px 32px 28px 56px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4eb 100%);
    border-left: none;
    border-radius: 0 20px 20px 0;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.07);
    font-style: italic;
    color: var(--zwart);
}

/* Gradient streep links */
blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 6px 0 0 6px;
    background: linear-gradient(to bottom, #0783c6, #61aaa2, #84b86b);
}

/* Aanhalingsteken */
blockquote::after {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 18px;
    font-family: "Gluten", cursive;
    font-size: 3.5rem;
    line-height: 1;
    color: #84b86b;
    opacity: 0.6;
    pointer-events: none;
}

blockquote p {
    margin: 0 0 0.5em 0;
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
    line-height: 1.7;
}

blockquote p:last-of-type {
    margin-bottom: 0;
}

/* Optionele bronvermelding via <cite> */
blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.85em;
    font-style: normal;
    font-weight: 600;
    color: #0783c6;
}

blockquote cite::before {
    content: '— ';
    opacity: 0.6;
}

/* ---- Blockquote binnen .hero-text ---- */
.hero-text blockquote {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: #fff;
}

.hero-text blockquote::after {
    color: rgba(255, 255, 255, 0.5);
}

.hero-text blockquote p {
    color: rgba(255, 255, 255, 0.92);
}

.hero-text blockquote cite {
    color: rgba(255, 255, 255, 0.75);
}



/* ===============================
   LIST STYLING – alleen binnen .hero-text
   =============================== */

.hero-text ul,
.hero-text ol {
    margin: 0 0 1.2em 0;
    padding: 0;
    list-style: none;
}

.hero-text li {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 0.5em;
    padding-left: 1.8em;
    position: relative;
}

/* Ongeordende lijst – wit bolletje */
.hero-text ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

/* Geneste ul – kleiner bolletje */
.hero-text ul ul > li::before {
    width: 7px;
    height: 7px;
    top: 0.52em;
    background: rgba(255, 255, 255, 0.5);
}

/* Geordende lijst – witte cirkeltjes met nummer */
.hero-text ol {
    counter-reset: site-counter;
}

.hero-text ol > li {
    counter-increment: site-counter;
    padding-left: 2.2em;
}

.hero-text ol > li::before {
    content: counter(site-counter);
    position: absolute;
    left: 0;
    top: 0.05em;
    width: 1.5em;
    height: 1.5em;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 700;
    font-size: 0.75em;
    line-height: 1.5em;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (min-width:1150px) and (max-width:1775px) {
	.logo {
	    margin-top: -128px;
	    width: 100%;
	    max-width: 182px;
	}

	.navbar {
	    padding: 15px 5px !important;
	}
}
@media (min-width:992px) and (max-width:1149px) {
.logo img {
    max-width: 450px;
    width: 236px;
    height: auto;
    display: block;
    position: absolute;
    top: -56px;
}

	}

/* Responsive */
@media (max-width: 992px) {
	
	.logo {
    margin-top: 0;
    width: 100%;
    max-width: 320px;
}
	
    .footer-thin {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
.footer-center {
        max-width: 100%;
	width: 312px;
        margin: 0 auto;
    }
	.footer-left address {
        margin-left: 0;
    }


    .footer-left,
    .footer-center,
    .footer-right {
    
        justify-content: center;   /* verticaal centreren */
        align-items: center;       /* horizontaal centreren */
        text-align: center;
 
    }
}





	@media (max-width: 992px) {
    .hero-image {
        height: 300px; /* Of een andere gewenste hoogte voor mobiel */
    }
    .hero-image img {
        position: relative; /* Zet hem weer terug in de flow voor mobiel */
        height: 100%;
		border-radius: 0 0 40px 40px;
    }
}


/* Mobiel */
@media (max-width: 680px) {
	

	
	
  .hero-text,
  .hero-image {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

}
	
	
   




/* Vaste Footer */
.main-footer {
    background: var(--footer-gradient);
    color: white;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
     font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.9rem);
    flex-shrink: 0; /* Cruciaal: zorgt dat footer altijd onderaan blijft staan */
    z-index: 10;
	position: fixed;
    bottom: 0;
    width: 100%;
	    border-radius: 40px 40px 0 0;
	
}

/* Container voor de icoontjes */
.social-icons {
    display: flex;
    gap: 12px; /* De afstand tussen de rondjes */
    align-items: center;
}

.social-icons a[href]:has(i.fa-linkedin-in) {
    display: none;
}

/* De witte rondjes (de <a> tags) */
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;            /* Breedte van het rondje */
    height: 32px;           /* Hoogte van het rondje */
    background-color: white;
    border-radius: 50%;     /* Maakt het een perfecte cirkel */
    text-decoration: none;
    transition: all 0.3s ease; /* Voor een soepele hover */
}

/* De icoontjes zelf (FontAwesome i-tags) */
.social-icons a i {
    color: #0783c6;        /* Een kleur uit je gradient (bijv. paars/blauw) */
    font-size: 16px;       /* Grootte van het icoontje binnen het rondje */
}

/* Hover effect: het rondje wordt iets groter of verandert licht van kleur */
.social-icons a:hover {
    transform: scale(1.1);
    background-color: #f1f1f1; /* Iets grijzer op hover */
}

/* Zorg dat de social-search container alles netjes uitlijnt */
.social-search {
    display: flex;
    align-items: center;
    gap: 20px; /* Afstand tussen de social media groep en de search box */
}


/* Mobile Menu & Search */
.social-search { display: flex; align-items: center; gap: 20px; }
.search-box {  border-radius: 20px; padding: 2px 10px; display: flex; align-items: center; }
.search-box input { border: none; outline: none; width: 80px; }
.search-box i { color: #39b54a; }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--blauw); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 998; display: none; backdrop-filter: blur(4px); }
.mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: white; z-index: 999; padding: 40px 20px; transition: 0.4s ease; }
.mobile-drawer.active { left: 0; }
.close-menu { font-size: 2.5rem; position: absolute; top: 10px; right: 20px; cursor: pointer; }
.mobile-links { list-style: none; margin-top: 40px; }
.mobile-links li { margin: 20px 0; }
.mobile-links a { text-decoration: none; font-size: 1.2rem; color: var(--blauw); font-weight: bold; }

/* Mobiele Responsiveness */
@media (max-width: 992px) {
  .hero-image, .hero-image.links { border-radius: 0 0 40px 40px;box-shadow: none;  }
	.hero-image.links img {border-radius: 40px 40px 0px 0px; box-shadow: none; }
.hero-image.links {box-shadow: none; border-radius: 40px 40px 0px 0px; height: 20vh;
        min-height: 20vh;}
.hero-image {    border-radius: 40px 40px 0px 0px; box-shadow: none;height: 20vh !important;
        min-height: 20vh;}	
.hero-text.rechts {    border-radius: 0 0px 40px 40px; box-shadow: none}	
	
	.hero-text, .hero-image {height: auto; min-height: inherit;}
	.hero-image {border-radius: 0 0 40px 40px;}
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .top-bar { margin-left: 0; border-radius: 0; }
    .hero-grid { grid-template-columns: 1fr;}
    .hero-text { border-radius: 40px 40px 0 0; }
  
}

@media (max-width: 680px) {
 .navbar {
        position: relative !important;
	     padding: 37px 5% !important;
    }

    .navbar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
	.logo {
    margin-top: -8px;
    width: 148px;
}
	.mobielfooter .breadcrumb {display: none;} 
	.homebreadcrumb {display: inherit !important; overflow: hidden;}
	.hero-text::after {
  display:none;
    top: -25px;
    right: -48px;
	}
	.hero-image.links::after {
     top: 11px !important;
    right: 20px !important;
    width: 60px !important;
    height: 120px !important;
	}
	
	    .phone-text {
        display: none; /* nummer verbergen */
    }

    .phone-link {
        display: inline-flex;
    }

    .phone-link .icon-bol {
        cursor: pointer;
    }
	.phone-link .icon-bol:hover {
        transform: scale(1.1);
    }

}

