﻿/* ===== CURF Industry (Health-achtige stijl, behoud merk-kleuren) ===== */

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%;
}

.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;
    }


:root {
    --curf-red: rgb(197,26,68);
    --curf-black: #0f0f10;
    --curf-gray: #6b7280;
    --curf-light: #f8f9fb;
    --curf-border: #e5e7eb;
}

.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;
}

/* Typo + helpers */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Intro als kolom-stapel */
.intro-stack {
    display: flex;
    flex-direction: column;
    align-items: center; /* centreert de blokken horizontaal in de container */
    gap: 24px;
}

/* Tekstblok: links uitgelijnd, 2/3 breed van de container */
.intro-copy {
    width: 100%;
    max-width: 66%;
    text-align: left;
}

/* Contrast op zwart */
.intro .text-muted {
    color: white;
}

/* Afbeelding onderaan: gecentreerd en max 400px breed */
.intro-media {
    margin: 0;
    padding: 0;
    background: transparent;
}

    .intro-media img {
        display: block;
        max-width: 600px;
        width: 100%;
        height: auto;
        margin: 0 auto; /* centeren */
        border-radius: 16px; /* optioneel, matcht je stijl */
    }

/* Mobiel: tekst 100% breed */
@media (max-width: 700px) {
    .intro-copy {
        max-width: 100%;
    }
}


.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
    background-color: white;
}

.center {
    text-align: center;
}

.align-center {
    align-items: center;
}

.block-gap {
    margin-bottom: 56px;
}

.block-gap-sm {
    margin-bottom: 40px;
}

.brand-red {
    color: var(--curf-red);
}

.link-dark {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.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;
}

.h2-strong {
    font-weight: 800;
    margin: 8px 0 6px;
    font-size: clamp(1.5rem, 2.5vw, 2.125rem);
}


.h2-strongRed {
    font-weight: 800;
    margin: 8px 0 6px;
    font-size: clamp(1.5rem, 2.5vw, 2.125rem);
    color:rgb(197,26,68);
}

.h5 {
    font-size: 1.1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    color: #1f2937;
}

.text-muted {
    color: var(--curf-gray);
}

/* Layout grids */
.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;
}

.TitleBlockSimul {
    margin-top: 0px;
    height: auto;
    align-items: center;
    background-color: white;
}

/* Media frames & sizing */
.media-frame {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #fbfbfc);
}

.hero-media {
    aspect-ratio: 4 / 3;
    min-height: 320px;
    max-height: 560px;
}

.img-contain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Case thumbs: uniforme hoogte/ratio */
.media-16x9 {
    width: 100%;
    align-self: center;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Cards & schaduwen */
.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%;
}

.case-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--curf-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.case-body {
    padding: 18px 20px 22px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    letter-spacing: .3px;
    padding: .8rem 1.25rem;
    border-radius: .75rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.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 transparent;
}
.btn-curf-outlinebordred {
    background: #fff;
    color: var(--curf-red);
    border: 2px solid var(--curf-red);
}


.hover-lift {
    transition: transform .18s ease;
}

    .hover-lift:hover {
        transform: translateY(-3px);
    }

/* Band */
.band {
    background: var(--curf-red);
    color: #fff;
    text-align: center;
}

    .band .band-inner {
        text-align: center;
    }

    .band h2 {
        font-weight: 900;
        margin: 0 0 12px;
    }

    .band p {
        opacity: .95;
        margin-bottom: 18px;
    }

/* Footer */
.footer-dark {
    background: #000;
    color: #fff;
    padding: 48px 0;
}

    .footer-dark a {
        color: #fff;
        text-decoration: none;
    }

        .footer-dark a:hover {
            text-decoration: underline;
        }

    .footer-dark .btn, .footer-dark .btn-curf {
        background: var(--curf-red);
        border: 2px solid var(--curf-red);
        color: #fff;
    }

    .footer-dark .btn-curf-outline {
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
    }

    .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;
    }

.copyright {
    text-align: center;
    padding: 28px 0 40px;
    color: #0f0f10;
}

/* Responsief */
@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;
    }

    .hero-media {
        aspect-ratio: 4 / 3;
        max-height: 560px;
    }
}

@media (max-width: 700px) {
    .hero-media {
        min-height: 260px;
    }

    .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;
    }
}
