/* ===================================
   OBS de Horizon - Custom Styles
   Kleuren: 
   - Oranje: #ea5b0c
   - Blauw: #22b5b9
   - Roze: #e40d7e
   - Geel: #fbc205
   Font: Nunito Sans
   =================================== */

/* ===================================
   EDGE BROWSER FIXES
   =================================== */
@supports (-ms-ime-align: auto) {
    /* Edge-specific fixes */
    .sun-container,
    .sun-ray {
        transform: translateZ(0);
    }
}

/* Edge & IE flexbox fixes */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .d-flex {
        display: -ms-flexbox !important;
    }
    .flex-wrap {
        -ms-flex-wrap: wrap !important;
    }
}

body {
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

a {
	text-decoration: none;
	color: #000;
}

:root {
    --color-primary: #22b5b9;
    --color-secondary: #e40d7e;
    --color-accent: #fbc205;
    --color-orange: #ea5b0c;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --sun-yellow: #fbc205;
    --sun-orange: #ea5b0c;
    --sun-glow: rgba(251, 194, 5, 0.3);
}

.btn {
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
}

/* ===================================
   ZON NAVIGATIE SECTIE
   =================================== */
.sun-navigation-section {
    min-height: 600px;
    padding: 120px 0;
    background: linear-gradient(180deg, #e8f4fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.sun-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
}

/* De Zon Kern */
.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 35% 35%, #fff9c4 0%, #ffeb3b 20%, #fbc205 60%, #f9a825 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 60px var(--sun-glow),
        0 0 100px var(--sun-glow),
        inset -8px -8px 25px rgba(249, 168, 37, 0.5),
        inset 8px 8px 25px rgba(255, 255, 255, 0.5);
    z-index: 20;
    animation: sun-pulse 4s ease-in-out infinite;
    border: 5px solid #f2f9fd;
}

.sun-core::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 18%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes sun-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Zonnestralen Container */
.sun-rays-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
}

/* Individuele Zonnestraal */
.sun-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
}

/* Interactieve zweef animaties per straal */
.sun-ray-1 { animation: ray-sway-1 4s ease-in-out infinite; }
.sun-ray-2 { animation: ray-sway-2 3.5s ease-in-out infinite; }
.sun-ray-3 { animation: ray-sway-3 4.2s ease-in-out infinite; }
.sun-ray-4 { animation: ray-sway-4 3.8s ease-in-out infinite; }
.sun-ray-5 { animation: ray-sway-5 4.5s ease-in-out infinite; }
.sun-ray-6 { animation: ray-sway-6 3.6s ease-in-out infinite; }
.sun-ray-7 { animation: ray-sway-7 4.1s ease-in-out infinite; }
.sun-ray-8 { animation: ray-sway-8 3.4s ease-in-out infinite; }

@keyframes ray-sway-1 {
    0%, 100% { transform: translate(-50%, -100%) rotate(0deg); }
    50% { transform: translate(-50%, -100%) rotate(3deg); }
}
@keyframes ray-sway-2 {
    0%, 100% { transform: translate(-50%, -100%) rotate(45deg); }
    50% { transform: translate(-50%, -100%) rotate(48deg); }
}
@keyframes ray-sway-3 {
    0%, 100% { transform: translate(-50%, -100%) rotate(90deg); }
    50% { transform: translate(-50%, -100%) rotate(87deg); }
}
@keyframes ray-sway-4 {
    0%, 100% { transform: translate(-50%, -100%) rotate(135deg); }
    50% { transform: translate(-50%, -100%) rotate(138deg); }
}
@keyframes ray-sway-5 {
    0%, 100% { transform: translate(-50%, -100%) rotate(180deg); }
    50% { transform: translate(-50%, -100%) rotate(177deg); }
}
@keyframes ray-sway-6 {
    0%, 100% { transform: translate(-50%, -100%) rotate(225deg); }
    50% { transform: translate(-50%, -100%) rotate(228deg); }
}
@keyframes ray-sway-7 {
    0%, 100% { transform: translate(-50%, -100%) rotate(270deg); }
    50% { transform: translate(-50%, -100%) rotate(267deg); }
}
@keyframes ray-sway-8 {
    0%, 100% { transform: translate(-50%, -100%) rotate(315deg); }
    50% { transform: translate(-50%, -100%) rotate(318deg); }
}

/* GROTERE STRALEN met duidelijke variatie */
.sun-ray-1 { width: 55px; height: 240px; transform: translate(-50%, -100%) rotate(0deg); }
.sun-ray-2 { width: 48px; height: 185px; transform: translate(-50%, -100%) rotate(45deg); }
.sun-ray-3 { width: 60px; height: 260px; transform: translate(-50%, -100%) rotate(90deg); }
.sun-ray-4 { width: 45px; height: 175px; transform: translate(-50%, -100%) rotate(135deg); }
.sun-ray-5 { width: 58px; height: 250px; transform: translate(-50%, -100%) rotate(180deg); }
.sun-ray-6 { width: 50px; height: 195px; transform: translate(-50%, -100%) rotate(225deg); }
.sun-ray-7 { width: 54px; height: 230px; transform: translate(-50%, -100%) rotate(270deg); }
.sun-ray-8 { width: 44px; height: 170px; transform: translate(-50%, -100%) rotate(315deg); }

