/* style.css */

/* General Styles - School Variant */
:root {
    --primary-color: #92278f; /* Paars - hoofdaccent */
    --secondary-color: #F28C28; /* Oranje - warme, energieke steunkleur */
    --accent-color: #7ebc00; /* Geel - opvallende highlight */
    --highlight-color: #4CAF50; /* Groen - voor positieve elementen */

    --text-dark: #2E2E2E;
    --text-light: #555;
    --bg-light: #FFFFFF;
    --bg-medium: #92278f;
    --border-color: #E5E5E5;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Shadows Into Light', cursive;

    --shadow-light: 0 2px 8px rgba(0,0,0,0.06);
    --border-radius: 8px;
}


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

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

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

h1 { font-size: 2.8em; }
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:var(--bg-light);}
/* 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 {
      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: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.split-content-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    
    background-color:#fff;
}

.content-column {
    color: var(--text-light);
}

.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 {
    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 {
    padding: 25px 0;
    color: var(--text-light);
    background-color: var(--bg-light);
    margin: 40px 0;
}

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

.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(--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/slider_img1.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: visible; 
}

.parallax-section .vlinder {
    position: absolute;
    right: 56px;
    top: 40px;
    transform: translateY(-50%);
    width: 15vw;
    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 {
    margin-bottom: 60px;
}

.card {
    background-color: #fff;
    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(--primary-color);
    margin-bottom: 0.5em;
}

/* Werkwijze Section */
.werkwijze {
      background: var(--bg-medium);
    padding: 0px 0 268px;
    margin-bottom: 67px;
    background-image: url(../images/newsbrief_right_mountain.png), url(../images/newsbrief_bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom, top center;
    background-size: auto, 100%;
}

.werkwijze h2 {
    color: var(--primary-color);
}

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

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

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

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

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

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

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

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

.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: 3.2em;
	border:solid 1px #f2f2f2;
	margin:2px;
	padding:5px;
	border-radius: 10px;
	background-color:var(--secondary-color);
		
}

.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: 1145px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
	.parallax-section {
     height: 35vh;
	}
	
}


/* 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) {
    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;
        text-align: center;
    }
    .social-media-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .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.breed  {
       height: 160px;
   
}
	
    .logo-slide {
        padding: 0 20px;
    }

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