/* style.css */

/* General Styles - School Variant */

  :root {
    --primary-color: #ff9140; /* Oranje - hoofdaccent */
    --secondary-color: #de5e42; /* Groen - secundair accent */
    --accent-color: #FFB347; /* Lichte oranje/amber highlight */
    --highlight-color: #4CAF50; /* Groen - voor positieve elementen */
	--white:#ffffff;
    --text-dark: #0d0d0d; /* Donkergrijs voor tekst */
    --text-light: #555;   /* Medium grijs voor subtiele tekst */
    --bg-light: #f2e9d7;  /* Wit achtergrond */
    --bg-medium: #F2F2F2; /* Lichtgrijs als tussenlaag */
    --border-color: #D1D1D1; /* Zacht grijs voor randen */
	--font-family-base:"Roboto", sans-serif;
	--font-primary:"Roboto", sans-serif;
    --fun-font:"Mansalva", sans-serif;  
	  
    --shadow-light: 0 2px 8px rgba(0,0,0,0.06);
    --border-radius: 8px;
	  --terracotta: #de5e42;
	--warm-sand: #F4E8D8;
	--deep-ochre: #C67B3E;
	--olive-green: #7A8450;
	--burnt-sienna: #de5e42;
	--cream: #FFF9F0;
	--shadow-warm: rgba(166, 75, 58, 0.15);
	--shadow-deep: rgba(100, 50, 30, 0.25);

--fs-h1: clamp(2rem, 5vw, 3rem);   /* min 32px, groeit mee tot max 48px */
--fs-h2: clamp(1.75rem, 4vw, 2.5rem);
--fs-h3: clamp(1.25rem, 3vw, 2rem);
--fs-h4: clamp(1rem, 2.5vw, 1.5rem);
--fs-body: clamp(0.875rem, 1.5vw, 1rem); /* 14px - 16px */
--fs-body-small: clamp(0.75rem, 1vw, 0.9375rem); /* 12px - 15px */
--fs-micro: clamp(0.625rem, 0.8vw, 0.8125rem);   /* 10px - 13px */


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

body {
  font-family: var(--font-family-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: 0;
  color:  #c60b1e; /* aanpasbaar aan huisstijl */
background: linear-gradient(to bottom right, #ff914d, #f2e9d7);
    /* Optioneel: volledige hoogte van de pagina */
    min-height: 100vh;
    margin: 0;
	
}

/* 2. Headings */

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

.h2,
h2 {
		font-family: var(--font-primary);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
	margin-top: 10px;
}

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

.h4,
h4 {
		font-family: var(--font-primary);
  font-size: var(--fs-h4);
  line-height: var(--lh-heading);
  font-weight: 600;
  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;
}

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


.introtext{
  max-width: 800px;
  margin: 48px auto;
  padding: 24px 28px;

  color: var(--white);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-align: center;

  box-sizing: border-box;
}


/* Headings wit + strak */
.introtext h1,
.introtext h2{
  color: var(--white);
  line-height: var(--lh-heading);
  margin: 0 0 12px;
}

/* Optioneel: iets meer hiërarchie */
.introtext h1{
  font-size: var(--fs-h2);
}

.introtext h2{
  font-size: var(--fs-h3);
  opacity: 0.9;
}

/* Tablet */
@media (max-width: 900px){
  .introtext{
    padding: 20px 22px;
    font-size: var(--fs-body-small);
  }
}

/* Mobiel */
@media (max-width: 600px){
  .introtext{
    padding: 16px 18px;
    font-size: var(--fs-body-small);
  }
}




/* tabellen*/

/* Alle tabellen in de kolommen */
.page-header table,
.content-column.left table,
.content-column.right table {
  width: auto;
  max-width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  display: table;
  table-layout: auto;   /* 👉 kolommen op inhoud */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1em 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.page-header table th,
.content-column.left table th,
.content-column.right table th {
  background-color: #ff9140;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
}

.page-header table th,
.content-column.left table th,
.content-column.right table th {
    width: 1%;       /* browser maakt kolom breed genoeg voor inhoud */
    white-space: nowrap; /* labels altijd op 1 regel */
}


/* Cell styling */
.page-header table td,
.content-column.left table td,
.content-column.right table td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
}


/* Alternatieve rijkleur */
.page-header table tbody tr:nth-child(even),
.content-column.left table tbody tr:nth-child(even),
.content-column.right table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover effect */
.page-header table tbody tr:hover,
.content-column.left table tbody tr:hover,
.content-column.right table tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.2s ease-in-out;
}

/* Responsief */
@media (max-width: 600px) {
  .page-header table td,
  .page-header table th,
  .content-column.left table td,
  .content-column.left table th,
  .content-column.right table td,
  .content-column.right table th {
    padding: 10px;
    font-size: 14px;
  }
}


/* 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;
  border-radius: 999px; /* pill-shape, eventueel aanpassen */
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	background: #de5e42;
    color: #fff;
	
	
}

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

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

/* 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(--text-dark);
    line-height: 1.6;
   /* background-color: var(--bg-light);*/
	background: linear-gradient(to bottom right, #333, #000);

}

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

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

a:hover {
    color: var(--text-dark);
}

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

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(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85em;
	position: relative;
    z-index: 996;
}

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

.top-links a,
.social-media a {
    color: #fff;
    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: #fff;
}
.header-bottom {background-color:#f2e9d7;} 
/* 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;
}

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

.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 {
max-height: 90px;
    height: 100%;
    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: 400px;
    overflow: hidden;
   
}
.page-header.breed {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
   
}

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

.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: 0 0;
    background-color: var(--bg-light);
}

.split-content-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color:#fff;
}

/*.content-column.right {
    position: sticky;
    top: 66px;
    align-self: flex-start; 
    max-height: calc(100vh - 40px); 
    overflow-y: auto; 
}*/
.content-column.right {   width: 100%;}
.content-column {
    color: var(--text-light);
	    padding: 30px 15px;
}

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

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

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

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

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

.full-width-content .container {
    max-width: 1200px;
	background-color:#fff;
	padding:60px 15px;
	 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.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;
    margin-bottom: 40px;
}

.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(0.8);
}

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

.slider-content h2 {
    font-family: var(--fun-font);
    font-weight: 100;
    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;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    background-image: url("../images/bg.webp");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden; 
}

/* Vlinder-afbeelding */
.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: revert-layer;
}