/* De straal vorm - Eenvoudige driehoek */
.ray-shape {
    width: 100%;
    flex-grow: 1;
    background: linear-gradient(180deg, #fbc205 0%, #f9a825 50%, #ea5b0c 100%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(235, 110, 17, 0.3));
}

/* Groep nummer badge */
.ray-badge {
    position: absolute;
    top: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset -2px -2px 6px rgba(0, 0, 0, 0.15),
        inset 2px 2px 6px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 25;
}

/* Badge kleuren per groep */
.sun-ray-1 .ray-badge { background: linear-gradient(135deg, #ea5b0c 0%, #d14f0a 100%); }
.sun-ray-2 .ray-badge { background: linear-gradient(135deg, #e40d7e 0%, #c90b6e 100%); }
.sun-ray-3 .ray-badge { background: linear-gradient(135deg, #fbc205 0%, #e0ad04 100%); }
.sun-ray-4 .ray-badge { background: linear-gradient(135deg, #22b5b9 0%, #1d9a9d 100%); }
.sun-ray-5 .ray-badge { background: linear-gradient(135deg, #ea5b0c 0%, #d14f0a 100%); }
.sun-ray-6 .ray-badge { background: linear-gradient(135deg, #e40d7e 0%, #c90b6e 100%); }
.sun-ray-7 .ray-badge { background: linear-gradient(135deg, #fbc205 0%, #e0ad04 100%); }
.sun-ray-8 .ray-badge { background: linear-gradient(135deg, #22b5b9 0%, #1d9a9d 100%); }

/* Nummer text */
.ray-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

/* Counter rotation voor leesbaarheid */
.sun-ray-1 .ray-badge { transform: rotate(0deg); }
.sun-ray-2 .ray-badge { transform: rotate(-45deg); }
.sun-ray-3 .ray-badge { transform: rotate(-90deg); }
.sun-ray-4 .ray-badge { transform: rotate(-135deg); }
.sun-ray-5 .ray-badge { transform: rotate(-180deg); }
.sun-ray-6 .ray-badge { transform: rotate(-225deg); }
.sun-ray-7 .ray-badge { transform: rotate(-270deg); }
.sun-ray-8 .ray-badge { transform: rotate(-315deg); }

/* Hover effect - Meer interactief */
.sun-ray:hover {
    z-index: 30;
    animation-play-state: paused;
}

.sun-ray:hover .ray-shape {
    transform: scaleY(1.12) scaleX(1.15);
    filter: brightness(1.15) drop-shadow(0 8px 20px rgba(235, 110, 17, 0.5));
}

.sun-ray:hover .ray-badge {
    transform: scale(1.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(251, 194, 5, 0.4);
    animation: badge-pulse 0.6s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(251, 194, 5, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 35px rgba(251, 194, 5, 0.6); }
}

/* Active state - wanneer popover open is */
.sun-ray[aria-describedby] {
    z-index: 35;
    animation-play-state: paused;
}

.sun-ray[aria-describedby] .ray-shape {
    transform: scaleY(1.15) scaleX(1.18);
    filter: brightness(1.2) drop-shadow(0 10px 25px rgba(235, 110, 17, 0.6));
}

.sun-ray[aria-describedby] .ray-badge {
    transform: scale(1.25);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(251, 194, 5, 0.5);
}

/* Maintain counter-rotation on hover */
.sun-ray-2:hover .ray-badge { transform: rotate(-45deg) scale(1.15); }
.sun-ray-3:hover .ray-badge { transform: rotate(-90deg) scale(1.15); }
.sun-ray-4:hover .ray-badge { transform: rotate(-135deg) scale(1.15); }
.sun-ray-5:hover .ray-badge { transform: rotate(-180deg) scale(1.15); }
.sun-ray-6:hover .ray-badge { transform: rotate(-225deg) scale(1.15); }
.sun-ray-7:hover .ray-badge { transform: rotate(-270deg) scale(1.15); }
.sun-ray-8:hover .ray-badge { transform: rotate(-315deg) scale(1.15); }

/* Decoratieve sparkles */
.sun-sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 5;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.sun-sparkle:nth-child(1) { top: 18%; left: 15%; width: 6px; height: 6px; animation-delay: 0s; }
.sun-sparkle:nth-child(2) { top: 28%; right: 18%; width: 8px; height: 8px; animation-delay: 0.8s; }
.sun-sparkle:nth-child(3) { bottom: 22%; left: 22%; width: 5px; height: 5px; animation-delay: 1.6s; }
.sun-sparkle:nth-child(4) { bottom: 32%; right: 15%; width: 7px; height: 7px; animation-delay: 2.4s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.7; transform: scale(1); }
}

/* ===================================
   Popover Styling - Interactief
   =================================== */
.sun-navigation-section .popover {
    max-width: 300px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: popover-appear 0.3s ease-out;
}

@keyframes popover-appear {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.sun-navigation-section .popover-header {
    background: linear-gradient(135deg, #ea5b0c 0%, #f9a825 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    border: none;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-weight: 600;
}

.sun-navigation-section .popover-body {
    padding: 18px;
    font-size: 0.95rem;
}

.sun-navigation-section .popover-body p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.sun-navigation-section .popover-body strong {
    color: #ea5b0c;
}

.sun-navigation-section .popover-body .btn {
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sun-navigation-section .popover-body .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 0, 109, 0.3);
}

/* ===================================
   ZON NAVIGATIE RESPONSIVE
   =================================== */
@media (max-width: 991.98px) {
    .sun-navigation-section {
        min-height: 550px;
    }
    
    .sun-container {
        max-width: 550px;
        height: 550px;
    }
    
    .sun-core {
        width: 110px;
        height: 110px;
    }
    
    .sun-rays-container {
        width: 480px;
        height: 480px;
    }
    
    .sun-ray-1 { width: 46px; height: 195px; }
    .sun-ray-2 { width: 40px; height: 150px; }
    .sun-ray-3 { width: 50px; height: 210px; }
    .sun-ray-4 { width: 38px; height: 142px; }
    .sun-ray-5 { width: 48px; height: 202px; }
    .sun-ray-6 { width: 42px; height: 158px; }
    .sun-ray-7 { width: 45px; height: 186px; }
    .sun-ray-8 { width: 36px; height: 138px; }
    
    .ray-badge {
        width: 44px;
        height: 44px;
    }
    
    .ray-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .sun-navigation-section {
        min-height: 450px;
        padding: 40px 0;
    }
    
    .sun-container {
        max-width: 400px;
        height: 400px;
    }
    
    .sun-core {
        width: 85px;
        height: 85px;
    }
    
    .sun-rays-container {
        width: 360px;
        height: 360px;
    }
    
    .sun-ray-1 { width: 38px; height: 150px; }
    .sun-ray-2 { width: 32px; height: 115px; }
    .sun-ray-3 { width: 42px; height: 165px; }
    .sun-ray-4 { width: 30px; height: 108px; }
    .sun-ray-5 { width: 40px; height: 158px; }
    .sun-ray-6 { width: 34px; height: 120px; }
    .sun-ray-7 { width: 36px; height: 142px; }
    .sun-ray-8 { width: 28px; height: 105px; }
    
    .ray-badge {
        width: 36px;
        height: 36px;
        top: -4px;
    }
    
    .ray-number {
        font-size: 1.1rem;
    }
    
    .sun-sparkle {
        display: none;
    }
    
    /* Langzamere animaties op mobiel */
    .sun-ray-1 { animation-duration: 6s; }
    .sun-ray-2 { animation-duration: 5.5s; }
    .sun-ray-3 { animation-duration: 6.2s; }
    .sun-ray-4 { animation-duration: 5.8s; }
    .sun-ray-5 { animation-duration: 6.5s; }
    .sun-ray-6 { animation-duration: 5.6s; }
    .sun-ray-7 { animation-duration: 6.1s; }
    .sun-ray-8 { animation-duration: 5.4s; }
}

@media (max-width: 575.98px) {
    .sun-container {
        max-width: 320px;
        height: 320px;
    }
    
    .sun-core {
        width: 65px;
        height: 65px;
    }
    
    .sun-rays-container {
        width: 290px;
        height: 290px;
    }
    
    .sun-ray-1 { width: 30px; height: 118px; }
    .sun-ray-2 { width: 26px; height: 92px; }
    .sun-ray-3 { width: 34px; height: 130px; }
    .sun-ray-4 { width: 24px; height: 85px; }
    .sun-ray-5 { width: 32px; height: 125px; }
    .sun-ray-6 { width: 28px; height: 96px; }
    .sun-ray-7 { width: 30px; height: 112px; }
    .sun-ray-8 { width: 22px; height: 82px; }
    
    .ray-badge {
        width: 30px;
        height: 30px;
        top: -3px;
    }
    
    .ray-number {
        font-size: 0.95rem;
    }
}

/* Reduceer animaties voor motion-gevoelige gebruikers */
@media (prefers-reduced-motion: reduce) {
    .sun-ray {
        animation: none !important;
    }
    .sun-core {
        animation: none !important;
    }
    .sun-sparkle {
        animation: none !important;
    }
}

/* ===================================
   LEGACY: Avonturenboom (deprecated)
   Behouden voor backwards compatibility
   =================================== */
.adventure-tree-section {
    min-height: 700px;
}

.tree-container-simple {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 700px;
    margin: 0 auto;
}

.tree-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: auto;
    max-width: 100%;
    z-index: 5;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.group-balloon {
    position: absolute;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    touch-action: none;
    transition: transform 0.3s ease;
    z-index: 10;
}

.group-balloon:hover {
    transform: scale(1.1);
}

.group-balloon:active {
    cursor: grabbing;
    z-index: 1000 !important;
}

.group-balloon.dragging {
    opacity: 0.9;
    transform: scale(1.05) !important;
    z-index: 1000 !important;
    transition: none !important;
    animation: none !important;
}

/* Verwijder hover transform tijdens drag */
.group-balloon.dragging:hover {
    transform: scale(1.05) !important;
}

.group-balloon:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Verwijder balloon string */
.balloon-string {
    display: none;
}

/* Blaadje vorm - RECHTS (groep 5-8) */
.balloon-body {
    width: 90px;
    height: 100px;
    border-radius: 0% 50% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
                inset -5px -5px 15px rgba(0, 0, 0, 0.15),
                inset 5px 5px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    transform-origin: top left;
}

/* Blad nerf/ader in het midden */
.balloon-body::before {
    /*content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 2px;
    height: 70%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transform: translateX(-50%);*/
}

/* Verwijder ballon driehoek onderaan */
.balloon-body::after {
    display: none;
}

.balloon-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ===================================
   Linker blaadjes (1-4) - Tak naar RECHTS
   =================================== */
.balloon-1 .balloon-body,
.balloon-2 .balloon-body,
.balloon-3 .balloon-body,
.balloon-4 .balloon-body {
    border-radius: 50% 0% 50% 50%;
    transform-origin: top right;
}

/* ===================================
   Blaadje kleuren per groep - School kleuren
   =================================== */
.balloon-1 .balloon-body { 
    background: linear-gradient(135deg, #ea5b0c 0%, #f58c3d 100%);
    border: 2px solid #d14f0a;
}

.balloon-2 .balloon-body { 
    background: linear-gradient(135deg, #e40d7e 0%, #e8328f 100%);
    border: 2px solid #c90b6e;
}

.balloon-3 .balloon-body { 
    background: linear-gradient(135deg, #fbc205 0%, #fdd34d 100%);
    border: 2px solid #e0ad04;
}

.balloon-4 .balloon-body { 
    background: linear-gradient(135deg, #22b5b9 0%, #4dc9cc 100%);
    border: 2px solid #1d9a9d;
}

.balloon-5 .balloon-body { 
    background: linear-gradient(135deg, #ea5b0c 0%, #f57d3d 100%);
    border: 2px solid #d14f0a;
}

.balloon-6 .balloon-body { 
    background: linear-gradient(135deg, #e40d7e 0%, #e8328f 100%);
    border: 2px solid #c90b6e;
}

.balloon-7 .balloon-body { 
    background: linear-gradient(135deg, #fbc205 0%, #fdd34d 100%);
    border: 2px solid #e0ad04;
}

.balloon-8 .balloon-body { 
    background: linear-gradient(135deg, #22b5b9 0%, #4dc9cc 100%);
    border: 2px solid #1d9a9d;
}

/* ===================================
   SPEELSE Blaadje Posities & Groottes - Meer naar midden
   =================================== */

/* Groep 1 - Klein, laag links - meer naar midden */
.balloon-1 { 
    bottom: 80px; 
    left: 25%; /* Was 18% */
    animation: leaf-sway-1 3.2s ease-in-out infinite;
}
.balloon-1 .balloon-body {
    width: 85px;
    height: 95px;
    transform: rotate(-8deg);
}
.balloon-1:hover {
    transform: scale(1.2) rotate(-15deg);
}

/* Groep 2 - Middel, iets hoger - naar midden */
.balloon-2 { 
    bottom: 180px; 
    left: 15%; /* Was 5% */
    animation: leaf-sway-2 2.8s ease-in-out infinite;
}
.balloon-2 .balloon-body {
    width: 95px;
    height: 105px;
    transform: rotate(5deg);
}
.balloon-2:hover {
    transform: scale(1.15) rotate(10deg);
}

/* Groep 3 - Groot, speels gedraaid - meer naar midden */
.balloon-3 { 
    bottom: 290px; 
    left: 28%; /* Was 20% */
    animation: leaf-sway-3 3.5s ease-in-out infinite;
}
.balloon-3 .balloon-body {
    width: 100px;
    height: 110px;
    transform: rotate(-12deg);
}
.balloon-3:hover {
    transform: scale(1.18) rotate(-18deg);
}

/* Groep 4 - Klein, hoog, schuin - naar midden */
.balloon-4 { 
    bottom: 410px; 
    left: 20%; /* Was 10% */
    animation: leaf-sway-4 2.5s ease-in-out infinite;
}
.balloon-4 .balloon-body {
    width: 80px;
    height: 90px;
    transform: rotate(10deg);
}
.balloon-4:hover {
    transform: scale(1.25) rotate(15deg);
}

/* Groep 5 - Middel, laag rechts - meer naar midden */
.balloon-5 { 
    bottom: 100px; 
    right: 25%; /* Was 18% */
    animation: leaf-sway-5 3s ease-in-out infinite;
}
.balloon-5 .balloon-body {
    width: 88px;
    height: 98px;
    transform: rotate(12deg);
}
.balloon-5:hover {
    transform: scale(1.2) rotate(18deg);
}

/* Groep 6 - Groot, gedraaid - naar midden */
.balloon-6 { 
    bottom: 210px; 
    right: 15%; /* Was 6% */
    animation: leaf-sway-6 3.3s ease-in-out infinite;
}
.balloon-6 .balloon-body {
    width: 98px;
    height: 108px;
    transform: rotate(-6deg);
}
.balloon-6:hover {
    transform: scale(1.16) rotate(-12deg);
}

/* Groep 7 - Klein, speels - meer naar midden */
.balloon-7 { 
    bottom: 330px; 
    right: 28%; /* Was 22% */
    animation: leaf-sway-7 2.7s ease-in-out infinite;
}
.balloon-7 .balloon-body {
    width: 92px;
    height: 102px;
    transform: rotate(8deg);
}
.balloon-7:hover {
    transform: scale(1.22) rotate(14deg);
}

/* Groep 8 - Middel, hoog rechts - naar midden */
.balloon-8 { 
    bottom: 440px; 
    right: 20%; /* Was 12% */
    animation: leaf-sway-8 3.1s ease-in-out infinite;
}
.balloon-8 .balloon-body {
    width: 86px;
    height: 96px;
    transform: rotate(-10deg);
}
.balloon-8:hover {
    transform: scale(1.19) rotate(-16deg);
}

/* ===================================
   Responsive - Aangepaste Posities voor midden
   =================================== */
@media (max-width: 767.98px) {
    .balloon-1 .balloon-body { width: 65px; height: 75px; }
    .balloon-2 .balloon-body { width: 70px; height: 80px; }
    .balloon-3 .balloon-body { width: 75px; height: 85px; }
    .balloon-4 .balloon-body { width: 60px; height: 70px; }
    .balloon-5 .balloon-body { width: 68px; height: 78px; }
    .balloon-6 .balloon-body { width: 73px; height: 83px; }
    .balloon-7 .balloon-body { width: 67px; height: 77px; }
    .balloon-8 .balloon-body { width: 66px; height: 76px; }
    
    .balloon-number {
        font-size: 1.6rem;
    }
    
    /* Pas posities aan voor mobiel - ook meer naar midden */
    .balloon-1 { bottom: 70px; left: 18%; }
    .balloon-2 { bottom: 160px; left: 10%; }
    .balloon-3 { bottom: 260px; left: 22%; }
    .balloon-4 { bottom: 370px; left: 15%; }
    .balloon-5 { bottom: 90px; right: 18%; }
    .balloon-6 { bottom: 190px; right: 10%; }
    .balloon-7 { bottom: 300px; right: 24%; }
    .balloon-8 { bottom: 410px; right: 18%; }
}

/* ===================================
   Draggable Styling
   =================================== */
.group-balloon {
    cursor: move;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    touch-action: none;
}

.group-balloon:active {
    cursor: grabbing;
    z-index: 1000 !important;
}

.group-balloon.dragging {
    opacity: 0.8;
    transform: scale(1.05);
    z-index: 1000 !important;
}

/* ===================================
   Unieke Zwiep Animaties per Blaadje
   =================================== */
@keyframes leaf-sway-1 {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-8px); }
}

@keyframes leaf-sway-2 {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-12px); }
}

@keyframes leaf-sway-3 {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-9deg) translateY(-10px); }
}

@keyframes leaf-sway-4 {
    0%, 100% { transform: rotate(10deg) translateY(0); }
    50% { transform: rotate(13deg) translateY(-15px); }
}

@keyframes leaf-sway-5 {
    0%, 100% { transform: rotate(12deg) translateY(0); }
    50% { transform: rotate(9deg) translateY(-11px); }
}

@keyframes leaf-sway-6 {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-9deg) translateY(-14px); }
}

@keyframes leaf-sway-7 {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(11deg) translateY(-9px); }
}

@keyframes leaf-sway-8 {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-7deg) translateY(-13px); }
}

/* ===================================
   Responsive - Blaadjes
   =================================== */
@media (max-width: 991.98px) {
    .balloon-1 .balloon-body { width: 75px; height: 85px; }
    .balloon-2 .balloon-body { width: 80px; height: 90px; }
    .balloon-3 .balloon-body { width: 85px; height: 95px; }
    .balloon-4 .balloon-body { width: 70px; height: 80px; }
    .balloon-5 .balloon-body { width: 78px; height: 88px; }
    .balloon-6 .balloon-body { width: 83px; height: 93px; }
    .balloon-7 .balloon-body { width: 77px; height: 87px; }
    .balloon-8 .balloon-body { width: 76px; height: 86px; }
    
    .balloon-number {
        font-size: 1.9rem;
    }
}

@media (max-width: 767.98px) {
    .balloon-1 .balloon-body { width: 65px; height: 75px; }
    .balloon-2 .balloon-body { width: 70px; height: 80px; }
    .balloon-3 .balloon-body { width: 75px; height: 85px; }
    .balloon-4 .balloon-body { width: 60px; height: 70px; }
    .balloon-5 .balloon-body { width: 68px; height: 78px; }
    .balloon-6 .balloon-body { width: 73px; height: 83px; }
    .balloon-7 .balloon-body { width: 67px; height: 77px; }
    .balloon-8 .balloon-body { width: 66px; height: 76px; }
    
    .balloon-number {
        font-size: 1.6rem;
    }
    
    /* Pas posities aan voor mobiel */
    .balloon-1 { bottom: 70px; left: 8%; }
    .balloon-2 { bottom: 160px; left: 5%; }
    .balloon-3 { bottom: 260px; left: 10%; }
    .balloon-4 { bottom: 370px; left: 15%; }
    .balloon-5 { bottom: 90px; right: 8%; }
    .balloon-6 { bottom: 190px; right: 5%; }
    .balloon-7 { bottom: 300px; right: 10%; }
    .balloon-8 { bottom: 410px; right: 15%; }
}

/* Performance optimalisatie */
@media (prefers-reduced-motion: reduce) {
    .group-balloon {
        animation: none !important;
    }
}

/* Blaadje zwiep animatie (alsof het in de wind waait) */
@keyframes leaf-sway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Float Animatie */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===================================
   Vogeltjes
   =================================== */
.tree-bird {
    position: absolute;
    font-size: 1.5rem;
    animation: bird-fly 15s ease-in-out infinite;
    z-index: 11;
}

.bird-1 {
    top: 80px;
    left: 20%;
    animation-delay: 0s;
}

.bird-2 {
    top: 120px;
    right: 25%;
    animation-delay: -7s;
}

@keyframes bird-fly {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -30px) scale(1.1);
    }
    50% {
        transform: translate(200px, -10px) scale(1);
    }
    75% {
        transform: translate(100px, 20px) scale(0.9);
    }
}

/* ===================================
   Popover Styling
   =================================== */
.popover {
    border-radius: 1rem;
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popover-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 0.875rem 0.875rem 0 0;
    border: none;
    font-size: 1.1rem;
}

.popover-body {
    padding: 1rem;
}

.popover-body p {
    margin-bottom: 0.5rem;
}

/* ===================================
   Decoratieve Wolken - Witte Bubbel Stijl
   =================================== */
.tree-cloud {
    position: absolute;
    display: block;
    animation: cloud-float 20s ease-in-out infinite;
    z-index: 1;
}

.tree-cloud .cloud-part {
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    
}

.group-balloon .balloon-body:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Wolk 1 - Rechts boven */
.cloud-1 {
    top: 80px;
    right: 10%;
    width: 120px;
    height: 60px;
    animation-duration: 25s;
}

.cloud-1 .cloud-part:nth-child(1) {
    width: 50px;
    height: 50px;
    left: 0;
    bottom: 0;
}

.cloud-1 .cloud-part:nth-child(2) {
    width: 70px;
    height: 60px;
    left: 30px;
    bottom: 5px;
    z-index: 2;
}

.cloud-1 .cloud-part:nth-child(3) {
    width: 55px;
    height: 52px;
    left: 70px;
    bottom: 2px;
}

/* Wolk 2 - Links boven */
.cloud-2 {
    top: 120px;
    left: 8%;
    width: 140px;
    height: 70px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.cloud-2 .cloud-part:nth-child(1) {
    width: 55px;
    height: 55px;
    left: 0;
    bottom: 0;
}

.cloud-2 .cloud-part:nth-child(2) {
    width: 80px;
    height: 70px;
    left: 35px;
    bottom: 6px;
    z-index: 2;
}

.cloud-2 .cloud-part:nth-child(3) {
    width: 60px;
    height: 58px;
    left: 85px;
    bottom: 3px;
}

/* Wolk 3 - Rechts midden */
.cloud-3 {
    top: 200px;
    right: 15%;
    width: 110px;
    height: 55px;
    animation-duration: 28s;
    animation-delay: -10s;
}

.cloud-3 .cloud-part:nth-child(1) {
    width: 45px;
    height: 45px;
    left: 0;
    bottom: 0;
}

.cloud-3 .cloud-part:nth-child(2) {
    width: 65px;
    height: 55px;
    left: 28px;
    bottom: 5px;
    z-index: 2;
}

.cloud-3 .cloud-part:nth-child(3) {
    width: 50px;
    height: 48px;
    left: 65px;
    bottom: 2px;
}

/* Wolken animatie - Zacht zwevend */
@keyframes cloud-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-30px, 10px);
    }
    50% {
        transform: translate(-15px, -10px);
    }
    75% {
        transform: translate(20px, 5px);
    }
}

/* ===================================
   Responsive - Wolken
   =================================== */
@media (max-width: 991.98px) {
    .tree-cloud .cloud-part {
        transform: scale(0.8);
    }
}

@media (max-width: 767.98px) {
    .tree-cloud {
        display: none; /* Verberg wolken op mobiel voor betere performance */
    }
}

/* Performance optimalisatie */
@media (prefers-reduced-motion: reduce) {
    .tree-cloud {
        animation: none !important;
    }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 991.98px) {
    .tree-container-simple {
        height: 600px;
    }
    
    .tree-image {
        width: 500px;
    }
    
    .balloon-body {
        width: 70px;
        height: 90px;
    }
    
    .balloon-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .tree-container-simple {
        height: 500px;
    }
    
    .tree-image {
        width: 400px;
    }
    
    .balloon-body {
        width: 60px;
        height: 80px;
    }
    
    .balloon-number {
        font-size: 1.5rem;
    }
    
    .tree-bird {
        display: none;
    }
}

/* ===================================
   Hero Video Section
   =================================== */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Video Element */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video Overlay - voor betere leesbaarheid tekst */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(235, 110, 17, 0.7) 0%,
        rgba(206, 0, 109, 0.6) 50%,
        rgba(251, 194, 5, 0.5) 100%
    );
    z-index: 1;
}

/* ===================================
   Witte Wolken Border - Bubbel Stijl
   =================================== */
.hero-clouds-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    /* GEEN background meer */
}

.clouds-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clouds-layer-1 {
    z-index: 3;
    animation: clouds-drift-right 120s linear infinite;
}

.clouds-layer-2 {
    z-index: 2;
    opacity: 0.85;
    animation: clouds-drift-left 100s linear infinite;
}

.clouds-layer-3 {
    z-index: 1;
    opacity: 0.7;
    animation: clouds-drift-right 140s linear infinite;
    animation-delay: -20s;
}

/* Basis wolk structuur */
.cloud {
    position: absolute;
    display: block;
    filter: blur(0.5px);
    transition: all 0.3s ease;
}

.cloud-part {
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}

/* Wolk groottes */
.cloud-small {
    width: 100px;
    height: 50px;
}

.cloud-small .cloud-part:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 0;
    bottom: 0;
}

.cloud-small .cloud-part:nth-child(2) {
    width: 60px;
    height: 50px;
    left: 25px;
    bottom: 5px;
    z-index: 2;
}

.cloud-small .cloud-part:nth-child(3) {
    width: 45px;
    height: 42px;
    left: 60px;
    bottom: 2px;
}

.cloud-medium {
    width: 160px;
    height: 80px;
}

.cloud-medium .cloud-part:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 0;
    bottom: 0;
}

.cloud-medium .cloud-part:nth-child(2) {
    width: 90px;
    height: 75px;
    left: 40px;
    bottom: 8px;
    z-index: 2;
}

.cloud-medium .cloud-part:nth-child(3) {
    width: 70px;
    height: 65px;
    left: 95px;
    bottom: 3px;
}

.cloud-large {
    width: 200px;
    height: 100px;
}

.cloud-large .cloud-part:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 0;
    bottom: 0;
}

.cloud-large .cloud-part:nth-child(2) {
    width: 120px;
    height: 100px;
    left: 50px;
    bottom: 10px;
    z-index: 2;
}

.cloud-large .cloud-part:nth-child(3) {
    width: 95px;
    height: 85px;
    left: 110px;
    bottom: 5px;
}

/* Witte Wolken */
.cloud-white .cloud-part:nth-child(1) {
    background-color: rgba(255, 255, 255, 1);
}

.cloud-white .cloud-part:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.95);
}

.cloud-white .cloud-part:nth-child(3) {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Animaties - langzaam drijven */
@keyframes clouds-drift-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes clouds-drift-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Content moet boven video en overlay */
.hero-section .container {
    position: relative;
    z-index: 3;
}



/* ===================================
   Hero Content Card - Glasmorphism
   =================================== */
.hero-content-card {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem 2rem;
    border-radius: 20px;
    animation: fadeIn 1s ease-out;
}

/* ===================================
   Scroll Indicator
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Button Styling
   =================================== */
.hero-content-card .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-content-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-primary) !important;
    border-color: white;
}

/* ===================================
   Responsive Aanpassingen
   =================================== */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-content-card {
        padding: 2.5rem 1.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-clouds-border {
        height: 100px;
    }
    
    .cloud-small .cloud-part {
        transform: scale(0.85);
    }
    
    .cloud-medium .cloud-part {
        transform: scale(0.85);
    }
    
    .cloud-large .cloud-part {
        transform: scale(0.85);
    }
    
    .clouds-layer-1 {
        animation-duration: 150s;
    }
    
    .clouds-layer-2 {
        animation-duration: 130s;
    }
    
    .clouds-layer-3 {
        animation-duration: 170s;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-content-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    .hero-content-card .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-clouds-border {
        height: 70px;
    }
    
    .cloud-small .cloud-part {
        transform: scale(0.7);
    }
    
    .cloud-medium .cloud-part {
        transform: scale(0.7);
    }
    
    .cloud-large .cloud-part {
        transform: scale(0.7);
    }
    
    .clouds-layer-1 {
        animation-duration: 180s;
    }
    
    .clouds-layer-2 {
        animation-duration: 160s;
    }
    
    .clouds-layer-3 {
        animation-duration: 200s;
    }
}

/* Performance optimalisatie */
@media (prefers-reduced-motion: reduce) {
    .clouds-layer,
    .scroll-indicator,
    .hero-content-card {
        animation: none !important;
    }
}

/* GPU versnelling voor betere performance */
.clouds-layer {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ===================================
   Color Classes
   =================================== */
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }
.bg-orange { background-color: var(--color-orange) !important; }

/*.bg-primary-light { background-color: rgba(235, 110, 17, 0.1) !important; }
.bg-secondary-light { background-color: rgba(206, 0, 109, 0.1) !important; }
.bg-accent-light { background-color: rgba(251, 194, 5, 0.1) !important; }*/

.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-accent { color: var(--color-accent) !important; }

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

.btn-outline-primary {
	border-color: #e40d7e;
	color: #e40d7e;
}

.btn-outline-primary:hover {
	background-color: #e40d7e;
	border-color: #e40d7e;
	color: #fff;
}

.btn-primary:hover {
    background-color: #1d9a9d;
    border-color: #1d9a9d;
}

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

.btn-secondary:hover {
    background-color: #c90b6e;
    border-color: #c90b6e;
}

.btn-accent {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-accent:hover {
    background-color: #e0ad04;
    border-color: #e0ad04;
    color: var(--color-dark);
}

.btn-outline-accent {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline-accent:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

/* ===================================
   Gradient Backgrounds
   =================================== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

/* Page Hero Default Styling */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
}

.page-hero .hero-background {
    z-index: 0;
}

.page-hero .hero-pattern {
    z-index: 1;
}

.page-hero .container {
    z-index: 2;
}

/* ===================================
   Header & Navigation
   =================================== */
.top-bar {
    font-size: 0.875rem;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 90px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
    color: #000;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ===================================
   Statische Witte Wolken Bovenaan - Speels & Aaneengesloten
   =================================== */
.hero-clouds-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

/* Witte wolken - volledig wit, geen schaduw, geen opacity */
.cloud-white-solid .cloud-part:nth-child(1) {
    background-color: #ffffff;
}

.cloud-white-solid .cloud-part:nth-child(2) {
    background-color: #ffffff;
}

.cloud-white-solid .cloud-part:nth-child(3) {
    background-color: #ffffff;
}

/* Zorg dat wolken naadloos overlappen */
.hero-clouds-static .cloud {
    filter: none;
}

/* Responsive aanpassingen voor wolken */
@media (max-width: 991.98px) {
    .hero-clouds-static {
        height: 80px;
    }
    
    .hero-clouds-static .cloud-small .cloud-part {
        transform: scale(0.8);
    }
    
    .hero-clouds-static .cloud-medium .cloud-part {
        transform: scale(0.8);
    }
    
    .hero-clouds-static .cloud-large .cloud-part {
        transform: scale(0.8);
    }
}

@media (max-width: 767.98px) {
    .hero-clouds-static {
        height: 60px;
    }
    
    .hero-clouds-static .cloud-small .cloud-part {
        transform: scale(0.65);
    }
    
    .hero-clouds-static .cloud-medium .cloud-part {
        transform: scale(0.65);
    }
    
    .hero-clouds-static .cloud-large .cloud-part {
        transform: scale(0.65);
    }
}

/* ===================================
   Hero Section met Wolken
   =================================== */
.hero-section {
    position: relative;
    padding: 40px 0;
    /* background: linear-gradient(to bottom, #ffece1 0%, #f8f9fa 100%);  ffe3f3 */
    background: 
        radial-gradient(circle, rgba(235, 110, 17, 0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(206, 0, 109, 0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(251, 194, 5, 0.08) 2px, transparent 2px),
        linear-gradient(to bottom, #ffece1 0%, #f8f9fa 100%);
    background-size: 
        50px 50px,
        80px 80px,
        60px 60px,
        100% 100%;
    background-position: 
        0 0,
        25px 25px,
        40px 10px,
        0 0;
}

.text-white-50 {
	color: rgba(255,255,255,.8) !important;
}

/* Wolken Container */
.hero-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Basis Wolk Styling */
.cloud {
    position: absolute;
    display: flex;
    align-items: flex-end;
}

.cloud-part {
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}

/* Wolk 1 - Grote oranje wolk rechtsboven */
.cloud-1 {
    top: 5%;
    right: 5%;
    width: 200px;
    height: 100px;
    animation: float-cloud-1 20s ease-in-out infinite;
}

.cloud-1 .cloud-part:nth-child(1) {
    width: 80px;
    height: 80px;
    background-color: rgba(235, 110, 17, 1);
    left: 0;
    bottom: 0;
}

.cloud-1 .cloud-part:nth-child(2) {
    width: 120px;
    height: 100px;
    background-color: rgba(235, 110, 17, 1);
    left: 50px;
    bottom: 10px;
    z-index: 2;
}

.cloud-1 .cloud-part:nth-child(3) {
    width: 90px;
    height: 85px;
    background-color: rgba(235, 110, 17, 1);
    left: 110px;
    bottom: 5px;
}

/* Wolk 2 - Middelgrote roze wolk linksboven */
.cloud-2 {
    top: 15%;
    left: 8%;
    width: 160px;
    height: 80px;
    animation: float-cloud-2 25s ease-in-out infinite;
}

.cloud-2 .cloud-part:nth-child(1) {
    width: 60px;
    height: 60px;
    background-color: rgba(206, 0, 109, 1);
    left: 0;
    bottom: 0;
}

.cloud-2 .cloud-part:nth-child(2) {
    width: 90px;
    height: 75px;
    background-color: rgba(206, 0, 109, 1);
    left: 40px;
    bottom: 8px;
    z-index: 2;
}

.cloud-2 .cloud-part:nth-child(3) {
    width: 70px;
    height: 65px;
    background-color: rgba(206, 0, 109, 1);
    left: 95px;
    bottom: 3px;
}

/* Wolk 3 - Kleine gele wolk rechts midden */
.cloud-3 {
    top: 5%;
    right: 40%;
    width: 130px;
    height: 65px;
    animation: float-cloud-3 18s ease-in-out infinite;
}

.cloud-3 .cloud-part:nth-child(1) {
    width: 50px;
    height: 50px;
    background-color: rgba(251, 194, 5, 1);
    left: 0;
    bottom: 0;
}

.cloud-3 .cloud-part:nth-child(2) {
    width: 75px;
    height: 60px;
    background-color: rgba(251, 194, 5, 1);
    left: 30px;
    bottom: 5px;
    z-index: 2;
}

.cloud-3 .cloud-part:nth-child(3) {
    width: 55px;
    height: 52px;
    background-color: rgba(251, 194, 5, 1);
    left: 80px;
    bottom: 2px;
}

/* Wolk 4 - Kleine oranje wolk linksonder */
.cloud-4 {
    bottom: 15%;
    left: 5%;
    width: 120px;
    height: 70px;
    animation: float-cloud-4 22s ease-in-out infinite;
}

.cloud-4 .cloud-part:nth-child(1) {
    width: 55px;
    height: 55px;
    background-color: rgba(235, 110, 17, 1);
    left: 0;
    bottom: 0;
}

.cloud-4 .cloud-part:nth-child(2) {
    width: 80px;
    height: 65px;
    background-color: rgba(235, 110, 17, 1);
    left: 35px;
    bottom: 6px;
    z-index: 2;
}

/* Wolk 5 - Middelgrote roze wolk rechtsonder */
.cloud-5 {
    bottom: 20%;
    right: 15%;
    width: 170px;
    height: 85px;
    animation: float-cloud-5 28s ease-in-out infinite;
}

.cloud-5 .cloud-part:nth-child(1) {
    width: 65px;
    height: 65px;
    background-color: rgba(206, 0, 109, 1);
    left: 0;
    bottom: 0;
}

.cloud-5 .cloud-part:nth-child(2) {
    width: 95px;
    height: 75px;
    background-color: rgba(206, 0, 109, 1);
    left: 42px;
    bottom: 10px;
    z-index: 2;
}

.cloud-5 .cloud-part:nth-child(3) {
    width: 70px;
    height: 68px;
    background-color: rgba(206, 0, 109, 1);
    left: 100px;
    bottom: 4px;
}

/* Wolken Animaties - Verschillende richtingen en snelheden */
@keyframes float-cloud-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-30px, 15px);
    }
    50% {
        transform: translate(-10px, -10px);
    }
    75% {
        transform: translate(20px, 5px);
    }
}

@keyframes float-cloud-2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(25px, -20px);
    }
    66% {
        transform: translate(-15px, 10px);
    }
}

@keyframes float-cloud-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, 20px) rotate(3deg);
    }
}

