:root {
	--geel: #f8af41;
	--lichtgeel: #f6e3b6;
	--blauw:#1275bb;
	--lichtblauw:#e4e9f7;
	--rood:#be1d2e;
	--lichtrood:#f5e1db;
	--donkergroen: #39b072;
	--lichtdonkergroen:#e9f4eb;
	--groen:#d5da2e;
	--lichtgroen:#f8fae7;
	--paars:#64318a;
	--lichtpaars:#f1eef7;
	--oranje:#e9511c;
	--lichtoranje:#efc0b0;
	--wit: #ffffff;
	--zwart:#333333;
    /* Jouw nieuwe kleurrijke gradient */
    --header-gradient: linear-gradient(90deg, #f8af41,#e94539, #be1d2e, #64318a, #2b3b8e, #1275bb, #39b072, #8dc044, #d5da2e);
    --footer-gradient: linear-gradient(90deg, #f8af41,#e94539, #be1d2e, #64318a, #2b3b8e, #1275bb, #39b072, #8dc044, #d5da2e);
}

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

html, body {
    height: auto;
   
}
a {
    color: var(--zwart);
   	text-decoration: underline;
   
}
a:hover { 
     	text-decoration: none;
	}
body {
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    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: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
    font-size: clamp(2rem, 1.6rem + 2vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0.8em;
}

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

h3 {
    font-size: clamp(1.3rem, 1.15rem + 0.9vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: 0.6em;
}

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, #2b3b8e, #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 */
.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, #2b3b8e, #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, #2b3b8e, #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, #2b3b8e, #1275bb, #39b072, #8dc044, #d5da2e);
}

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

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

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

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

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

.btn-animated-oranje {
    background-image: linear-gradient(90deg, var(--oranje) 50%, #f8af41, #e94539, #be1d2e, #64318a, #2b3b8e, #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%;
}
.logo2 {display:none;}
.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: #2b3b8e;

  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-color: var(--lichtgeel);
	width:100%;
	height:auto;	
}



.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;}




.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #fff;
    /* Dwingt beide kolommen om altijd even hoog te zijn */
    align-items: stretch; 
}

.hero-text {
     background: var(--geel);
    color: white;
    padding: 50px;
    border-radius: 0px 40px 40px 0px;
    box-shadow: -6px 0 15px rgba(0,0,0,0.08);
    position: relative;
    /* Gebruik flex binnen de tekstkaart om content netjes te verdelen */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    min-height: 65vh;
	
	padding-right: 15%;
}

@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;

  top: 20px;           /* steekt boven het vlak uit */
  right: 20px;         /* steekt rechts uit */

  width: 120px;
  height: 120px;

  background-image: url(../images/4_strerretjes_wit.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;

  pointer-events: none;
}

/* Sterretjes rechtsboven zwart – alleen variant5 */
.hero-card.hero-text.variant5::after  {
  content: '';
  position: absolute;

  top: 20px;
  right: 20px;

  width: 120px;
  height: 120px;

  
  background-image: url("../images/4 strerretjes_groen.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;

  pointer-events: none;
}



.hero-text h1 {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 25px;
}
.hero-image {
	min-height: 65vh;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 0 15px rgba(0, 0, 0, 0.08);
    display: flex; 
}
.hero-image::after {
  content: '';
  position: absolute;

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

  width: 40%;
  height: 75%;

  background-image: url(../images/beeldmerk_wit_rechts_heel.svg);
  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 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-thin {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 0.8rem 20px; /* dunne footer */
    font-size: 0.85rem;
	margin-top:60px;
	    margin-bottom: 40px;
}

/* Logo */
.footer-logo img {
    max-height: 36px;
    width: auto;
    display: block;
}

/* Info naast elkaar */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.footer-info span {
    white-space: nowrap;
}

.footer-info a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.footer-info a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-thin {
      padding-bottom: 50px;
    }
}


/* Mobiel */
@media (max-width: 680px) {
	
  .hero-text,
  .hero-image {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

}
	
	
    .footer-thin {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        text-align: center;
		padding-bottom: 80px;
    }

    .footer-info {
        justify-content: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }
}






/* 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%;
	
}

/* 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: #2b3b8e;        /* 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.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.rechts {    border-radius: 40px 40px 0px 40px; box-shadow: none}	
.hero-text.rechts {    border-radius: 0 0px 40px 40px; box-shadow: none}	
	
	.hero-text, .hero-image {height: auto; min-height: 35vh;}
	.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;        margin-bottom: 120px; }
    .hero-text { border-radius: 40px 40px 0 0; }
    .hero-image img { border-radius: 0 0 40px 40px;  }
}

@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);
    }

}

