/* ======================================================
   Redmond — main styles (Bootstrap 5)
   ====================================================== */

/* ---------- Base typography ---------- */
html,
body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Algemene spacing ---------- */
.section-pad {
    padding: 4rem 0;
}

@media (max-width: 575.98px) {
    .section-pad {
        padding: 3rem 0;
    }
}

/* ---------- Navbar logo ---------- */
.brand-logo {
    display: block;
    height: auto;
    width: auto;
    max-width: 180px;
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 34px;
        max-width: 150px;
    }
}

/* ======================================================
   Redmond kleuren (Bootstrap overrides)
   ====================================================== */

:root,
[data-bs-theme="light"] {
    --bs-primary: #ce1122;            /* Redmond rood */
    --bs-primary-rgb: 206, 17, 34;

    --bs-link-color: #ce1122;
    --bs-link-hover-color: #a50e1b;
}

/* ---------- Primary buttons ---------- */
.btn-primary {
    background-color: #ce1122 !important;
    border-color: #ce1122 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #a50e1b !important;
    border-color: #a50e1b !important;
}

.btn-primary:active {
    background-color: #8f0c17 !important;
    border-color: #8f0c17 !important;
}

/* Outline button in hero iets strakker */
.btn-outline-light {
    border-width: 2px;
}
/* ======================================================
   Algemene links — Redmond rood
   ====================================================== */

a {
    color: #ce1122;
    text-decoration-color: rgba(206, 17, 34, 0.4);
}

a:hover,
a:focus {
    color: #a50e1b;
    text-decoration-color: #a50e1b;
}

/* Werkwijze badges “1 / 2 / 3” */
.text-bg-primary {
    background-color: #ce1122 !important;
}

/* ---------- Hero met achtergrond ---------- */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

/* Desktop hero */
.hero-bg {
    background-image: url("../assets/images/redmond2-hero-desktop-comp.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Overlay voor leesbaarheid */
/* Hero overlay met subtiele gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.55) 0%,
                    rgba(0, 0, 0, 0.35) 40%,
                    rgba(0, 0, 0, 0.15) 70%,
                    rgba(0, 0, 0, 0.05) 100%
            );
}

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

/* Mobile hero */
@media (max-width: 991.98px) {
    .hero-bg {
        background-image: url("../assets/images/redmond2-hero-mobiel-comp.jpg");
    }
}

/* Hero badge */
.badge-soft {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Typografische nuance */
.lead {
    max-width: 52rem;
}

/* ---------- Cards ---------- */
.card-hover {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

/* ---------- Forms ---------- */
.form-control:focus {
    box-shadow: none;
    border-color: rgba(206, 17, 34, 0.55);
}

/* Rustige lijsten */
ul.small {
    padding-left: 1.1rem;
}

ul.small li {
    margin-bottom: 0.25rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #ce1122;
    color: #f8f8f8;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.site-footer a {
    color: #f8f8f8;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer .text-body-secondary,
.site-footer .small {
    color: #f8f8f8 !important;
}
/* ======================================================
   Navbar links — Redmond rood
   ====================================================== */

/* Standaard navbar links */
.navbar .nav-link {
    color: #333;
}

/* Hover navbar links */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ce1122;
}

/* Actieve pagina */
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
    color: #ce1122;
    font-weight: 600;
}

/* Subtiele underline voor actieve link */
.navbar .nav-link.active::after,
.navbar .nav-link[aria-current="page"]::after {
    content: "";
    display: block;
    margin-top: 4px;
    height: 2px;
    width: 100%;
    background-color: #ce1122;
}
/* === Contact hero header met achtergrondafbeelding (1920×480) === */
.contact-hero{
    position: relative;
    height: 180px;              /* exact match met jouw bestand */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.contact-hero-bg{
    background: url("../assets/images/redmond3-contact.jpg") center/cover no-repeat;
}

/* Overlay */
.contact-hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
}

/* Content boven overlay */
.contact-hero .container{
    position: relative;
    z-index: 2;
}

/* Mobiel: zelfde beeld gebruiken, hoogte iets lager (optioneel) */
@media (max-width: 991.98px){
    .contact-hero{
        height: 180px;
    }
}