@keyframes float-cloud-4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    40% {
        transform: translate(30px, -15px);
    }
    80% {
        transform: translate(-20px, 10px);
    }
}

@keyframes float-cloud-5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(-35px, -25px) scale(1.05);
    }
    60% {
        transform: translate(15px, 15px) scale(0.95);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ===================================
   Cards & Hover Effects
   =================================== */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.quick-link-card,
.education-card,
.news-card,
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link-card:hover,
.education-card:hover {
    border-color: var(--color-primary);
}

.news-card:hover {
    border-color: var(--color-secondary);
}

.quick-link-card-1 {
	background-color: #22b5b9
}

.quick-link-card-2 {
	background-color: #ea5b0c
}

.quick-link-card-3 {
	background-color: #e40d7e
}

.quick-link-card-4 {
	background-color: #fbc205
}

/* ===================================
   Icon Wrappers
   =================================== */
.icon-wrapper {
    transition: all 0.3s ease;
}

.quick-link-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* ===================================
   Welcome Section
   =================================== */
.image-collage {
    position: relative;
}

.collage-badge {
    bottom: 20px;
    right: -20px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* ===================================
   News Section
   =================================== */
.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    transition: transform 0.5s ease;
    object-fit: cover;
    height: 100%;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonial-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.testimonial-shapes .shape-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.testimonial-shapes .shape-circle:nth-child(1) {
    top: -200px;
    left: -100px;
}

.testimonial-shapes .shape-circle:nth-child(2) {
    bottom: -200px;
    right: -100px;
}

.testimonial-avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

/* ===================================
   CTA Section
   =================================== */
.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
}

.cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-shapes .shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cta-shapes .shape:nth-child(1) {
    top: -50px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.cta-shapes .shape:nth-child(2) {
    bottom: -50px;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

/* ===================================
   Stats Section
   =================================== */
.stat-item {
    transition: all 0.3s ease;
}

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

.stat-icon {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* ===================================
   Footer
   =================================== */
.site-footer {

        
        background: 
        radial-gradient(circle, rgba(234, 91, 12, 0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(228, 13, 126, 0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(251, 194, 5, 0.08) 2px, transparent 2px),
        linear-gradient(to bottom, #22b5b9 0%, #4dc9cc 100%);
    background-size: 
        50px 50px,
        80px 80px,
        60px 60px,
        100% 100%;
    background-position: 
        0 0,
        25px 25px,
        40px 10px,
        0 0;
}

.footer-links a:hover {
    color: #006e70 !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-primary) !important;
    transform: translateY(-3px);
}

.contact-info a:hover {
    color: var(--color-primary) !important;
}

/* ===================================
   Back to Top Button
   =================================== */
#backToTop {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#backToTop:not(.d-none) {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
}

/* ===================================
   Badges
   =================================== */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .collage-badge {
        right: 10px;
        bottom: 10px;
    }
    
    /* Kleinere wolken op tablets */
    .cloud-part {
        transform: scale(0.8);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    /* Nog subtielere wolken op mobiel */
    .cloud-part {
        transform: scale(0.6);
        opacity: 0.5;
    }
    
    /* Langzamere animaties op mobiel voor betere performance */
    .cloud-1 { animation-duration: 30s; }
    .cloud-2 { animation-duration: 35s; }
    .cloud-3 { animation-duration: 28s; }
    .cloud-4 { animation-duration: 32s; }
    .cloud-5 { animation-duration: 38s; }
}

/* ===================================
   Utility Classes
   =================================== */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* ===================================
   Bootstrap Icon Adjustments
   =================================== */
.bi {
    vertical-align: middle;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .top-bar,
    .navbar,
    .social-links,
    #backToTop,
    .cta-section {
        display: none !important;
    }
}

/* ===================================
   Speelse Wolken Animaties
   Herbruikbare wolken componenten
   =================================== */

/* ===================================
   GEBRUIK:
   
   Voeg deze HTML toe waar je wolken wilt:
   
   <div class="clouds-container">
       <div class="cloud cloud-small cloud-orange">
           <div class="cloud-part"></div>
           <div class="cloud-part"></div>
           <div class="cloud-part"></div>
       </div>
   </div>
   
   Beschikbare classes:
   - cloud-small / cloud-medium / cloud-large
   - cloud-orange / cloud-pink / cloud-yellow / cloud-white
   - Add "animate-float" voor beweging
   =================================== */

.clouds-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   Basis Wolk Structuur
   =================================== */
.cloud {
    position: absolute;
    display: block;
    filter: blur(0.5px);
    transition: all 0.3s ease;
}

.cloud-part {
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}

/* ===================================
   Wolk Groottes
   =================================== */

/* Kleine Wolk */
.cloud-small {
    width: 100px;
    height: 50px;
}

.cloud-small .cloud-part:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 0;
    bottom: 0;
}

.cloud-small .cloud-part:nth-child(2) {
    width: 60px;
    height: 50px;
    left: 25px;
    bottom: 5px;
    z-index: 2;
}

.cloud-small .cloud-part:nth-child(3) {
    width: 45px;
    height: 42px;
    left: 60px;
    bottom: 2px;
}

/* Middelgrote Wolk */
.cloud-medium {
    width: 160px;
    height: 80px;
}

.cloud-medium .cloud-part:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 0;
    bottom: 0;
}

.cloud-medium .cloud-part:nth-child(2) {
    width: 90px;
    height: 75px;
    left: 40px;
    bottom: 8px;
    z-index: 2;
}

.cloud-medium .cloud-part:nth-child(3) {
    width: 70px;
    height: 65px;
    left: 95px;
    bottom: 3px;
}

/* Grote Wolk */
.cloud-large {
    width: 200px;
    height: 100px;
}

.cloud-large .cloud-part:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 0;
    bottom: 0;
}

.cloud-large .cloud-part:nth-child(2) {
    width: 120px;
    height: 100px;
    left: 50px;
    bottom: 10px;
    z-index: 2;
}

.cloud-large .cloud-part:nth-child(3) {
    width: 95px;
    height: 85px;
    left: 110px;
    bottom: 5px;
}

/* Extra Grote Wolk */
.cloud-xlarge {
    width: 250px;
    height: 125px;
}

.cloud-xlarge .cloud-part:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 0;
    bottom: 0;
}

.cloud-xlarge .cloud-part:nth-child(2) {
    width: 150px;
    height: 125px;
    left: 65px;
    bottom: 12px;
    z-index: 2;
}

.cloud-xlarge .cloud-part:nth-child(3) {
    width: 115px;
    height: 105px;
    left: 145px;
    bottom: 6px;
}

/* ===================================
   Wolk Kleuren
   =================================== */

/* Oranje Wolken */
.cloud-orange .cloud-part:nth-child(1) {
    background-color: rgba(235, 110, 17, 0.15);
}

.cloud-orange .cloud-part:nth-child(2) {
    background-color: rgba(235, 110, 17, 0.12);
}

.cloud-orange .cloud-part:nth-child(3) {
    background-color: rgba(235, 110, 17, 0.1);
}

/* Roze Wolken */
.cloud-pink .cloud-part:nth-child(1) {
    background-color: rgba(206, 0, 109, 0.15);
}

.cloud-pink .cloud-part:nth-child(2) {
    background-color: rgba(206, 0, 109, 0.12);
}

.cloud-pink .cloud-part:nth-child(3) {
    background-color: rgba(206, 0, 109, 0.1);
}

/* Gele Wolken */
.cloud-yellow .cloud-part:nth-child(1) {
    background-color: rgba(251, 194, 5, 0.15);
}

.cloud-yellow .cloud-part:nth-child(2) {
    background-color: rgba(251, 194, 5, 0.12);
}

.cloud-yellow .cloud-part:nth-child(3) {
    background-color: rgba(251, 194, 5, 0.1);
}

/* Witte Wolken */
.cloud-white .cloud-part:nth-child(1) {
    background-color: rgba(255, 255, 255, 0.8);
}

.cloud-white .cloud-part:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.7);
}

