﻿/* ===== CURF Health overrides (wit forceren) ===== */


    html[data-bs-theme="dark"], html[data-bs-theme="dark"] body {
        background: #fff !important;
    }

/* Basis wit + leesbare tekstkleur */
html, body {
    background: #fff !important;
    color: #0f0f10;
    min-height: 100%;
}

/* Veel voorkomende Bootstrap donkere klassen neutraliseren als ze op body/wrappers zitten */
.bg-dark, .text-bg-dark, .navbar-dark, .offcanvas, .modal-content {
    background: #fff !important;
    color: #0f0f10 !important;
}

/* Jouw CURF-variabelen en utilities (veilig) */
:root {
    --curf-red: rgb(197,26,68);
    --curf-black: #0f0f10;
    --curf-gray: #6b7280;
    --curf-light: #f8f9fb;
    --curf-border: #e5e7eb;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

.TitleBlockSimul {
    margin-top: 0px;
    height: auto;
    align-items: center;
    background-color: white;
}

.TitleText {
    font-family: 'Franklin Gothic';
    font-size: 100px;
    letter-spacing: 3px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0px;
}

.eyebrowTitle {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 50px;
    color: var(--curf-red);
    font-weight: 700;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .85rem;
    color: var(--curf-red);
    font-weight: 700;
}

.h-hero {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--curf-black);
    margin: 0 0 12px;
}

.lead {
    font-size: 1.125rem;
    color: #1f2937;
}

.brand-red {
    color: var(--curf-red);
}

.text-muted {
    color: var(--curf-gray);
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.card-feature {
    border: 1px solid var(--curf-border);
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    height: 100%;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--curf-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    letter-spacing: .3px;
    padding: .8rem 1.25rem;
    border-radius: .75rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-curf {
    background: var(--curf-red);
    color: #fff;
    border: 2px solid var(--curf-red);
}

.btn-curf-outline {
    background: #fff;
    color: var(--curf-red);
    border: 2px solid var(--curf-red);
}

.btn + .btn {
    margin-left: 12px;
}

.hover-lift {
    transition: transform .18s ease;
}

    .hover-lift:hover {
        transform: translateY(-3px);
    }

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.curf-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .curf-image.hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(60% 60% at 80% 20%, rgba(197,26,68,.18), transparent 60%), linear-gradient(to top right, rgba(197,26,68,.10), transparent 40%);
        mix-blend-mode: multiply;
        pointer-events: none;
    }

.band {
    background: var(--curf-red);
    color: #fff;
    text-align: center;
}

    .band h2 {
        font-weight: 900;
        margin: 0 0 12px;
    }

.chip {
    display: inline-block;
    padding: .35rem .65rem;
    border-radius: .75rem;
    font-size: .9rem;
}

.chip--ok {
    background: #e3fced;
    color: #00642f;
}

.chip--warn {
    background: #fff8e1;
    color: #925300;
}

.chip--err {
    background: #c51a44;
    color: #fff;
}

.c-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.c-col {
    flex: 1 1 0;
    min-width: 280px;
}

.c-col-6 {
    flex: 1 1 480px;
}

.center {
    text-align: center;
}

.p-card {
    background: var(--curf-light);
    border-radius: 16px;
    padding: 28px;
}

.divider {
    height: 1px;
    background: var(--curf-border);
    margin: 24px 0;
}

/* ===== Dark footer just for the partial wrapper ===== */
.footer-dark {
    background: #000; /* black background */
    color: #fff; /* default text white */
    padding: 48px 0; /* breathing room */
}

    .footer-dark a {
        color: #fff; /* make links readable */
        text-decoration: none;
    }

        .footer-dark a:hover {
            text-decoration: underline;
        }

    .footer-dark h1, .footer-dark h2, .footer-dark h3,
    .footer-dark h4, .footer-dark h5, .footer-dark h6 {
        color: #fff;
    }

    /* optional: soften cards/blocks inside the footer if your partial has them */
    .footer-dark .card,
    .footer-dark .p-card,
    .footer-dark .widget {
        background: #0b0b0b;
        border-color: #1a1a1a;
        color: #fff;
    }

    /* optional: invert buttons in the footer to match brand red on black */
    .footer-dark .btn,
    .footer-dark .btn-curf {
        background: rgb(197,26,68);
        border: 2px solid rgb(197,26,68);
        color: #fff;
    }

    .footer-dark .btn-curf-outline {
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
    }

    /* thin divider above the footer to separate from white content */
    .footer-dark::before {
        content: "";
        display: block;
        height: 1px;
        background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.5), rgba(0,0,0,0));
        margin: -48px 0 48px; /* pulls the divider up to sit between sections */
    }

/* Responsive grids (LET OP: in .cshtml nooit inline @media zonder escape; extern bestand is veilig) */
@media (min-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-wrap {
        grid-template-columns: 1.05fr .95fr;
    }
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
    /* Override Bootstrap's col-md-6 class */
    .col-md-6 {
        width: 100% !important;
        margin-left: 0% !important;
        margin-top: 0% !important;
        margin-bottom: 0% !important;
    }

    .col-md-2 {
        width: 100% !important;
        margin-left: 0% !important;
        margin-top: 0% !important;
        margin-bottom: 0% !important;
    }
    /* Override Bootstrap's container class */
    .container-fluid {
        padding-right: 15px !important;
        padding-left: 15px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    /* Make the specific row take up 100% width */
    .row.synigen-row {
        width: 100% !important;
    }

    .mainText {
        width: 95% !important;
        margin: 0px !important;
        text-align: center !important;
    }

    .img-fluid {
        width: 100% !important;
    }

    .TitleBlockSimul {
        margin-top: 0px;
        align-items: flex-end;
        background-color: white;
    }

    .horizontal-list-container {
        width: 100%;
        align-items: center;
    }

    .horizontal-list {
        flex-direction: column; /* Change to a vertical layout */
        align-items: center; /* Center items vertically */
        width: 100%;
    }

    .horizontal-list-li {
        width: 100%;
        align-items: center;
        margin-right: 40px;
    }

    .horizontal-list-container-magic {
        width: 100%;
    }

    .horizontal-list-li-magic {
        margin-right: 40px;
        width: 100%;
    }

    .menu-buttonProjects.local {
        height: 40px;
    }

    .img-fluidBig {
        width: 95% !important;
    }

    .TitleText {
        font-size: 60px;
    }

    .TitleX {
        font-size: 60px !important;
    }

    .col-md-6.test {
        margin-top: 50px;
    }
}
