/* ===============================================================
   voetbal.css
   Zelfstandige stylesheet voor VoetbalToernooi.aspx.
   Bevat alle classes die de pagina nodig heeft — geen afhankelijkheid
   meer van rugby.css. CSS-variabelen (--mti-dark, --mti-border, etc.)
   komen uit manage.css en zijn hier niet opnieuw gedefinieerd.
   =============================================================== */

.section-dark {
    background: var(--mti-dark);
    color: #d4d4a8;
}

    .section-dark .section-title,
    .section-dark h2 {
        color: #fff;
    }

    .section-dark .section-lead {
        color: #b9b98a;
    }

.back-and-eyebrow {
    padding-top: 40px;
}

.screenshot-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(66,67,34,.1);
    padding: 10px;
}

    .screenshot-card img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        cursor: pointer;
    }

.mobile-shot {
    max-width: 260px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #62654e;
        margin-bottom: 14px;
    }

    .testimonial-card strong {
        color: var(--mti-dark);
    }

/* -- Bullet-lijst met vinkjes (toernooivormen) ------------------- */
.feature-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .feature-bullet-list li {
        padding: 10px 0 10px 30px;
        position: relative;
        font-size: 16px;
        line-height: 1.6;
        color: #62654e;
        border-bottom: 1px solid var(--mti-border);
    }

        .feature-bullet-list li:last-child {
            border-bottom: none;
        }

        .feature-bullet-list li::before {
            content: "\f00c";
            font-family: FontAwesome;
            position: absolute;
            left: 0;
            top: 11px;
            color: var(--mti-mid);
            font-size: 13px;
        }

        .feature-bullet-list li strong {
            color: var(--mti-dark);
        }

.feature-closing-note {
    font-size: 15px;
    color: #62654e;
    font-style: italic;
    margin-bottom: 0;
}

/* -- 5-stappenblok ------------------------------------------------ */
.steps-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
}

.step-compact {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 18px;
    padding: 20px 24px;
}

    .step-compact .stap-badge {
        flex-shrink: 0;
        margin-bottom: 0;
        min-width: 40px;
        justify-content: center;
    }

    .step-compact p {
        font-size: 15px;
        color: #62654e;
        margin-bottom: 0;
    }

.steps-extra-note {
    text-align: center;
    font-size: 15px;
    color: #62654e;
    font-style: italic;
    max-width: 700px;
    margin: 24px auto 0;
}

/* -- Checkmark-items met hangende inspringing -------------------- */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .check-item i {
        flex-shrink: 0;
        margin-top: 4px;
        color: var(--mti-mid);
    }

    .check-item span {
        font-weight: 900;
    }

/* -- Testimonial: origineel (cursief) + vertaling ---------------- */
.testimonial-original {
    font-style: italic;
    color: #62654e;
    margin-bottom: 0;
}

.testimonial-translation {
    margin-top: 18px;
    color: #62654e;
}

/* -- Prijzen-callout ---------------------------------------------- */
.pricing-callout {
    max-width: 700px;
}

    .pricing-callout .section-title {
        margin-bottom: 10px;
    }

.pricing-callout-link {
    font-weight: 900;
    color: var(--mti-dark);
    text-decoration: underline;
}

    .pricing-callout-link:hover {
        color: var(--mti-cta);
    }

/* -- Rapportage-afbeeldingen: max 365px breed op lg+ schermen ---- */
@media (min-width: 992px) {
    .report-narrow {
        max-width: 365px;
    }
}

/* -- Lightbox: duidelijke marge t.o.v. viewport ------------------- */
#mti-lb-img {
    max-height: 90vh;
    max-width: 90vw;
}

@media (max-width: 575px) {
    .step-compact {
        flex-direction: column;
        gap: 10px;
    }
}