.cloud-white .cloud-part:nth-child(3) {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Lichte Wolken (subtiel) */
.cloud-light .cloud-part:nth-child(1) {
    background-color: rgba(255, 255, 255, 0.3);
}

.cloud-light .cloud-part:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.25);
}

.cloud-light .cloud-part:nth-child(3) {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   Bewegende Wolken Animaties
   =================================== */

/* Basis float animatie */
.animate-float-slow {
    animation: cloud-float-slow 25s ease-in-out infinite;
}

.animate-float-medium {
    animation: cloud-float-medium 20s ease-in-out infinite;
}

.animate-float-fast {
    animation: cloud-float-fast 15s ease-in-out infinite;
}

/* Verschillende bewegingspatronen */
@keyframes cloud-float-slow {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-40px, 20px);
    }
    50% {
        transform: translate(-20px, -15px);
    }
    75% {
        transform: translate(30px, 10px);
    }
}

@keyframes cloud-float-medium {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -25px) rotate(2deg);
    }
    66% {
        transform: translate(-20px, 15px) rotate(-2deg);
    }
}

@keyframes cloud-float-fast {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 30px) scale(1.05);
    }
}

/* Horizontale beweging (van links naar rechts) */
.animate-drift-right {
    animation: cloud-drift-right 30s linear infinite;
}

