:root {
    --blue-dark: #020617;
    --blue-gradient-start: #1e3a8a;
    --blue-gradient-end: #020617;
    --blue-button-start: #3b82f6;
    --blue-button-end: #60a5fa;
    --blue-shadow: rgba(59, 130, 246, 0.4);
    --blue-shadow-light: rgba(59, 130, 246, 0.2);
    --blue-text: #60a5fa;
    --blue-border: rgba(96, 165, 250, 0.5);
    --nav-bg: rgba(2, 6, 23, 0.6);
    --nav-bg-mobile: rgba(2, 6, 23, 0.98);
    --glass: rgba(255, 255, 255, 0.14);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-hover: rgba(255, 255, 255, 0.15);
    --glass-image-bg: rgba(255, 255, 255, 0.05);
    --text-primary: white;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --shadow-dark: rgba(0, 0, 0, 0.4);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --instagram-color: rgba(225, 48, 108, 0.5);
    --instagram-shadow: rgba(225, 48, 108, 0.2);
    --linkedin-color: rgba(0, 119, 181, 0.5);
    --linkedin-shadow: rgba(0, 119, 181, 0.2);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background: radial-gradient(circle at top, var(--blue-gradient-start), var(--blue-gradient-end));
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
}

a {
    text-decoration: underline;
    color: white;
}

/* Navigation */
.nav {
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(20px);
    background: var(--nav-bg);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    max-width: 1400px;
    margin: auto;
    padding: 1rem clamp(1rem, 3vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    height: 68px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.bi-gear-wide {
    width: 2400px;
    position: absolute;
    right: 10vw;
    z-index: -1;
    mix-blend-mode: soft-light;
    color: rgb(176, 176, 203);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    opacity: .8;
    transition: opacity 0.3s ease;
    font-size: clamp(0.875rem, 2vw, 1rem);
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-btn {
    padding: 0.5rem 1.5rem !important;
    background: linear-gradient(135deg, var(--blue-button-start), var(--blue-button-end));
    border-radius: 10px;
    opacity: 1 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--blue-shadow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    place-content: center;
    text-align: center;
    position: relative;
    padding: 8rem clamp(1rem, 4vw, 1.5rem) 4rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100vw;
}

.hero-glow {
    position: absolute;
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    background: radial-gradient(circle, var(--blue-button-start), transparent 70%);
    filter: blur(120px);
    opacity: 0.6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 500;
}


/* Sections */
.section {
    padding: 4rem clamp(1rem, 4vw, 1.5rem);
    max-width: 100dvw;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    margin: 2rem auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 40px 100px var(--shadow-dark);
    border: 1px solid var(--glass-border);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.glass h2 {
    margin-bottom: 1.5rem;
}

.glass p {
    margin-bottom: 1rem;
}

.over-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.over-item {
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.over-item h2 {
    margin: 1rem 0 0.5rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.over-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

/* Image styling */
.over-img {
    width: 100%;
    max-width: 250px;
    /* pas aan als je grotere afbeelding wilt */
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.over-samenwerking {
    margin-top: 2rem;
}

.partners-slider {
    margin-top: 3rem;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scrollPartners 35s linear infinite;
}

.partners-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partners-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Keyframes */
@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* Bestuur Section */
.bestuur-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.bestuur-item {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 500;
}

.bestuur-item:last-child {
    border-bottom: none;
}

.bestuur-item span {
    opacity: 0.7;
    font-weight: 400;
}

.bestuur-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.bestuur-img {
    height: 100%;
    max-height: 420px;
    object-fit: cover;
}

.bestuur-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bestuur-years {
    display: flex;
    gap: 0.5rem;
}

.bestuur-years button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
}

.bestuur-years button.active,
.bestuur-years button:hover {
    background: var(--blue-button-start);
    box-shadow: 0 4px 12px var(--blue-shadow);
}


.wide-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    margin-top: 2rem;
    display: block;
    box-shadow: 0 20px 60px var(--shadow-medium);
    box-sizing: border-box;
    height: auto;
}

/* Activities Section */
.light-title {
    text-align: center;
    margin-bottom: 3rem;
}

.activity-section {
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.activity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.activity-content>img {
    align-self: center;
}

.activity-img {
    width: 100%;
    max-width: 100%;
    height: 350px;
    min-height: 350px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    display: block;
    box-sizing: border-box;
    background: var(--glass-image-bg);
}

.activity-img-small {
    width: 100%;
    max-width: 100%;
    height: 250px;
    min-height: 250px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    display: block;
    box-sizing: border-box;
    background: var(--glass-image-bg);
}

.activity-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.activity-text {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-text h3 {
    margin-bottom: 1rem;
    color: white;
    word-wrap: break-word;
}

.activity-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.video-block {
    margin-top: 3rem;
}

.video-block h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.video-block p {
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.activity-video {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px var(--shadow-medium);
    box-sizing: border-box;
    height: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    padding-top: 56.25%;
    /* 16:9 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-block {
    padding-left: 0;
    padding-right: 0;
}

/* Lid worden Section */
.center {
    text-align: center;
}

.benefits {
    list-style: none;
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

.benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.1;
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-text);
    font-weight: bold;
    font-size: 1.25rem;
}

.cta-big {
    display: inline-block;
    margin-top: 1rem;
    padding: clamp(1rem, 3vw, 1.4rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    background: linear-gradient(135deg, var(--blue-button-start), var(--blue-button-end));
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.3px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    word-wrap: break-word;
}

.cta-big-sec {
    display: inline-block;
    margin-top: 2rem;
    padding: clamp(1rem, 3vw, 1.4rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.3px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    word-wrap: break-word;
}

.cta-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--blue-shadow);
}

.cta-big-sec:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--blue-shadow);
}

/* Contact Section */
.dark {
    background: var(--blue-dark);
    padding: 4rem clamp(1rem, 4vw, 1.5rem);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.dark h2 {
    margin-bottom: 2rem;
}

.socials-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.125rem);
    padding: 1rem clamp(1.5rem, 4vw, 2rem);
    border-radius: 12px;
    background: var(--glass-bg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 0;
    flex: 1 1 auto;
    box-sizing: border-box;
}

.social-link:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-3px);
    border-color: var(--blue-border);
    box-shadow: 0 8px 20px var(--blue-shadow-light);
}

.social-link.instagram:hover {
    border-color: var(--instagram-color);
    box-shadow: 0 8px 20px var(--instagram-shadow);
}

.social-link.linkedin:hover {
    border-color: var(--linkedin-color);
    box-shadow: 0 8px 20px var(--linkedin-shadow);
}

.social-link.enterbreda:hover {
    border-color: var(--blue-border);
    box-shadow: 0 8px 20px var(--blue-shadow-light);
}

.footer {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.8;
}

/* Scroll to Top Button */
#top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-button-start), var(--blue-button-end));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px var(--blue-shadow);
}

#top.visible {
    opacity: 1;
    visibility: visible;
}

#top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--blue-shadow);
}

#contact * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
}

