/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --kleur-paars: #6B2057;
    --kleur-blauw: #1D3557;
    --kleur-rood:  #8B1A2D;
    --kleur-roze:  #C2185B;
    --kleur-zand:  #F0EDE8;
    --kleur-wit:   #FFFFFF;

    --font-kop:  'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', Arial, sans-serif;
}

/* ============================================
   Basis
   ============================================ */
body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
}

h1, h2, h3, h4 {
    font-family: var(--font-kop);
    font-weight: 700;
}

/* ============================================
   Header / Navigatie
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--kleur-wit);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.site-header .nav-link {
    color: #333;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.03em;
    padding: 0.5rem 1rem;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--kleur-paars);
}

/* ============================================
   Carousel
   ============================================ */
#hoofdCarousel {
    height: 100vh;
    min-height: 500px;
}

#hoofdCarousel .carousel-inner,
#hoofdCarousel .carousel-item {
    height: 100%;
}

.carousel-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* ============================================
   Vignet
   ============================================ */
.vignet-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.vignet-wrapper--rechts { justify-content: flex-end; }
.vignet-wrapper--links  { justify-content: flex-start; }

.vignet {
    background: var(--kleur-paars);
    color: var(--kleur-wit);
    font-family: var(--font-kop);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    padding: 3rem 3.5rem;
    width: 42%;
    min-width: 260px;
    white-space: pre-line;
}

.vignet--rechts {
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    text-align: right;
    padding-left: 5rem;
}

.vignet--links {
    clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
    text-align: left;
    padding-right: 5rem;
}

/* ============================================
   Secties — basis
   ============================================ */
.sectie {
    padding: 4rem 0;
}

.sectie--wit  { background: var(--kleur-wit); }
.sectie--zand { background: var(--kleur-zand); }

.sectie-afbeelding {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

/* ============================================
   Kleurblok
   ============================================ */
.kleurblok {
    color: var(--kleur-wit);
    font-family: var(--font-kop);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    padding: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.kleurblok--paars { background: var(--kleur-paars); }
.kleurblok--blauw { background: var(--kleur-blauw); }
.kleurblok--rood  { background: var(--kleur-rood); }
.kleurblok--roze  { background: var(--kleur-roze); }

/* ============================================
   Citaat
   ============================================ */
.citaat-sectie {
    text-align: center;
    padding: 5rem 2rem;
}

.citaat-sectie .citaat-tekst {
    font-family: var(--font-kop);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--kleur-paars);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Afbeelding rij
   ============================================ */
.afbeelding-rij img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--kleur-zand);
    padding: 3rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
}

.site-footer a {
    color: var(--kleur-paars);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    #hoofdCarousel {
        height: 60vh;
    }

    .vignet {
        width: 80%;
        font-size: 1.3rem;
        padding: 2rem;
    }

    .vignet--rechts {
        clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
        padding-left: 3rem;
    }

    .vignet--links {
        clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
        padding-right: 3rem;
    }

    .sectie-afbeelding,
    .afbeelding-rij img {
        height: 220px;
    }

    .kleurblok {
        font-size: 1.3rem;
        padding: 2rem;
    }
}