@keyframes cloud-drift-right {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

/* Verticale beweging (van onder naar boven) */
.animate-rise {
    animation: cloud-rise 35s linear infinite;
}

@keyframes cloud-rise {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Pulserende wolk */
.animate-pulse-cloud {
    animation: cloud-pulse 8s ease-in-out infinite;
}

@keyframes cloud-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ===================================
   Voorgedefinieerde Wolk Posities
   =================================== */

.cloud-top-left {
    top: 10%;
    left: 5%;
}

.cloud-top-center {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.cloud-top-right {
    top: 10%;
    right: 5%;
}

.cloud-middle-left {
    top: 45%;
    left: 8%;
}

.cloud-middle-right {
    top: 45%;
    right: 8%;
}

.cloud-bottom-left {
    bottom: 15%;
    left: 5%;
}

.cloud-bottom-center {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.cloud-bottom-right {
    bottom: 15%;
    right: 5%;
}

/* ===================================
   Hover Effecten
   =================================== */

.cloud-interactive {
    pointer-events: all;
    cursor: pointer;
    transition: all 0.5s ease;
}

.cloud-interactive:hover {
    transform: scale(1.1) translateY(-10px);
    filter: blur(0px);
}

.cloud-interactive:hover .cloud-part {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Responsive Wolken
   =================================== */

@media (max-width: 1200px) {
    .cloud-large .cloud-part,
    .cloud-xlarge .cloud-part {
        transform: scale(0.9);
    }
}

@media (max-width: 991px) {
    .cloud-large .cloud-part,
    .cloud-xlarge .cloud-part {
        transform: scale(0.8);
    }
    
    .cloud-medium .cloud-part {
        transform: scale(0.9);
    }
}

@media (max-width: 767px) {
    .cloud {
        opacity: 0.7;
    }
    
    .cloud-large .cloud-part,
    .cloud-xlarge .cloud-part {
        transform: scale(0.6);
    }
    
    .cloud-medium .cloud-part {
        transform: scale(0.75);
    }
    
    .cloud-small .cloud-part {
        transform: scale(0.85);
    }
    
    /* Langzamere animaties op mobiel */
    .animate-float-slow { animation-duration: 35s; }
    .animate-float-medium { animation-duration: 30s; }
    .animate-float-fast { animation-duration: 25s; }
}

/* ===================================
   Speciale Effecten
   =================================== */

/* Wolken met schaduw */
.cloud-shadow .cloud-part {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Wolken met glow effect */
.cloud-glow .cloud-part:nth-child(2) {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Wolken groep (meerdere wolken samen) */
.cloud-group {
    position: relative;
}

.cloud-group .cloud:nth-child(1) {
    z-index: 3;
}

.cloud-group .cloud:nth-child(2) {
    z-index: 2;
    margin-left: 60px;
    margin-top: 20px;
    opacity: 0.8;
}

.cloud-group .cloud:nth-child(3) {
    z-index: 1;
    margin-left: 120px;
    margin-top: 40px;
    opacity: 0.6;
}

/* ===================================
   Voorbeelden voor verschillende secties
   =================================== */

/* Wolken voor headers */
.header-clouds .cloud {
    animation-duration: 40s !important;
}

/* Wolken voor footers */
.footer-clouds .cloud {
    opacity: 0.5;
    filter: blur(2px);
}

/* Wolken voor CTA secties */
.cta-clouds .cloud-part {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* ===================================
   Performance Optimalisaties
   =================================== */

/* Reduceer animaties voor gebruikers die motion sickness hebben */
@media (prefers-reduced-motion: reduce) {
    .cloud {
        animation: none !important;
    }
}

/* GPU versnelling voor betere performance */
.cloud {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
/* Hero Pattern Background */
.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}

/* ===================================
   ZON NAVIGATIE - WOLKEN & VOGELS
   Bewegende decoratieve elementen
   Originele stijl zoals bij de boom
   =================================== */

/* ===================================
   Wolken Container
   =================================== */
.sun-clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   Basis Wolk Styling
   =================================== */
.sun-cloud {
    position: absolute;
    display: block;
    z-index: 1;
}

.sun-cloud .cloud-part {
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   LAAG 1: Achtergrond Wolken (groot, langzaam)
   =================================== */

/* Achtergrond wolk 1 - Linksboven groot */
.sun-cloud-bg-1 {
    top: 3%;
    left: 2%;
    width: 200px;
    height: 100px;
    animation: cloud-drift-1 35s ease-in-out infinite;
    opacity: 0.7;
}

.sun-cloud-bg-1 .cloud-part:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 0;
    bottom: 0;
}

.sun-cloud-bg-1 .cloud-part:nth-child(2) {
    width: 120px;
    height: 100px;
    left: 50px;
    bottom: 10px;
    z-index: 2;
}

.sun-cloud-bg-1 .cloud-part:nth-child(3) {
    width: 90px;
    height: 85px;
    left: 115px;
    bottom: 5px;
}

/* Achtergrond wolk 2 - Rechtsboven groot */
.sun-cloud-bg-2 {
    top: 5%;
    right: 5%;
    width: 220px;
    height: 110px;
    animation: cloud-drift-2 40s ease-in-out infinite;
    animation-delay: -10s;
    opacity: 0.75;
}

.sun-cloud-bg-2 .cloud-part:nth-child(1) {
    width: 90px;
    height: 90px;
    left: 0;
    bottom: 0;
}

.sun-cloud-bg-2 .cloud-part:nth-child(2) {
    width: 130px;
    height: 110px;
    left: 55px;
    bottom: 12px;
    z-index: 2;
}

.sun-cloud-bg-2 .cloud-part:nth-child(3) {
    width: 100px;
    height: 90px;
    left: 125px;
    bottom: 6px;
}

/* Achtergrond wolk 3 - Links midden */
.sun-cloud-bg-3 {
    top: 45%;
    left: -2%;
    width: 180px;
    height: 90px;
    animation: cloud-drift-3 38s ease-in-out infinite;
    animation-delay: -5s;
    opacity: 0.65;
}

.sun-cloud-bg-3 .cloud-part:nth-child(1) {
    width: 70px;
    height: 70px;
    left: 0;
    bottom: 0;
}

.sun-cloud-bg-3 .cloud-part:nth-child(2) {
    width: 100px;
    height: 85px;
    left: 45px;
    bottom: 8px;
    z-index: 2;
}

.sun-cloud-bg-3 .cloud-part:nth-child(3) {
    width: 80px;
    height: 75px;
    left: 105px;
    bottom: 4px;
}

/* Achtergrond wolk 4 - Rechts onder */
.sun-cloud-bg-4 {
    bottom: 8%;
    right: 0%;
    width: 190px;
    height: 95px;
    animation: cloud-drift-4 42s ease-in-out infinite;
    animation-delay: -15s;
    opacity: 0.7;
}

.sun-cloud-bg-4 .cloud-part:nth-child(1) {
    width: 75px;
    height: 75px;
    left: 0;
    bottom: 0;
}

.sun-cloud-bg-4 .cloud-part:nth-child(2) {
    width: 110px;
    height: 90px;
    left: 50px;
    bottom: 10px;
    z-index: 2;
}

.sun-cloud-bg-4 .cloud-part:nth-child(3) {
    width: 85px;
    height: 80px;
    left: 110px;
    bottom: 5px;
}

/* ===================================
   LAAG 2: Middelste Wolken
   =================================== */

/* Midden wolk 1 */
.sun-cloud-mid-1 {
    top: 15%;
    left: 15%;
    width: 140px;
    height: 70px;
    animation: cloud-float-mid-1 28s ease-in-out infinite;
    opacity: 0.85;
}

.sun-cloud-mid-1 .cloud-part:nth-child(1) {
    width: 55px;
    height: 55px;
    left: 0;
    bottom: 0;
}

.sun-cloud-mid-1 .cloud-part:nth-child(2) {
    width: 80px;
    height: 65px;
    left: 35px;
    bottom: 8px;
    z-index: 2;
}

.sun-cloud-mid-1 .cloud-part:nth-child(3) {
    width: 60px;
    height: 58px;
    left: 85px;
    bottom: 3px;
}

/* Midden wolk 2 */
.sun-cloud-mid-2 {
    top: 10%;
    right: 25%;
    width: 130px;
    height: 65px;
    animation: cloud-float-mid-2 25s ease-in-out infinite;
    animation-delay: -8s;
    opacity: 0.8;
}

.sun-cloud-mid-2 .cloud-part:nth-child(1) {
    width: 50px;
    height: 50px;
    left: 0;
    bottom: 0;
}

.sun-cloud-mid-2 .cloud-part:nth-child(2) {
    width: 75px;
    height: 60px;
    left: 32px;
    bottom: 6px;
    z-index: 2;
}

.sun-cloud-mid-2 .cloud-part:nth-child(3) {
    width: 55px;
    height: 52px;
    left: 78px;
    bottom: 2px;
}

/* Midden wolk 3 */
.sun-cloud-mid-3 {
    top: 55%;
    left: 8%;
    width: 120px;
    height: 60px;
    animation: cloud-float-mid-3 30s ease-in-out infinite;
    animation-delay: -12s;
    opacity: 0.75;
}

.sun-cloud-mid-3 .cloud-part:nth-child(1) {
    width: 45px;
    height: 45px;
    left: 0;
    bottom: 0;
}

.sun-cloud-mid-3 .cloud-part:nth-child(2) {
    width: 70px;
    height: 55px;
    left: 28px;
    bottom: 6px;
    z-index: 2;
}

.sun-cloud-mid-3 .cloud-part:nth-child(3) {
    width: 50px;
    height: 48px;
    left: 72px;
    bottom: 2px;
}

/* Midden wolk 4 */
.sun-cloud-mid-4 {
    top: 35%;
    right: 8%;
    width: 150px;
    height: 75px;
    animation: cloud-float-mid-4 32s ease-in-out infinite;
    animation-delay: -3s;
    opacity: 0.85;
}

.sun-cloud-mid-4 .cloud-part:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 0;
    bottom: 0;
}

.sun-cloud-mid-4 .cloud-part:nth-child(2) {
    width: 85px;
    height: 70px;
    left: 38px;
    bottom: 8px;
    z-index: 2;
}

.sun-cloud-mid-4 .cloud-part:nth-child(3) {
    width: 65px;
    height: 62px;
    left: 90px;
    bottom: 4px;
}

/* Midden wolk 5 */
.sun-cloud-mid-5 {
    bottom: 25%;
    left: 20%;
    width: 110px;
    height: 55px;
    animation: cloud-float-mid-5 26s ease-in-out infinite;
    animation-delay: -18s;
    opacity: 0.8;
}

.sun-cloud-mid-5 .cloud-part:nth-child(1) {
    width: 42px;
    height: 42px;
    left: 0;
    bottom: 0;
}

.sun-cloud-mid-5 .cloud-part:nth-child(2) {
    width: 65px;
    height: 50px;
    left: 26px;
    bottom: 5px;
    z-index: 2;
}

.sun-cloud-mid-5 .cloud-part:nth-child(3) {
    width: 48px;
    height: 45px;
    left: 65px;
    bottom: 2px;
}

/* Midden wolk 6 */
.sun-cloud-mid-6 {
    bottom: 18%;
    right: 22%;
    width: 135px;
    height: 68px;
    animation: cloud-float-mid-6 29s ease-in-out infinite;
    animation-delay: -7s;
    opacity: 0.78;
}

.sun-cloud-mid-6 .cloud-part:nth-child(1) {
    width: 52px;
    height: 52px;
    left: 0;
    bottom: 0;
}

.sun-cloud-mid-6 .cloud-part:nth-child(2) {
    width: 78px;
    height: 62px;
    left: 34px;
    bottom: 7px;
    z-index: 2;
}

.sun-cloud-mid-6 .cloud-part:nth-child(3) {
    width: 58px;
    height: 55px;
    left: 82px;
    bottom: 3px;
}

/* ===================================
   LAAG 3: Voorgrond Wolken (klein, sneller)
   =================================== */

/* Voorgrond wolk 1 */
.sun-cloud-front-1 {
    top: 20%;
    left: 30%;
    width: 90px;
    height: 45px;
    animation: cloud-fast-1 18s ease-in-out infinite;
    opacity: 0.9;
}

.sun-cloud-front-1 .cloud-part:nth-child(1) {
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
}

.sun-cloud-front-1 .cloud-part:nth-child(2) {
    width: 52px;
    height: 42px;
    left: 22px;
    bottom: 4px;
    z-index: 2;
}

.sun-cloud-front-1 .cloud-part:nth-child(3) {
    width: 38px;
    height: 36px;
    left: 55px;
    bottom: 2px;
}

/* Voorgrond wolk 2 */
.sun-cloud-front-2 {
    top: 8%;
    right: 40%;
    width: 85px;
    height: 42px;
    animation: cloud-fast-2 20s ease-in-out infinite;
    animation-delay: -5s;
    opacity: 0.88;
}

.sun-cloud-front-2 .cloud-part:nth-child(1) {
    width: 32px;
    height: 32px;
    left: 0;
    bottom: 0;
}

.sun-cloud-front-2 .cloud-part:nth-child(2) {
    width: 48px;
    height: 38px;
    left: 20px;
    bottom: 4px;
    z-index: 2;
}

.sun-cloud-front-2 .cloud-part:nth-child(3) {
    width: 35px;
    height: 33px;
    left: 52px;
    bottom: 2px;
}

/* Voorgrond wolk 3 */
.sun-cloud-front-3 {
    bottom: 35%;
    left: 35%;
    width: 80px;
    height: 40px;
    animation: cloud-fast-3 22s ease-in-out infinite;
    animation-delay: -10s;
    opacity: 0.85;
}

.sun-cloud-front-3 .cloud-part:nth-child(1) {
    width: 30px;
    height: 30px;
    left: 0;
    bottom: 0;
}

.sun-cloud-front-3 .cloud-part:nth-child(2) {
    width: 45px;
    height: 36px;
    left: 18px;
    bottom: 4px;
    z-index: 2;
}

.sun-cloud-front-3 .cloud-part:nth-child(3) {
    width: 33px;
    height: 31px;
    left: 48px;
    bottom: 2px;
}

/* Voorgrond wolk 4 */
.sun-cloud-front-4 {
    bottom: 12%;
    right: 35%;
    width: 95px;
    height: 48px;
    animation: cloud-fast-4 19s ease-in-out infinite;
    animation-delay: -14s;
    opacity: 0.92;
}

.sun-cloud-front-4 .cloud-part:nth-child(1) {
    width: 36px;
    height: 36px;
    left: 0;
    bottom: 0;
}

.sun-cloud-front-4 .cloud-part:nth-child(2) {
    width: 55px;
    height: 44px;
    left: 24px;
    bottom: 5px;
    z-index: 2;
}

.sun-cloud-front-4 .cloud-part:nth-child(3) {
    width: 40px;
    height: 38px;
    left: 58px;
    bottom: 2px;
}

/* ===================================
   Wolken Animaties - Achtergrond (langzaam drift)
   =================================== */
@keyframes cloud-drift-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 20px);
    }
    50% {
        transform: translate(30px, -15px);
    }
    75% {
        transform: translate(-20px, 10px);
    }
}

@keyframes cloud-drift-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-60px, 25px) scale(1.02);
    }
    66% {
        transform: translate(-30px, -20px) scale(0.98);
    }
}

@keyframes cloud-drift-3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(70px, -30px);
    }
}

