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

body{
    font-family:'Segoe UI', sans-serif;
    background-color:#f8faf8;
    color:black;
    line-height:1.8;
}

/* NAVIGATIE */

header{
    background-color:pink;
    position:sticky;
    top:0;
    z-index:1000;
}

nav{
    max-width:1400px;
    margin:auto;
    padding:20px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:white;
    font-size:28px;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

nav ul li a:hover{
    color:#d8f3dc;
}

/* HERO */

.hero{
    height:70vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url("../images/banner.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:5rem;
    margin-bottom:20px;
}

.hero-content h2{
    max-width:900px;
    font-size:1.8rem;
    font-weight:300;
}

/* WELKOM */

.welkom{
    padding:80px 0;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

.welkom h2{
    color:black;
    font-size:2.5rem;
    margin-bottom:30px;
}

.welkom p{
    margin-bottom:25px;
    text-align:justify;
    font-size:1.1rem;
}

/* FOOTER */

footer{
    background-color:pink;
    color:white;
    text-align:center;
    padding:30px;
}

/* RESPONSIVE */

@media(max-width:900px){

    nav{
        flex-direction:column;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        margin-top:15px;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-content h2{
        font-size:1.3rem;
        padding:0 20px;
    }

}
.pagina-header{
    padding:80px 0;
    text-align:center;
    background:#ffe6f0;
}

.pagina-header h1{
    color:#d63384;
    font-size:3rem;
}

.inhoud{
    padding:60px 0;
}

.inhoud h2{
    color:#d63384;
    margin-top:50px;
    margin-bottom:20px;
}

.inhoud p{
    margin-bottom:20px;
    text-align:justify;
}

.inhoud ol,
.inhoud ul{
    margin-left:30px;
    margin-bottom:25px;
}

.inhoud li{
    margin-bottom:10px;
}

blockquote{
    background:#fff0f7;
    border-left:5px solid #d63384;
    padding:20px;
    margin:25px 0;
    font-style:italic;
    border-radius:8px;
}
.pagina-header{
    background:#ffe6f0;
    padding:80px 20px;
    text-align:center;
}

.pagina-header h1{
    color:#d63384;
    font-size:3rem;
    margin-bottom:15px;
}

.pagina-header p{
    font-size:1.2rem;
}

.inhoud{
    padding:60px 0;
}

.inhoud h2{
    color:#d63384;
    margin-top:50px;
    margin-bottom:20px;
}

.inhoud h3{
    color:#c21870;
    margin-top:30px;
    margin-bottom:15px;
}

.inhoud p{
    margin-bottom:20px;
    text-align:justify;
}

hr{
    margin:60px 0;
    border:none;
    height:2px;
    background:#ffd1e6;
}
/* === ONTWERPPRINCIPES / CARDS === */

.principes-container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:60px 0;
}

.principes-container h1{
    text-align:center;
    color:#d63384;
    font-size:3rem;
    margin-bottom:40px;
}

.principe-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    border-left:6px solid #d63384;

    transition:0.3s ease;
}

.principe-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,0.12);
}

.principe-card h2{
    color:#c21870;
    margin-bottom:10px;
    font-size:1.4rem;
}

.principe-card p{
    color:#333;
    text-align:justify;
    line-height:1.8;
}
.card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    border-left:6px solid #d63384;

    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-4px);
}

.card h2{
    color:#c21870;
}

.card p{
    color:#333;
    text-align:justify;
}
.footer{
    background-color:pink;
    color:white;
    padding:15px 0; /* kleiner gemaakt */
    margin-top:60px;
}

.footer-container{
    width:90%;
    max-width:900px; /* smaller dan je pagina */
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-left h3{
    margin:0;
    font-size:1.2rem;
}

.footer-left p{
    margin:5px 0 0 0;
    font-size:0.9rem;
    opacity:0.9;
}

.footer-right{
    font-size:0.9rem;
    text-align:right;
    opacity:0.9;
}

/* RESPONSIVE */
@media(max-width:700px){
    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        text-align:center;
    }
}
/* PAGINA NAVIGATIE KNOPPEN */

.page-nav{
    position:fixed;
    bottom:20px;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;

    padding:0 20px;
    pointer-events:none; /* zodat alleen knoppen klikbaar zijn */
}

.nav-btn{
    background-color:#d63384;
    color:white;
    text-decoration:none;

    padding:10px 18px;
    border-radius:30px;

    font-weight:600;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);

    transition:0.3s ease;

    pointer-events:auto; /* knoppen klikbaar maken */
}

.nav-btn:hover{
    background-color:#c21870;
    transform:scale(1.05);
}

.nav-btn.left{
    margin-left:10px;
}

.nav-btn.right{
    margin-right:10px;
}
.interventie-foto{
    display:block;
    margin:20px 0;
    width:220px;
    border-radius:15px;
}
.activiteiten-slot{
    text-align:center;
    margin-top:50px;
    margin-bottom:30px;
}

.activiteiten-slot img{
    width:350px;
    max-width:100%;
    border-radius:15px;
}
.bronnen-lijst{
    padding-left: 25px;
}

.bronnen-lijst li{
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.bronnen-lijst a{
    color:#d63384;
    text-decoration:none;
}

.bronnen-lijst a:hover{
    text-decoration:underline;
}