#contact.animated * {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {

    .nav-inner {
        height: 56px;
    }

    .logo {
        max-height: 32px;
    }

    .bi-gear-wide {
        width: 900px;
        position: absolute;
        right: 0vw;
        z-index: -1;
        mix-blend-mode: soft-light;
        color: rgb(176, 176, 203);
    }


    .hero p,
    .hero .hero-button-wrapper {
        max-width: 38rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: xx-large;
    }


    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--nav-bg-mobile);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
        margin-left: 0;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .section {
        padding: 2.5rem 1.5rem;
        margin: 2;
    }

    .glass {
        padding: 1.5rem 1.5rem;
        margin: 1.5rem auto;
        border-radius: 20px;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-button-wrapper {
        display: flex;
        flex-direction: column;
    }

    .over-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .over-img {
        max-width: 100%;
    }

    .partners-track {
        gap: 2rem;
        animation-duration: 25s;
    }

    .partners-track img {
        max-height: 42px;
    }

    .activity-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .activity-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .activity-img {
        height: 140px;
        min-height: 140px;
    }

    .activity-img-small {
        height: 120px;
        min-height: 120px;
    }

    .wide-img {
        margin-top: 1.5rem;
        border-radius: 15px;
    }

    .bestuur-list {
        gap: 0.75rem;
    }

    .bestuur-years {
        padding: 1rem;
        overflow-x: scroll;
    }

    .bestuur-item {
        font-size: clamp(1rem, 4vw, 1.25rem);
        padding: 0.75rem 0;
    }

    .bestuur-layout {
        grid-template-columns: 1fr;
        gap: .1rem;
    }

    .bestuur-img {
        max-height: none;
    }

    .socials {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 2rem;
    }

    .social-link {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
        padding: .875rem 1.5rem;
        margin: 0;
        border-radius: 10px;
    }

    .socials-container {
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .socials-container .glass {
        margin: 0 auto 2rem;
        padding: 1.5rem 1.5rem;
    }

    .dark {
        padding: 3rem 1.5rem;
    }

    .nav-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    img,
    video {
        max-width: 100% !important;
        height: auto !important;
    }

    .section,
    .glass,
    .activity-content,
    .activity-images,
    .socials-container,
    .bestuur-list,
    .benefits {
        max-width: 100%;
        box-sizing: border-box;
    }

    .activity-section {
        margin-left: 0;
        margin-right: 0;
    }

    .video-block p {
        margin: 2rem;
    }

    .activity-video {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 80%;
    }

    .activity-section {
        margin-left: 0;
        margin-right: 0;
    }

    .content-column {
        max-width: 900px;
        /* zelfde als je tekst */
        margin: 0 auto;
        text-align: center;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        margin-top: 2rem;
        padding-top: 56.25%;
        /* 16:9 */
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px var(--shadow-medium);
    }

    .video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .video-block {
        padding-left: 0;
        padding-right: 0;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    html {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .dark {
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
    }

    .section,
    .glass,
    .activity-section,
    .socials-container,
    .video-block {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    #top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .section {
        padding: 4rem 3rem;
    }

    .glass {
        padding: 3rem 2.5rem;
    }

    .activity-content {
        gap: 1.5rem;
    }

    .activity-img {
        height: 300px;
        min-height: 300px;
    }

    .activity-img-small {
        height: 220px;
        min-height: 220px;
    }
}

@media (min-width: 1025px) {
    .section {
        padding: 6rem 4rem;
    }

    .glass {
        padding: 4rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--blue-text);
    outline-offset: 2px;
}

/* Scroll Animations - Optimized for Performance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* Base animation setup */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Ensure elements stay visible after animation */
.animate-on-scroll.animated {
    opacity: 1;
}

/* Fix: Make all activity elements always visible (no animations) */
#activiteiten .activity-section,
#activiteiten .activity-content,
#activiteiten .activity-text,
#activiteiten .activity-img,
#activiteiten .activity-img-small,
#activiteiten .activity-images,
#activiteiten .video-block {
    opacity: 1 !important;
}

/* Animation types */
.fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.scale-in {
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .animate-on-scroll,
    .fade-in-up,
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        will-change: auto !important;
    }
}