@keyframes cloud-drift-4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    40% {
        transform: translate(-50px, -25px);
    }
    80% {
        transform: translate(20px, 15px);
    }
}

/* ===================================
   Wolken Animaties - Midden (zweef beweging)
   =================================== */
@keyframes cloud-float-mid-1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.85;
    }
    25% {
        transform: translate(40px, 15px);
        opacity: 0.8;
    }
    50% {
        transform: translate(20px, -10px);
        opacity: 0.9;
    }
    75% {
        transform: translate(-25px, 8px);
        opacity: 0.82;
    }
}

@keyframes cloud-float-mid-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-45px, 25px) rotate(3deg);
        opacity: 0.88;
    }
}

@keyframes cloud-float-mid-3 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.75;
    }
    33% {
        transform: translate(35px, -20px);
        opacity: 0.82;
    }
    66% {
        transform: translate(-15px, 12px);
        opacity: 0.78;
    }
}

@keyframes cloud-float-mid-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.85;
    }
    30% {
        transform: translate(-40px, -18px) scale(1.03);
        opacity: 0.9;
    }
    70% {
        transform: translate(25px, 22px) scale(0.97);
        opacity: 0.8;
    }
}

@keyframes cloud-float-mid-5 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate(55px, -25px);
        opacity: 0.88;
    }
}

