/* style.css */

/* General Styles - School Variant */

  :root {
    --primary-color: #e61873; /* rose - hoofdaccent */
    --secondary-color: #34abe2; /* lichtblauw */
    --accent-color: #c5deb4; /* Lichte groen */
    --highlight-color: #2b2e83; /* donkerblauw knoppen */
	--paars: #951b81;
	--groen:#12a19a;
    --text-dark: #2E2E2E; /* Donkergrijs voor tekst */
    --text-light: #555;   /* Medium grijs voor subtiele tekst */
    --bg-light: #FFFFFF;  /* Wit achtergrond */
    --bg-medium: #fef5e8; /* Lichtoranje als tussenlaag */
    --border-color: #D1D1D1; /* Zacht grijs voor randen */

    --font-primary: "Open Sans", sans-serif;
	--font-headers: "Halant", serif;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.06);
    --border-radius: 8px;

  /* Font sizes  (desktop baseline) */
  --fs-h1: 2.5rem;   /* ~40px */
  --fs-h2: 2rem;     /* ~32px */
  --fs-h3: 1.5rem;   /* ~24px */
  --fs-h4: 1.25rem;  /* ~20px */
  --fs-body: 1rem;   /* 16px */
  --fs-body-small: 0.9375rem; /* 15px */
  --fs-micro: 0.8125rem;      /* 13px */

  /* Line heights */
  --lh-heading: 1.15;
  --lh-body: 1.55;
  --lh-micro: 1.4;
}

.streep {border-bottom:solid 8px #e61873;}
.halant-light {
  font-family: "Halant", serif;
  font-weight: 300;
  font-style: normal;
}

.halant-regular {
  font-family: "Halant", serif;
  font-weight: 400;
  font-style: normal;
}

.halant-medium {
  font-family: "Halant", serif;
  font-weight: 500;
  font-style: normal;
}

.halant-semibold {
  font-family: "Halant", serif;
  font-weight: 600;
  font-style: normal;
}

.halant-bold {
  font-family: "Halant", serif;
  font-weight: 700;
  font-style: normal;
}

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}




