.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primair-wit);
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    overflow: hidden;
    z-index: -2;
}

.bg-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -4;
    pointer-events: none;
    transition: opacity 0.5s;
}

.hero-bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

video#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
    pointer-events: none;
}

.hero-inhoud {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-titel {
    font-family: var(--lettertype-speciaal);
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-ondertitel {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-knoppen {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.intro {
    padding: 80px 0;
    background-color: var(--licht-grijs);
}

.intro .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-inhoud h2 {
    font-family: var(--lettertype-speciaal);
    color: var(--primair-rood);
    font-size: 40px;
    margin-bottom: 30px;
}

.intro-inhoud p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--donker-grijs);
}

.lees-meer {
    display: inline-block;
    margin-top: 20px;
    color: var(--primair-rood);
    font-weight: 700;
    text-decoration: underline;
    transition: color 200ms;
}

.lees-meer:hover {
    color: var(--secundair-blauw);
}

.intro-afbeelding img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials {
    padding: 80px 0;
    background-color: var(--primair-wit);
}

.testimonials h2 {
    text-align: center;
    font-family: var(--lettertype-speciaal);
    color: var(--primair-rood);
    font-size: 40px;
    margin-bottom: 50px;
}

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: 15px;
}

.testimonial {
    background-color: var(--licht-grijs);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    display: none;
}

.testimonial:first-child {
    display: block;
}

.testimonial-inhoud p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--donker-grijs);
}

.testimonial-auteur .naam {
    font-weight: 700;
    color: var(--primair-rood);
    font-size: 18px;
}

.testimonial-auteur .rol {
    color: var(--donker-grijs);
    font-size: 16px;
    opacity: 0.8;
}

.testimonial-besturing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.vorige-testimonial,
.volgende-testimonial {
    background-color: var(--primair-rood);
    color: var(--primair-wit);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vorige-testimonial:hover,
.volgende-testimonial:hover {
    background-color: var(--secundair-blauw);
    transform: scale(1.1);
}

.testimonial-voortgang {
    display: flex;
    gap: 10px;
}

.voortgang-punt {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 200ms;
}

.voortgang-punt.actief {
    background-color: var(--primair-rood);
}

.cta-sectie {
    background: linear-gradient(135deg, var(--primair-rood), var(--secundair-blauw));
    color: var(--primair-wit);
    text-align: center;
    padding: 80px 0;
}

.cta-sectie h2 {
    font-family: var(--lettertype-speciaal);
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-sectie p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.muziek-voorvertoning {
    padding: 80px 0;
    background-color: var(--licht-grijs);
}

.muziek-voorvertoning h2 {
    text-align: center;
    font-family: var(--lettertype-speciaal);
    color: var(--primair-rood);
    font-size: 40px;
    margin-bottom: 50px;
}

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

.social-feed {
    padding: 80px 0;
    background-color: var(--primair-wit);
    text-align: center;
}

.social-feed h2 {
    font-family: var(--lettertype-speciaal);
    color: var(--primair-rood);
    font-size: 40px;
    margin-bottom: 40px;
}

.social-iconen {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icoon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primair-rood);
    color: var(--primair-wit);
    border-radius: 50%;
    font-size: 24px;
    transition: all 200ms;
}

.social-icoon:hover {
    background-color: var(--secundair-blauw);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-titel {
        font-size: 40px;
    }
    
    .hero-ondertitel {
        font-size: 18px;
    }
    
    .hero-knoppen {
        flex-direction: column;
        align-items: center;
    }
    
    .intro .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .intro-inhoud h2 {
        font-size: 30px;
    }
    
    .testimonials h2,
    .cta-sectie h2,
    .muziek-voorvertoning h2,
    .social-feed h2 {
        font-size: 30px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-inhoud p {
        font-size: 18px;
    }
    
    .muziek-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-titel {
        font-size: 30px;
    }
    
    .hero-ondertitel {
        font-size: 16px;
    }
    
    .intro-inhoud h2 {
        font-size: 25px;
    }
    
    .testimonials h2,
    .cta-sectie h2,
    .muziek-voorvertoning h2,
    .social-feed h2 {
        font-size: 25px;
    }
    
    .testimonial-inhoud p {
        font-size: 16px;
    }
    
    .social-iconen {
        gap: 15px;
    }
    
    .social-icoon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