@keyframes cloud-float-mid-6 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.78;
    }
    40% {
        transform: translate(-35px, 18px) rotate(-2deg);
        opacity: 0.85;
    }
    80% {
        transform: translate(20px, -12px) rotate(2deg);
        opacity: 0.75;
    }
}

/* ===================================
   Wolken Animaties - Voorgrond (sneller)
   =================================== */
@keyframes cloud-fast-1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.9;
    }
    25% {
        transform: translate(60px, 20px);
        opacity: 0.85;
    }
    50% {
        transform: translate(35px, -15px);
        opacity: 0.95;
    }
    75% {
        transform: translate(-30px, 12px);
        opacity: 0.88;
    }
}

@keyframes cloud-fast-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.88;
    }
    50% {
        transform: translate(-70px, 30px) scale(1.05);
        opacity: 0.95;
    }
}

@keyframes cloud-fast-3 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.85;
    }
    33% {
        transform: translate(50px, -25px);
        opacity: 0.92;
    }
    66% {
        transform: translate(-25px, 18px);
        opacity: 0.82;
    }
}

@keyframes cloud-fast-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.92;
    }
    50% {
        transform: translate(-55px, -20px) rotate(4deg);
        opacity: 0.85;
    }
}

/* ===================================
   VOGELS - Originele stijl (zoals tree-bird)
   =================================== */
.sun-bird {
    position: absolute;
    font-size: 1.5rem;
    z-index: 11;
    pointer-events: none;
}