body {
  font-family: var(--font-family-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: 0;
  color: #9dd7ec; /* aanpasbaar aan huisstijl */
}

/* 2. Headings */

.rose {background-color: var(--primary-color);}
.groen {background-color:var(--accent-color);}
.groen {
  position: relative; /* nodig voor absoluut gepositioneerde ::after */
  overflow: hidden;   /* voorkomt dat de afbeelding buiten de div steekt */
}

.groen::after {
content: "";
    position: absolute;
    top: 0;
    right: -10%;
    width: 100%;
    height: 100%;
    background-image: url(../images/Figuur_inGroen_NietAfgesneden.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right center;
    pointer-events: none;
}

.h1,
h1 {
	font-family: var(--font-headers);
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  font-weight: 800;
  letter-spacing: -0.03em; /* compact, meer blokgevoel */
}

.h2,
h2 {
		font-family: var(--font-headers);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
   letter-spacing: -0.025em;
}

.h3,
h3 { 
		font-family: var(--font-headers);
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
   letter-spacing: -0.02em;
}

.h4,
h4 {
		font-family: var(--font-headers);
  font-size: var(--fs-h4);
  line-height: var(--lh-heading);
   letter-spacing: -0.01em;
}

/* 3. Body & paragrafen */

.p,
body p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 1em;
}

ul {
  list-style-type: disc;        /* standaard bolletje */
  margin: 0 0 1em 1.5em;        /* ruimte links en onder */
  padding: 0;
}
ol {
    list-style-type: decimal;
    margin: 0 0 1em 1.5em;
    padding: 0;
}

li {
  margin-bottom: 0.5em;         /* ruimte tussen regels */
  line-height: 1.5;
}


.p--small {
  font-size: var(--fs-body-small);
  line-height: var(--lh-body);
}

/* 4. Buttons */

.btn-link {
  font-family: var(--font-family-base);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  padding: 0.85em 1.5em;
 -webkit-border-radius: 30px;
-webkit-border-bottom-right-radius: 80px;
-webkit-border-bottom-left-radius: 80px;
-moz-border-radius: 30px;
-moz-border-radius-bottomright: 80px;
-moz-border-radius-bottomleft: 80px;
border-radius: 30px;
border-bottom-right-radius: 80px;
border-bottom-left-radius: 80px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	    background-color: #ffffff;
    color: #fff;
	
	
}

/* kleuren aan te passen aan huisstijl */
.btn--primary {
  background-color: #9dd7ec;
  color: #ffffff;
}

.btn--secondary {
  background-color: #ffffff;
  color: #9dd7ec;
  border: 1px solid #9dd7ec;
}

/* 5. Labels & forms */

.label,
label {
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.input,
textarea,
input,
select {
  font-family: var(--font-family-base);
  font-size: 0.9375rem;
  line-height: 1.4;
}

/* 6. Microcopy (hints, foutmeldingen, etc.) */

.microcopy {
  font-size: var(--fs-micro);
  line-height: var(--lh-micro);
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.8;
}

/* 7. Responsieve aanpassing (mobiel) */

@media (max-width: 768px) {
  :root {
    --fs-h1: 2rem;   /* ~32px */
    --fs-h2: 1.75rem;
    --fs-h3: 1.375rem;
    --fs-h4: 1.125rem;
  }

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

body {
    font-family: var(--font-primary);
    color: var(--highlight-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    color: var(--primary-color);
    margin-bottom: 0.8em;
    line-height: 1.2;
	font-weight: 400;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; center; margin-bottom: 1.5em; }
.werkwijze h2  { font-size: 2.2em; text-align: center; margin-bottom: 1.5em; }
h3 { font-size: 1.6em; }

p {
    margin-bottom: 1em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*.btn-link {
    display: inline-block;
    padding: 0.5em 0;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}*/

/* ==========================
   STICKY MENU STYLING
   ========================== */

/* Header */

.main-header {
     background-color: #fff;
   /* box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
    position: relative;
    z-index: 100;
    

}

.top-bar {
       background-color: var(--bg-medium);
    color: #000;
    padding: 10px 0;
    font-size: 0.85em;
	position: relative;
    z-index: 996;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-links a,
.social-media a {
    color: #000;
    margin-right: 15px;
}

.top-links a:last-child,
.social-media a:last-child {
    margin-right: 0;
}

.top-links i,
.social-media i {
       margin-right: 3px;
    font-size: 18px;
    color: #000;
}
.header-bottom {background-color:var(--bg-medium);}
/* Fixed position als fallback */
.header-bottom.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
	
}
.divider {
       background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI1NHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTEyODAgODZjLTE5LjktMTcuMjEtNDAuMDgtMzkuNjktNzkuODktMzkuNjktNTcuNDkgMC01Ni45MyA0Ni41OS0xMTUgNDYuNTktNTMuNjEgMC01OS43Ni0zOS42Mi0xMTUuNi0zOS42MkM5MjMuNyA1My4yNyA5MjQuMjYgODcgODUzLjg5IDg3Yy04OS4zNSAwLTc4Ljc0LTg3LTE4OC4yLTg3QzU1NCAwIDU0My45NSAxMjEuOCA0MjMuMzIgMTIxLjhjLTEwMC41MiAwLTExNy44NC01NC44OC0xOTEuNTYtNTQuODgtNzcuMDYgMC0xMDAgNDguNTctMTUxLjc1IDQ4LjU3LTQwIDAtNjAtMTIuMjEtODAtMjkuNTF2NTRIMTI4MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 54px;
    bottom: 0;
    height: 54px;
    z-index: 1;
    transform: scale(1, 1);
    z-index: 99;
    width: 100%;
    position: absolute;
	filter: brightness(0) saturate(100%) invert(24%) sepia(76%) saturate(7050%) hue-rotate(324deg) brightness(94%) contrast(91%);
}

/* Styling wanneer er gescrolled is */
.header-bottom.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo styling met transitie */
.logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}
.logo-mobiel img {
       height: 88px;
    width: auto;
    padding: 6px;
    transition: height 0.3s ease;
}
   
	.logo-mobiel {
	display:none;
}

.header-bottom.scrolled .logo img {
    height: 40px;
	padding:0
}




.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

.contact-info i {
    font-size: 1.2em;
}

.logo img {
      height: 132px;
    width: auto;
    padding: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg-medium);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.social-icons a i { /* Styling voor Line Awesome iconen */
    font-size: 1.2em;
}
/* Page Header met foto en CTA knop */
.page-header {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
	
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.page-header-content h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border-bottom: none;
}

.page-header-content p {
    font-size: 1.5em;
    color: var(--bg-light);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-header-content .btn {
    font-size: 1.1em;
    padding: 15px 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
/* Content sectie gesplitst in 2 delen */
.split-content-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.split-content-news-section {
    padding: 60px 0;
   
}

.split-content-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch; /* Beide kolommen even hoog maken */
}

/* Linker column */
.content-column.left {
    padding: 0 20px 20px;
}

/* Rechter column */
.content-column.right {
    background-color: var(--accent-color); /* Lichte groen */
    border-radius: 20px;
    padding: 20px 20px 200px 20px;
    display: flex;
    flex-direction: column;
    height: 100%; /* Vul volledige hoogte van grid cel */
color: var(--highlight-color);
	position: relative;
	overflow: hidden;
}

.content-column.right .btn-link {
    background-color: #2b2e83 !important;
    color: #fff !important;
}
.content-column.right:before {
   content: '';
    position: absolute;
    bottom: -113px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 51%;
    background-image: url(../images/Figuur_inGroen_NietAfgesneden.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    pointer-events: none;
	
}

/* Koppen en tekst styling */
.content-column h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

.content-column h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--highlight-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-column p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-column img {
    width: 100%;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mobiele weergave: kolommen onder elkaar */
@media (max-width: 768px) {
    .split-content-section .container {
        grid-template-columns: 1fr; /* 1 kolom */
        gap: 20px; /* kleinere afstand tussen kolommen */
    }
    
    .content-column.right {
        height: auto; /* hoogte automatisch, want geen stretch nodig */
    }
}


/* Content sectie 100% breed binnen container */
.full-width-content {
    padding: 25px 0;
    color: var(--text-light);
    background-color: var(--bg-light);
    margin: 40px 0;
}

.full-width-content .container {
    max-width: 1400px;
}

.full-width-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.full-width-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.full-width-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.full-width-content .btn {
    margin-top: 20px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
   }

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
	    display: none;
}

.slider-content h2 {
    font-family: var(--font-secondary);
    color:var(--bg-light);
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-content p {
    font-size: 1.5em;
    color:inherit;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

.nav-btn {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
  padding: 18px 20px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color var(--transition-speed);
}

.nav-btn:hover {
    background: rgba(0,0,0,0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.slider-dots .dot.active {
    background: var(--primary-color);
}

/* Grid Layout */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Parallax sectie */
.parallax-section {
    position: relative;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-image: url(../images/raamschildering.jpg);
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: visible;
}

.parallax-section .vlinder {
   position: absolute;
    right: 56px;
    top: 104px;
    transform: translateY(-50%);
    width: 11%;
    z-index: 2;
    pointer-events: none;
}


/* Transparante overlay */
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Zwarte transparante laag */
    z-index: 1; /* Onder de tekst, boven de achtergrond */
}

.parallax-section h3 {
       font-family: var(--font-secondary);
    color: var(--bg-light);
   font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 99; /* Zorgt dat tekst boven overlay komt */
     
    /* Minimum 1.5rem, schaalt met 4% van viewport width, maximaal 3rem */
}
.parallax-section p{ font-size: 1.5em;
    color: inherit;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	z-index: 99; /* Zorgt dat tekst boven overlay komt */  }

/* Intro Cards */
.intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Tablet: 2 kolommen */
@media (max-width: 1024px) {
    .intro-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet: 2 kolommen */
@media (max-width: 680px) {
    .intro-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.card {
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Zorgt dat de knop onderaan blijft */
    align-items: stretch; /* Tekst en knop vullen de breedte */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px; /* Consistente hoogte */
}

.card-content {
    flex-grow: 1; /* Laat de tekst het grootste deel van de ruimte innemen */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Tekst bovenaan uitlijnen */
}

/* Knop altijd onderaan */
.card p:last-child {
    margin-top: auto; /* Duwt de knop naar beneden */
}

/* Rest van je card-stijlen */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: var(--bg-light);
    /* background-image, background-size, etc. worden nu vervangen door Line Awesome */
}

.card h3 {
    color: var(--bg-light);
    margin-bottom: 0.5em;
}
.card-icon,
.card-icon-bg {
    width: 160px;
    height: 160px;
        margin: 0 auto 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Bovenliggend icoon */
.card-icon-bg::after {
    content: "";
    position: absolute;
    inset: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Vak 1 */
.card-1 .card-icon-bg {
    background-image: url("../images/Groen_achter_foto.svg");
}
.card-1 .card-icon-bg::after {
    background-image: url("../images/kroon.svg");
}

/* Vak 2 */
.card-2 .card-icon-bg {
    background-image: url("../images/Blauw_achter_foto.svg");
}
.card-2 .card-icon-bg::after {
    background-image: url("../images/agenda.svg");
}

/* Vak 3 */
.card-3 .card-icon-bg {
    background-image: url("../images/Paars_achter_foto.svg");
}
.card-3 .card-icon-bg::after {
    background-image: url("../images/Praten.svg");
}

/* Vak 4 */
.card-4 .card-icon-bg {
    background-image: url("../images/Oranje_achter_foto.svg");
}
.card-4 .card-icon-bg::after {
    background-image: url("../images/pen.svg");
}
/* Specifieke knopkleuren per card */
.card-1 .btn-link {
    background-color: #ffffff !important;
    color: #12a19a !important;
}

.card-2 .btn-link {
    background-color: #ffffff !important;
    color: #2b2e83 !important;
}

.card-3 .btn-link {
    background-color: #ffffff !important;
    color: #951b81 !important;
}

.card-4 .btn-link {
    background-color: #ffffff !important;
    color: #f39200 !important;
}



/* Werkwijze Section */
.werkwijze {
      background: var(--secondary-color);
    padding: 0px 0 80px;
 
}

.werkwijze h2 {
    color: var(--bg-light);
	padding-top: 3.5rem;
}

.werkwijze-grid {
    margin-top: 40px;
}

.werkwijze-item {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 50%;
}

.werkwijze-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.werkwijze-image-wrapper { /* Nieuwe wrapper voor ronde afbeeldingen */
    width: 150px; /* Vaste breedte */
    height: 150px; /* Vaste hoogte */
    border-radius: 50%; /* Maakt het rond */
    overflow: hidden;
    margin: 20px auto; /* Centreer de afbeelding */
    border: 6px solid var(--primary-color); /* Groene rand */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.werkwijze-item:hover .werkwijze-image-wrapper {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.werkwijze-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt ervoor dat de afbeelding de hele cirkel vult */
    object-position: center;
    transition: transform 0.3s ease;
}

.werkwijze-item:hover .werkwijze-image-wrapper img {
    transform: scale(1.1); /* Zoom effect bij hover */
}


.werkwijze-item h3 {
    color: var( --text-dark);
    padding: 0 20px;
    margin-bottom: 0.8em;
}

.werkwijze-item p {
    color: var(--text-light);
    padding: 0 20px;
    font-size: 0.95em;
}

.werkwijze-item .btn-link {
    margin-top: 15px;
}


/* Container Grid voor homepage blokken */
.blokken-homepage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* BLOCK CONTAINER - 2x2 grid layout, 100% breed */
#blokken-homepage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 62%;
     margin: 0 60px;
}
#blokken-homepage {
    align-items: stretch;
}


/* BLOCK ITEMS - Transparante achtergrond, compacte styling */

.blokken-homepage-item {
    background-color: transparent;
    border-radius: var(--border-radius);
    box-shadow: none;
    overflow: hidden;
    text-align: left;
    padding: 20px;
    transition: transform 0.3s ease;

    /* NIEUW: flex layout */
    display: flex;
    flex-direction: column;
    height: 100%;
}


.blokken-homepage-item:hover {
    transform: translateY(-5px);
}

/* Afbeelding verbergen voor block items */
.blokken-homepage-image {
    display: none;
}

/* Tekst styling voor block items */
.blokken-homepage-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blokken-homepage-content h3 {
    color: var(--highlight-color);
    padding: 0;
    margin-bottom: 0.8em;
    font-size: 2em;
}

.blokken-homepage-content p {
    color: var(--highlight-color);
    padding: 0;
    font-size: 0.9em;
}

.blokken-homepage-content .btn-link {
    margin-top: 15px;
    align-self: flex-start;
    background-color: var(--highlight-color);
}
.blokken-homepage-text {
    flex-grow: 1;
}
/* Tablet / medium screens: 2 rijen van 2 */
@media (max-width: 1024px) {
.split-content-news-section .container {
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 40px;
    align-items: start;
}
	.groen::after {
    content: "";
    position: absolute;
    top: 0;
    right: -35%;
    width: 100%;
    height: 100%;
    background-image: url(../images/Figuur_inGroen_NietAfgesneden.svg);
    background-size: 93%;
    background-repeat: no-repeat;
    background-position: right center;
    pointer-events: none;
    opacity: 0.3;
}
}

/* Mobiel: blokken onder elkaar */
@media (max-width: 600px) {
    .split-content-news-section .container {
        grid-template-columns: 1fr;
    }
	  #blokken-homepage {
    grid-template-columns: repeat(1, 1fr);
   
}
	.blokken-homepage-content h3 {
      font-size: 1.5em;
}
}



/* Over Mij Section */
.over-mij {
     margin-bottom: 80px;
    margin-top: 80px;
}

.over-mij-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.over-mij-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.over-mij-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.over-mij-item h3 {
    color: var(--primary-color);
    padding: 0 20px;
    margin-bottom: 0.8em;
}

.over-mij-item p {
    color: var(--text-light);
    padding: 0 20px;
    font-size: 0.95em;
}

.over-mij-item .btn-link {
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 0;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 blokken naast elkaar op desktop */
    gap: 40px;
    margin-bottom: 40px;
}

/* Tablet / medium screens: 2 rijen van 2 */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel: blokken onder elkaar */
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer h3 {
    color: var(--paars);
    margin-bottom: 1.2em;
    font-size: 1.7em;
}

.footer p {
    margin-bottom: 0.7em;
    color: rgba(255, 255, 255, 0.85);
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--paars);
}

.social-media-footer a {
       color: #fff;
}

.social-media-footer a:hover {
    background-color: var(--secondary-color);
    color: var(--paars);
}

.social-media-footer a i { /* Styling voor Line Awesome iconen in footer */
    font-size: 2em;
	border:solid 1px #f2f2f2;
	margin:2px;
	padding:5px;
	border-radius: 10px;
	background-color:var(--text-dark);
		
}
.extra-blok .btn-link {
    background-color: #ffffff !important;
    color: #951b81 !important;
}

.copyright {
	background-color:var(--bg-light);
	text-align: center;
    padding-top: 80px;
	margin:40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
	position: relative;
}
/* Transparante overlay */
.copyright::before {
	content: "";
    position: absolute; 
	top:20px;
	left:20px;
	width:20%;
	height:100%;
    background-image: url("../images/Logo_Onder.svg");
	background-repeat: no-repeat;
	background-position: center left;
	background-size:contain;
    z-index: 1; /* Onder de tekst, boven de achtergrond */
}
.copyright p {color:var(--groen); text-align: right; padding-right: 20px}
.copyright a {color:var(--groen);}
.copyright a:hover {opacity: 0.8;}
@media (max-width: 950px) {

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1600px) {

	.parallax-section {
     height: 12vh;
	}
	
}


/* Responsive adjustments */
@media (max-width: 992px) {
	
	.parallax-section {
    height: 25vh;
		        background-size: cover;
	}
	.slider-content {
    position: absolute;
    top: 26%;
	}
	.contact-info{display: none;}
	
	  /* Mobiel menu z-index voor sticky */
    .main-nav {
        z-index: 1001 !important;
    }
    
    .menu-overlay {
        z-index: 1000;
    }
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .logo {
	    flex-basis: auto;
        text-align: center;
    }


    #main-nav {
        flex-basis: 100%;
        order: 3; /* Push nav below logo and social */
    }
    .header-social {
        order: 2;
    }

    .hero-slider {
        height: 400px;
    }
    .slider-content h1 {
        font-size: 2.8em;
    }
    .slider-content p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }

    .hero-slider {
        height: 350px;
    }
    .slider-content h1 {
        font-size: 2em;
    }
    .slider-content p {
        font-size: 1em;
    }

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

    .intro-cards, .werkwijze, .over-mij {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-grid {
      
      
    }
    .social-media-footer {
        display: flex;
        flex-direction: column;
        align-items:flex-start;
    }
    .werkwijze-image-wrapper {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 680px) {

	.logo-mobiel {
	display:inherit;
}
	.logo {
	   display:none;
     
    }

/* --- Logo slider basis --- */
.logo-slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    background: transparent;
}

.logo-slider-track {
    display: flex;
    width: max-content;
    animation: logo-scroll 35s linear infinite;
    align-items: center;
}

.logo-slide {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-height: 70px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animatie */
@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobiel optimalisatie */
@media (max-width: 768px) {
    .logo-slide {
        padding: 0 20px;
    }

    .logo-slide img {
        max-height: 50px;
    }
}

