/* firmen_theme – eigene Ergänzungen zu Bootstrap 5 */

:root {
    --ft-primary: #0d6efd;
    --ft-dark: #1b1f24;
    --ft-radius: 0.75rem;
}

body {
    color: #212529;
}

/* --- Hero ------------------------------------------------------------ */
.ft-hero {
    position: relative;
    color: #fff;
    background-color: var(--ft-dark);
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

.ft-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.ft-hero .container {
    position: relative;
    z-index: 1;
}

/* --- Text/Bild --------------------------------------------------------- */
.ft-text-image img {
    border-radius: var(--ft-radius);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- Call-to-Action ----------------------------------------------------- */
.ft-cta {
    border-radius: var(--ft-radius);
    padding: 3rem;
}

.ft-cta--primary {
    background-color: var(--ft-primary);
    color: #fff;
}

.ft-cta--dark {
    background-color: var(--ft-dark);
    color: #fff;
}

.ft-cta--light {
    background-color: #f8f9fa;
    color: #212529;
}

/* --- Team ---------------------------------------------------------------- */
.ft-team-card img {
    border-radius: var(--ft-radius);
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* --- FAQ ------------------------------------------------------------------ */
.ft-faq .accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--ft-primary);
}