/* Vogel 1 - Linksboven */
.sun-bird-1 {
    top: 80px;
    left: 20%;
    animation: bird-fly 15s ease-in-out infinite;
}

/* Vogel 2 - Rechtsboven */
.sun-bird-2 {
    top: 120px;
    right: 25%;
    animation: bird-fly 15s ease-in-out infinite;
    animation-delay: -7s;
}

/* Vogel 3 - Links midden */
.sun-bird-3 {
    top: 200px;
    left: 10%;
    animation: bird-fly-reverse 18s ease-in-out infinite;
    animation-delay: -3s;
}

/* Vogel 4 - Rechts midden */
.sun-bird-4 {
    top: 280px;
    right: 15%;
    animation: bird-fly 20s ease-in-out infinite;
    animation-delay: -10s;
}

/* Vogel 5 - Boven midden */
.sun-bird-5 {
    top: 60px;
    left: 45%;
    animation: bird-fly-high 17s ease-in-out infinite;
    animation-delay: -5s;
}

/* ===================================
   Vogel Animaties - Originele stijl
   =================================== */
@keyframes bird-fly {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -30px) scale(1.1);
    }
    50% {
        transform: translate(200px, -10px) scale(1);
    }
    75% {
        transform: translate(100px, 20px) scale(0.9);
    }
}

@keyframes bird-fly-reverse {
    0%, 100% {
        transform: translate(0, 0) scale(1) scaleX(-1);
    }
    25% {
        transform: translate(-80px, -25px) scale(1.1) scaleX(-1);
    }
    50% {
        transform: translate(-160px, -5px) scale(1) scaleX(-1);
    }
    75% {
        transform: translate(-80px, 15px) scale(0.9) scaleX(-1);
    }
}

@keyframes bird-fly-high {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(80px, -50px) scale(1.15);
    }
    40% {
        transform: translate(150px, -20px) scale(1);
    }
    60% {
        transform: translate(100px, 30px) scale(0.9);
    }
    80% {
        transform: translate(50px, -10px) scale(1.05);
    }
}

/* ===================================
   Responsive Aanpassingen
   =================================== */
@media (max-width: 991.98px) {
    /* Kleinere wolken */
    .sun-cloud .cloud-part {
        transform: scale(0.75);
    }
    
    /* Verberg sommige voorgrond wolken */
    .sun-cloud-front-3,
    .sun-cloud-front-4 {
        display: none;
    }
    
    /* Minder vogels */
    .sun-bird-4,
    .sun-bird-5 {
        display: none;
    }
    
    /* Langzamere animaties */
    .sun-cloud { animation-duration: 45s !important; }
    .sun-bird { animation-duration: 20s !important; }
}

@media (max-width: 767.98px) {
    /* Nog kleinere wolken */
    .sun-cloud .cloud-part {
        transform: scale(0.55);
    }
    
    /* Verberg meer wolken */
    .sun-cloud-mid-3,
    .sun-cloud-mid-5,
    .sun-cloud-front-1,
    .sun-cloud-front-2,
    .sun-cloud-front-3,
    .sun-cloud-front-4 {
        display: none;
    }
    
    /* Alleen 2 vogels op mobiel */
    .sun-bird-3,
    .sun-bird-4,
    .sun-bird-5 {
        display: none;
    }
    
    .sun-bird {
        font-size: 1.2rem;
    }
    
    /* Nog langzamere animaties */
    .sun-cloud { animation-duration: 55s !important; }
    .sun-bird { animation-duration: 25s !important; }
}

@media (max-width: 575.98px) {
    /* Minimale wolken */
    .sun-cloud-bg-3,
    .sun-cloud-bg-4,
    .sun-cloud-mid-1,
    .sun-cloud-mid-2,
    .sun-cloud-mid-3,
    .sun-cloud-mid-4,
    .sun-cloud-mid-5,
    .sun-cloud-mid-6,
    .sun-cloud-front-1,
    .sun-cloud-front-2,
    .sun-cloud-front-3,
    .sun-cloud-front-4 {
        display: none;
    }
    
    .sun-cloud .cloud-part {
        transform: scale(0.45);
    }
    
    .sun-bird {
        font-size: 1rem;
    }
}

/* ===================================
   Performance Optimalisaties
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .sun-cloud,
    .sun-bird {
        animation: none !important;
    }
    
    .sun-cloud {
        opacity: 0.6;
    }
    
    .sun-bird {
        display: none;
    }
}

/* GPU versnelling */
.sun-cloud,
.sun-bird {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ===================================
   FAQ Styling
   =================================== */
.faq-section {
    background: #f8f9fa;
}

.faq-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    color: #006e70;
}

.faq-btn:focus {
    box-shadow: none;
}

.faq-icon-wrapper {
    width: 30px;
    height: 30px;
    background: #006e70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.faq-icon-wrapper .bi {
    color: white;
    font-size: 0.9rem;
    position: absolute;
    transition: all 0.3s ease;
}

.faq-btn .faq-icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-btn .faq-icon-plus {
    opacity: 1;
}

.faq-btn:not(.collapsed) .faq-icon-minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-btn:not(.collapsed) .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-answer {
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Icon Visibility Fixes
   =================================== */
.icon-circle .bi,
.icon-box .bi {
    display: inline-block !important;
}

/* Ensure icons in opacity backgrounds are visible */
.bg-primary.bg-opacity-10 .bi,
.bg-secondary.bg-opacity-10 .bi,
.bg-warning.bg-opacity-10 .bi,
.bg-warning.bg-opacity-25 .bi {
    opacity: 1 !important;
}

/* Fix solid background icons */
.bg-primary:not([class*="opacity"]) .bi,
.bg-secondary:not([class*="opacity"]) .bi,
.bg-info:not([class*="opacity"]) .bi,
.bg-gradient-primary .bi {
    color: white !important;
}

/* ===================================
   Team Page Styling
   =================================== */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.team-avatar {
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
}

/* ===================================
   Equal Height Blocks
   =================================== */
.missie-visie-section .row {
    align-items: stretch !important;
}

.missie-card,
.visie-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.missie-card p,
.visie-card p {
    flex: 1;
}

/* Match height for cards in rows */
.row.g-4 > [class*="col-"] > .h-100,
.row.g-5 > [class*="col-"] > .h-100 {
    display: flex;
    flex-direction: column;
}

/* ===================================
   Onderwijs Page Icon Fixes
   =================================== */
.speerpunt-card .icon-circle {
    background-color: #006e70 !important;
}

.speerpunt-card .icon-circle .bi {
    color: white !important;
}

/* ===================================
   Comprehensive Icon Fixes
   =================================== */
/* Solid background icons - MUST be white */
.bg-primary .bi,
.bg-secondary .bi,
.bg-info .bi,
.bg-success .bi,
.bg-danger .bi,
.bg-gradient-primary .bi,
[style*="background-color: #006e70"] .bi,
[style*="background: #006e70"] .bi {
    color: #ffffff !important;
}

/* Specific fix for speerpunt icons */
.speerpunt-card .icon-circle.bg-primary .bi {
    color: #ffffff !important;
}

/* Fix icon circles with text-white class */
.icon-circle.text-white .bi,
.text-white .bi {
    color: #ffffff !important;
}

/* Light background icons - MUST be colored */
.bg-light .icon-circle .bi {
    color: inherit;
}

/* Ensure bi icons display properly */
.bi {
    display: inline-block !important;
    vertical-align: middle;
}

.icon-circle .bi,
.icon-box .bi {
    font-size: inherit;
    line-height: 1;
}

/* ===================================
   FAQ / Accordion Reset
   Override Bootstrap accordion defaults
   =================================== */
.faq-section .accordion-button,
.faq-section .accordion-button:not(.collapsed),
.faq-section .accordion-button:focus,
.faq-section .accordion-button:hover {
    background-color: white !important;
    box-shadow: none !important;
    color: #333 !important;
}

.faq-section .accordion-button::after {
    display: none !important;
}

.faq-section .accordion-item {
    border: none !important;
    background: white !important;
}

.faq-section .card,
.faq-section .card-header {
    background: white !important;
    border: none !important;
}

/* General button reset for FAQ */
.faq-question,
.faq-question:focus,
.faq-question:active,
.faq-question.collapsed,
.faq-question:not(.collapsed) {
    background-color: white !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ===================================
   LIGHT BUTTON ICON FIX
   Icons on light/white/yellow buttons should be dark
   =================================== */
.btn-light i.bi,
.btn-outline-light i.bi,
.btn-warning i.bi,
.btn-outline-warning i.bi,
.bg-warning .btn i.bi,
.bg-light .btn:not(.btn-dark) i.bi,
.btn-white i.bi,
a.btn-light i.bi,
a.btn-warning i.bi {
    color: #333 !important;
}

.btn-dark .bi {
	color: #fff !important;
}

/* For buttons with white background */
.btn-light,
.btn-outline-light:hover,
.btn-warning,
.btn-outline-warning:hover {
    color: #333 !important;
}

.btn-light i.bi::before,
.btn-warning i.bi::before {
    color: inherit;
}

/* Ensure icons in yellow/light contexts are visible */
.bg-warning a i.bi,
.bg-light a:not(.btn-dark) i.bi,
.text-dark i.bi,
.card.bg-warning i.bi,
.card.bg-light i.bi {
    color: #333 !important;
}

/* Fix for aanmelden page and similar light button contexts */
.hero-aanmelden .btn-warning i.bi,
.cta-aanmelden .btn-light i.bi,
.btn.btn-warning i.bi,
.btn.btn-light i.bi {
    color: #333 !important;
}

/* ===================================
   SPEERPUNTEN ICON SPACING FIX
   Add space between icon and title
   =================================== */
.speerpunt-card .speerpunt-content h4,
.speerpunt-card .speerpunt-content .fw-bold {
    margin-top: 0.5rem;
}

.speerpunt-icon {
    flex-shrink: 0;
}

.speerpunt-card {
    align-items: flex-start;
}

/* Ensure proper vertical alignment */
.speerpunt-card .icon-circle {
    margin-top: 0.25rem;
}