/* Container voor CMS-inhoud */
.parallax-section .parallax-content {
    position: relative;
    z-index: 3; /* Boven overlay en vlinder */
    padding: 20px; /* Optioneel, voor wat ruimte rondom tekst */
	color:var(--white);
}

/* Tekst styling */
.parallax-section h3,
.parallax-section p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0.5em 0;
	
}

.parallax-section h3 {
   font-family: var(--fun-font);
    font-weight: 100;
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.parallax-section p {
    font-size: 1.5em;
}

/* Intro Cards */
.intro-cards {
    margin-bottom: 60px;
}

.card {
    background-color: #f2e9d7;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px; /* Ensure consistent height */
}

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

.card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    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(--text-dark);
    margin-bottom: 0.5em;
	font-family:var(--fun-font);
}

/* Werkwijze Section */
.werkwijze {
  background: #de5e42;
	/*background: linear-gradient(
    to bottom,
    #c60b1e 0%,
    #c60b1e 33.33%,
    #ffd700 33.33%,
    #ffd700 66.66%,
    #c60b1e 66.66%,
    #c60b1e 100%
);*/
    padding: 0px 0 80px;
 
}

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

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

.werkwijze-item {
    background-color: #f2e9d7;
    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;

}

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

/* 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(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--text-dark);
    margin-bottom: 1.2em;
    font-size: 1.4em;
}

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

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #000;
}

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

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

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}
@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;
	}
	.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) {
	
	.split-content-section .container {
    display: grid;
    grid-template-columns: 1fr;
		gap: 0;
	}
	
	.page-header.breed {height:140px;}
	
	
    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 {
        grid-template-columns: 1fr;
     
    }
    .social-media-footer {
        display: flex;
        flex-direction: column;
       
    }
    .werkwijze-image-wrapper {
        width: 120px;
        height: 120px;
    }
}


/* --- 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: 115px;
    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) {
	.page-header {
 
    height: 205px;
 
}
	
	
    .logo-slide {
        padding: 0 20px;
    }

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


@media (max-width: 680px) {
.logo img

 {
    max-height: 71px;
	 height: 100%;}

	}

