*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #111;
    min-height: 100vh;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

/* ─── SLIDES ─── */
/* Vervang de background-image waarden door jouw eigen foto's:
   background-image: url('jouw-foto.jpg');               */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0s;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
    animation: kenburns 8s ease-in-out forwards;
}

/* — Foto 1 (vervang door url('foto1.jpg')) — */
.slide:nth-child(1) {
    background-image:url('/website/slideshow/slideshow1.jpg');
}

/* — Foto 2 (vervang door url('foto2.jpg')) — */
.slide:nth-child(2) {
    background-image:url('/website/slideshow/slideshow2.jpg');
}

/* ─── SLICE OVERLAY ─── */
.clip-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.slice {
    position: absolute;
    left: 0;
    right: 0;
    height: 12.5%; /* 8 slices = 100% hoogte */
    background: #ffffff;
    opacity: 0;
    transform-origin: left center;
}

.slice:nth-child(1) { top:  0%;     }
.slice:nth-child(2) { top: 12.5%;  }
.slice:nth-child(3) { top: 25%;    }
.slice:nth-child(4) { top: 37.5%;  }
.slice:nth-child(5) { top: 50%;    }
.slice:nth-child(6) { top: 62.5%;  }
.slice:nth-child(7) { top: 75%;    }
.slice:nth-child(8) { top: 87.5%;  }

/* ─── DONKERE OVERLAY VOOR LEESBAARHEID ─── */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 6;
    pointer-events: none;
}

/* ─── HERO CONTENT ─── */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 16px;
    transition: opacity 0.4s;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    transition: opacity 0.4s;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.72;
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 36px;
    transition: opacity 0.4s;
}

.hero-cta {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.25s, border-color 0.25s;
}

.hero-cta:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.55);
}



/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
    .arrow { display: none; }
}
.hero-content h2 {
    font-size: 5rem;
    color: #FFFFFF;
}