/* ====== Basis (geldt voor beide varianten) ====== */

:root {
    --ml-green: #375248;
    --ml-gold: #ffc857;
    --ml-beige: #f8f5f0;
    --ml-aqua: #80cda7;
    --ml-gray: #f1f1f1;
    --ml-ink: #2c3f38;
    --ml-soft: #5d6b66;
    --intro-radius: 16px;
    --intro-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}

.home-introtekst {
    background: transparent;
    border: 0px dotted darkorange;
}

.home-introtekst__inner {
    max-width: min(97vw, 1100px);
    margin: 0 auto;
    text-align: center;
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
    padding: clamp(20px, 6vw, 26px);
    border: 0px dotted rgb(243, 137, 190);
}

.home-introtekst__title {
    font-family: "Cinzel Decorative", serif;
    color: #375248;
    font-weight: 501;
    letter-spacing: .02em;
    line-height: 1.15;
    margin: 0 0 .35em;
    font-size: clamp(1.5rem, 4.9vw, 3rem);
    border: 0px dotted #55ffff;
}

.home-introtekst__subtitle {
    font-family: "Cinzel Decorative", serif;
    color: #375248;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.15;
    margin: -5px 0px 1px;
    font-size: clamp(1.15rem, 1.9vw, 2.25rem);
    border: 0px dotted #80cda7;
}

.home-introtekst__rule {
    width: clamp(270px, 18vw, 520px);
    height: 3px;
    margin: clamp(5px, 1vw, 7px) auto 0;
    background: linear-gradient(190deg, #ffc857, #80cda7);
    border-radius: 3px;
    opacity: .55;
}

.home-introtekst__body {
    font-family: "Fauna One", serif;
    color: #375248;
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.65;
    margin: 15px auto;
    max-width: min(92vw, 1100px);
    padding: 0 clamp(20px, 6vw, 56px);
    border: 0px dotted #ffc857;
}

.home-introtekst__btn {
    display: inline-flex;
    align-items: center;
    gap: 1.6em;
    font-family: "Fauna One", serif;
    font-size: clamp(1.1rem, 1.6vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    background: #375248;
    color: #ffffff;
    padding: .6em 1.4em;
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    border: 0px dotted greenyellow;
}

.home-introtekst__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(55, 82, 72, .6);
    color: #ffc857;
    border: 1px solid #ffc857;
}

.home-introtekst__btn:focus-visible {
    outline: 5px solid hotpink;
    outline-offset: 3px;
}

/* ====== Variant A: VOLLE BREEDTE ====== */
.home-introtekst--full {
    padding-left: clamp(22px, 6vw, 72px);
    padding-right: clamp(22px, 6vw, 72px);
    border: 2px dotted red;
}

@media (min-width:700px) and (max-width:1023.98px) {
    .home-introtekst--full {
        padding-left: clamp(28px, 7vw, 84px);
        padding-right: clamp(28px, 7vw, 84px);
        border: 2px dotted red;
    }
}

@media (min-width:1400px) {
    .home-introtekst--full .home-introtekst__inner {
        max-width: min(90vw, 1280px);
        border: 2px dotted red;
    }

    .home-introtekst--full .home-introtekst__title {
        white-space: nowrap;
        text-wrap: balance;
    }
}

/* ====== Variant B: RIJ → KOLOM ====== */
.home-introtekst--row {
    background: transparent;
    border: 2px dotted yellow;
}

/* laat sectie-achtergrond door Divi bepalen */
.home-introtekst--row .home-introtekst__inner {
    max-width: min(94vw, 1040px);
    border: 2px dotted yellow
}

@media (min-width:700px) and (max-width:1023.98px) {
    .home-introtekst--row .home-introtekst__inner {
        max-width: min(96vw, 1100px);
        border: 2px dotted yellow
    }
}

@media (max-width:420px) {
    .home-introtekst--row .home-introtekst__inner {
        max-width: 92vw;
        border: 2px dotted yellow
    }
}