﻿:root {
    --mti-dark: #424322;
    --mti-mid: #67662F;
    --mti-cta: #CDC936;
    --mti-light: #F8F8F4;
    --mti-border: #e7e6d3;
    --mti-text: #242516;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--mti-text);
    background: #fff;
}

/* ── Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--mti-border);
    padding: 14px 0;
}


.briefjes {
    width: 55.333% !important;
}

@media (max-width: 991px) {
    .briefjes {
        width: 100% !important;
    }
}


.navbar-brand {
    font-weight: 900;
    color: var(--mti-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 18px !important;
}

.mti-logo-img {
    height: 46px;
    width: auto;
}

/* ── Hero */
.hero-beheer {
    padding: 40px 0 56px;
    background: radial-gradient(circle at 80% 20%, rgba(205,201,54,.18), transparent 34%), linear-gradient(180deg, #fff 0%, var(--mti-light) 100%);
}

.back-and-eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--mti-dark);
    border: 1px solid var(--mti-border);
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(66,67,34,.08);
    transition: background .2s, border-color .2s;
}

    .back-link:hover {
        background: var(--mti-light);
        border-color: var(--mti-mid);
        color: var(--mti-dark);
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--mti-border);
    font-weight: 900;
    color: var(--mti-mid);
}

    .eyebrow i {
        font-size: 14px;
        line-height: 1;
    }

/* ── Typography */
h1 {
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -1.4px;
    font-weight: 900;
    margin-bottom: 20px;
}

h2.section-title {
    font-size: 30px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.6px;
    margin-bottom: 14px;
    color: var(--mti-dark);
}

.section-lead {
    font-size: 17px;
    line-height: 1.65;
    color: #62654e;
    margin-bottom: 24px;
}

/* ── Sections */
.section {
    padding: 64px 0;
    border-bottom: 1px solid var(--mti-border);
}

    .section:last-of-type {
        border-bottom: none;
    }

.section-light {
    background: var(--mti-light);
}

.section-dark {
    background: var(--mti-dark);
    color: #fff;
}

    .section-dark h2.section-title {
        color: #fff;
    }

    .section-dark .section-lead {
        color: #d4d4a8;
    }

/* ── Feature check-lijst met inspring op tweede regel */
.feature-checks {
    font-size: 15px;
    line-height: 1.55;
    color: #62654e;
}

    .feature-checks strong {
        font-weight: 700;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

        .feature-checks strong i {
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--mti-mid);
            width: 14px;
            text-align: center;
        }

        .feature-checks strong span {
            display: block;
        }

.section-dark .feature-checks {
    color: #d4d4a8;
}

    .section-dark .feature-checks i {
        color: var(--mti-cta) !important;
    }

/* ── Afbeeldingen */
.beheer-img {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(66,67,34,.1);
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
    object-position: top;
    cursor: pointer;
    background-color: white;
    padding: 10px;
}

.beheer-img-wrap {
    position: relative;
    padding-bottom: 40px;
}

.beheer-img-overlay {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 42%;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(66,67,34,.2);
    padding: 10px;
    background-color: white;
}

    .beheer-img-overlay img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        cursor: pointer;
    }

.beheer-img-overlay-left {
    position: absolute;
    bottom: -5%;
    left: 30%;
    width: 55%;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

    .beheer-img-overlay-left img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        cursor: pointer;
        padding: 10px;
        background-color: white;
    }

/* ── Uitslagen collage */
.uitslagen-collage {
    position: relative;
    height: 380px;
}

.uc-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(66,67,34,.18);
    cursor: pointer;
    object-fit: cover;
    transition: transform .2s, box-shadow .2s, z-index 0s;
    background-color: white;
    padding: 10px 10px 8px 10px;
}

    .uc-img:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 36px rgba(66,67,34,.28);
        z-index: 10;
    }

.uc-1 {
    width: 52%;
    top: 0;
    left: 0;
    transform: rotate(10deg);
    z-index: 2;
}

.uc-2 {
    width: 56%;
    top: 30px;
    right: 0;
    transform: rotate(-11deg);
    z-index: 3;
}

.uc-3 {
    width: 48%;
    bottom: 0;
    left: 1%;
    transform: rotate(-3deg);
    z-index: 4;
}

.uc-4 {
    width: 54%;
    bottom: 10px;
    right: 2%;
    transform: rotate(15deg);
    z-index: 5;
}

@media (max-width: 991px) {
    .uitslagen-collage {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .uitslagen-collage {
        height: 240px;
    }

    .uc-1 {
        width: 50%;
    }

    .uc-2 {
        width: 54%;
    }

    .uc-3 {
        width: 46%;
    }

    .uc-4 {
        width: 52%;
    }
}

/* ── Rapport kaartjes */
.rapport-card {
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 15px;
    color: var(--mti-dark);
    height: 100%;
}

    .rapport-card i {
        color: var(--mti-mid);
        font-size: 18px;
        flex-shrink: 0;
    }

/* ── FAQ */
.faq .accordion-item {
    border: 1px solid var(--mti-border) !important;
    border-radius: 16px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq .accordion-button {
    font-weight: 700;
    font-size: 17px;
    background: #fff !important;
    color: var(--mti-dark) !important;
    box-shadow: none !important;
}

    .faq .accordion-button:not(.collapsed) {
        background: #fffef0 !important;
        color: var(--mti-dark) !important;
    }

.faq .accordion-body {
    font-size: 16px;
    line-height: 1.65;
    color: #62654e;
}

/* ── Buttons */
.btn-mti {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    background: var(--mti-cta);
    color: var(--mti-dark);
    border: 1px solid var(--mti-cta);
}

    .btn-mti:hover {
        border: 1px solid var(--mti-dark);
        background: var(--mti-dark);
        color: #fff;
    }

.btn-mti-primary {
    background: var(--mti-cta);
    color: var(--mti-dark);
    border: 1px solid var(--mti-cta);
}

    .btn-mti-primary:hover {
        background: #b8b425;
        color: var(--mti-dark);
    }

.btn-mti-dark {
    background: var(--mti-dark);
    color: #fff;
    border: none;
}

    .btn-mti-dark:hover {
        background: #2e2e17;
        color: #fff;
    }

.btn-mti-outline {
    background: #fff;
    color: var(--mti-dark);
    border: 1px solid var(--mti-border);
}

    .btn-mti-outline:hover {
        border-color: var(--mti-mid);
        color: var(--mti-dark);
    }

/* ── Final CTA */
.final-cta {
    background: var(--mti-cta);
    border-radius: 34px;
    padding: 54px 28px;
    text-align: center;
}

    .final-cta h2 {
        font-size: 40px;
        font-weight: 900;
        margin-bottom: 16px;
    }

/* ── Taalswitcher */
.lang-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

.lang-code {
    font-weight: 900;
    font-size: 13px;
    color: var(--mti-dark);
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: .5px;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: 1px solid var(--mti-border);
    border-radius: 999px;
    text-decoration: none;
    background: #fff;
}

    .lang-trigger:hover {
        border-color: var(--mti-mid);
    }

.lang-dropdown {
    border: 1px solid var(--mti-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(66,67,34,.12);
    padding: 8px;
    min-width: 160px;
}

    .lang-dropdown .dropdown-item {
        border-radius: 10px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: var(--mti-text);
    }

        .lang-dropdown .dropdown-item:hover {
            background: var(--mti-light);
        }

        .lang-dropdown .dropdown-item.active {
            background: #fffef0;
            font-weight: 900;
            color: var(--mti-dark);
        }

            .lang-dropdown .dropdown-item.active::after {
                content: '\2713';
                margin-left: auto;
                color: var(--mti-mid);
                font-weight: 900;
            }

/* ── Lightbox */
#mti-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,31,14,.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    backdrop-filter: blur(4px);
}

    #mti-lightbox.open {
        opacity: 1;
        pointer-events: all;
    }

#mti-lb-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transform: scale(.08) translateY(40px);
    opacity: 0;
    transition: transform .8s cubic-bezier(.175,.885,.32,1.275), opacity .4s ease;
}

#mti-lightbox.open #mti-lb-wrap {
    transform: scale(1) translateY(0);
    opacity: 1;
}

#mti-lb-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
    object-fit: contain;
    background-color: white;
    padding: 10px;
}

#mti-lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e63329;
    color: #fff;
    border: none;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    transition: background .2s, transform .2s;
    z-index: 10000;
}

    #mti-lb-close:hover {
        background: #c0251c;
        transform: scale(1.1);
    }

.beheer-img, .beheer-img-overlay img, .beheer-img-overlay-left img, .uc-img {
    cursor: pointer;
}

/* ── Responsive */
@media (max-width: 991px) {
    h1 {
        font-size: 38px;
    }

    .section {
        padding: 48px 0;
    }

    .beheer-img-overlay {
        width: 50%;
    }

    .beheer-img-overlay-left {
        width: 60%;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 30px;
    }

    h2.section-title {
        font-size: 24px;
    }

    .hero-beheer {
        padding: 48px 0 36px;
    }

    .back-and-eyebrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .final-cta {
        padding: 36px 18px;
    }

        .final-cta h2 {
            font-size: 28px;
        }

    .beheer-img-overlay, .beheer-img-overlay-left {
        width: 55%;
    }
}
