/* themes/bootswatch_lumen/css/style.css — "clean & bright" polish.
   Le skin Bootswatch Lumen (couleurs/typo via --bs-*) reste la base ;
   on ajoute douceur : dégradés subtils, ombres tendres, coins arrondis. */

/* ---------- Rythme des sections ---------- */
.bsw-section,
main > section {
    padding-block: clamp(3rem, 7vw, 5.5rem);
}
main > section { scroll-margin-top: 5rem; }

/* Alternance douce : une section sur deux sur fond très légèrement teinté */
main > section:nth-of-type(even) {
    background: linear-gradient(
        180deg,
        rgba(var(--bs-primary-rgb), 0.025),
        rgba(var(--bs-primary-rgb), 0.05)
    );
}

/* ---------- Hero : spotlight + logo strip ----------
   Archetype distinct : un projecteur lumineux radial derrière un panneau
   "pilule" arrondi et doucement halo-isé (titre+lead+CTA), surmontant une
   fine bande "trusted by" de wordmarks discrets. Centré, aéré, premium-SaaS. */
.bsw-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3.5rem, 9vw, 6.5rem);
    background:
        radial-gradient(120% 90% at 50% 120%, rgba(var(--bs-primary-rgb), 0.05), transparent 60%),
        linear-gradient(180deg, var(--bs-body-bg), rgba(var(--bs-primary-rgb), 0.03));
}

/* Le projecteur : faisceau radial doux derrière le panneau */
.bsw-hero__spotlight {
    position: absolute;
    top: -18%;
    left: 50%;
    width: min(120%, 60rem);
    aspect-ratio: 1 / 1;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 40%,
            rgba(var(--bs-primary-rgb), 0.30) 0%,
            rgba(var(--bs-primary-rgb), 0.14) 28%,
            rgba(var(--bs-primary-rgb), 0.04) 52%,
            transparent 70%);
    filter: blur(20px);
    opacity: 0.9;
}

/* Le panneau "pilule" doucement halo-isé */
.bsw-hero__panel {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
    padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.5rem, 6vw, 4rem);
    border-radius: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(180deg,
        rgba(var(--bs-body-bg-rgb, 255, 255, 255), 0.85),
        rgba(var(--bs-primary-rgb), 0.04));
    border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
    backdrop-filter: blur(6px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 0 rgba(var(--bs-primary-rgb), 0.10),
        0 24px 60px rgba(19, 42, 49, 0.12),
        0 0 70px rgba(var(--bs-primary-rgb), 0.22); /* glow halo */
}

.bsw-hero__eyebrow {
    display: inline-block;
    margin-bottom: 1.1rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.18);
    border-radius: 50rem;
    box-shadow: 0 2px 10px rgba(var(--bs-primary-rgb), 0.10);
}

.bsw-hero__title {
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--bs-body-color), var(--bs-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--bs-primary); /* fallback */
}

.bsw-hero__lead {
    max-width: 38rem;
    margin: 0 auto 1.75rem;
    color: var(--bs-secondary-color);
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.bsw-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.bsw-hero__actions .btn {
    border-radius: 50rem;
    padding-inline: 1.6rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bsw-hero__actions .btn-primary {
    box-shadow: 0 8px 22px rgba(var(--bs-primary-rgb), 0.28);
}
.bsw-hero__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--bs-primary-rgb), 0.32);
}

/* ---------- Bande "trusted by / as featured in" ---------- */
.bsw-hero__strip {
    position: relative;
    z-index: 1;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}
.bsw-hero__strip-label {
    display: block;
    margin-bottom: 1.1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-secondary-color);
    opacity: 0.85;
}
.bsw-hero__logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.6rem, 2.5vw, 1.25rem);
}
.bsw-hero__logo {
    padding: 0.55rem 1.15rem;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--bs-secondary-color);
    background: rgba(var(--bs-primary-rgb), 0.05);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.10);
    opacity: 0.7;
    transition: opacity 0.18s ease, color 0.18s ease;
}
.bsw-hero__logo:hover {
    opacity: 1;
    color: var(--bs-primary);
}

/* ---------- Titres de section ---------- */
.section-title { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-title h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-title p { color: var(--bs-secondary-color); margin-bottom: 0; }

/* ---------- Cartes douces ---------- */
.card {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.04), var(--bs-body-bg) 55%);
    box-shadow: 0 4px 18px rgba(19, 42, 49, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 16px 38px rgba(19, 42, 49, 0.12);
}
.card .card-title a { color: inherit; }
.card .card-title a:hover { color: var(--bs-primary); }

/* Icônes de carte dans une pastille douce */
.card .fs-2.text-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    background: rgba(var(--bs-primary-rgb), 0.10);
}

/* ---------- Boutons globaux ---------- */
.btn { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.btn-outline-primary:hover { box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.18); }

/* ---------- Footer ---------- */
.bsw-footer a { text-decoration: none; }
.bsw-footer a:hover { color: var(--bs-primary) !important; }

/* ---------- Accessibilité ---------- */
@media (prefers-reduced-motion: reduce) {
    .card,
    .btn,
    .bsw-hero__actions .btn {
        transition: none;
    }
    .card:hover,
    .btn:hover,
    .bsw-hero__actions .btn:hover {
        transform: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 575.98px) {
    .bsw-hero__actions { flex-direction: column; }
    .bsw-hero__actions .btn { width: 100%; }
    .bsw-hero__spotlight { opacity: 0.55; }
    .bsw-hero__logo { font-size: 0.85rem; padding: 0.45rem 0.9rem; }
}

/* =================================================================
   Phase 3 — overrides bespoke des 4 sections home (soft luminous)
   ================================================================= */

/* Pastilles / boutons arrondis partagés */
.lum-pill {
    border-radius: 50rem;
    padding-inline: 1.4rem;
}
.lum-badge {
    border-radius: 50rem;
    padding: 0.4em 0.9em;
    font-weight: 600;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.12);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
}
.lum-meta { color: var(--bs-secondary-color); }

/* Cartes douces réutilisables (héritent du .card global, on affine) */
.lum-card {
    overflow: hidden;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 1.15rem;
}

/* ---------- Projects ---------- */
.lum-card--project .lum-card__media {
    position: relative;
    overflow: hidden;
}
.lum-card--project .lum-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lum-card--project:hover .lum-card__media img { transform: scale(1.05); }
.lum-card--project .lum-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(var(--bs-primary-rgb), 0.10));
    pointer-events: none;
}

/* ---------- Team ---------- */
.lum-card--member { padding-top: 1.75rem; }
.lum-card__avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
}
.lum-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(var(--bs-primary-rgb), 0.08);
    border: 3px solid var(--bs-body-bg);
    box-shadow:
        0 0 0 1px rgba(var(--bs-primary-rgb), 0.15),
        0 8px 24px rgba(19, 42, 49, 0.12),
        0 0 28px rgba(var(--bs-primary-rgb), 0.18); /* glow halo */
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.lum-card--member:hover .lum-card__avatar {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(var(--bs-primary-rgb), 0.25),
        0 12px 30px rgba(19, 42, 49, 0.16),
        0 0 40px rgba(var(--bs-primary-rgb), 0.28);
}
.lum-card__avatar--placeholder { box-shadow: none; }
.lum-social a {
    color: var(--bs-secondary-color);
    font-size: 1.15rem;
    transition: color 0.18s ease;
}
.lum-social a:hover { color: var(--bs-primary); }

/* ---------- Testimonials ---------- */
.lum-quote { position: relative; }
.lum-quote__mark {
    display: block;
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--bs-primary);
    opacity: 0.55;
}
.lum-quote__text {
    color: var(--bs-body-color);
    font-size: 1.05rem;
}
.lum-quote__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bs-body-bg);
    box-shadow: 0 0 0 1px rgba(var(--bs-primary-rgb), 0.15),
                0 0 18px rgba(var(--bs-primary-rgb), 0.16);
}

/* ---------- FAQ ---------- */
.lum-accordion__item {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 1rem !important;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.03), var(--bs-body-bg) 60%);
    box-shadow: 0 4px 16px rgba(19, 42, 49, 0.05);
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.lum-accordion__item:has(.accordion-button:not(.collapsed)),
.lum-accordion__item:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 10px 28px rgba(19, 42, 49, 0.10);
}
.lum-accordion .accordion-button {
    border-radius: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--bs-body-color);
}
.lum-accordion .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.06);
    box-shadow: none;
}
.lum-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.18);
}

/* =================================================================
   Phase 5 — overrides bespoke des 5 sections home (soft luminous)
   ================================================================= */

/* ---------- About ---------- */
.lum-about__media {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(var(--bs-primary-rgb), 0.10),
        0 16px 40px rgba(19, 42, 49, 0.12),
        0 0 36px rgba(var(--bs-primary-rgb), 0.10); /* glow halo */
}
.lum-about__media img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.lum-about__media:hover img { transform: scale(1.03); }
.lum-about__title { font-weight: 700; }
.lum-about__lead { color: var(--bs-secondary-color); }
.lum-about__facts { display: grid; gap: 0.65rem; }
.lum-about__facts li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--bs-body-color);
}
.lum-about__facts a { color: var(--bs-primary); text-decoration: none; }
.lum-about__facts a:hover { text-decoration: underline; }
.lum-about__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow: inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14);
}

/* ---------- Skills ---------- */
.lum-skill__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: 0.9rem;
    font-size: 1.2rem;
    border-radius: 0.8rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14),
        0 0 18px rgba(var(--bs-primary-rgb), 0.12); /* glow halo */
}
.lum-skill__progress {
    height: 8px;
    border-radius: 50rem;
    background: rgba(var(--bs-primary-rgb), 0.10);
    overflow: hidden;
}
.lum-skill__progress .progress-bar {
    border-radius: 50rem;
    background: linear-gradient(90deg,
        rgba(var(--bs-primary-rgb), 0.7),
        var(--bs-primary));
    box-shadow: 0 0 12px rgba(var(--bs-primary-rgb), 0.35);
}

/* ---------- Stats ---------- */
.lum-stat { text-align: center; }
.lum-stat__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.85rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14),
        0 0 24px rgba(var(--bs-primary-rgb), 0.16); /* glow halo */
}
.lum-stat__value {
    color: var(--bs-primary);
    background: linear-gradient(135deg, var(--bs-primary), rgba(var(--bs-primary-rgb), 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Resume ---------- */
.lum-resume__heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}
.lum-resume__heading-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.2rem;
    border-radius: 0.85rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14),
        0 0 18px rgba(var(--bs-primary-rgb), 0.12);
}
.lum-timeline {
    position: relative;
    padding-left: 1.75rem;
    border-left: 2px solid rgba(var(--bs-primary-rgb), 0.18);
}
.lum-timeline__item {
    position: relative;
    padding: 1rem 1.15rem;
    margin-bottom: 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.04), var(--bs-body-bg) 60%);
    box-shadow: 0 4px 16px rgba(19, 42, 49, 0.05);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.lum-timeline__item::before {
    content: "";
    position: absolute;
    left: calc(-1.75rem - 6px);
    top: 1.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bs-primary);
    box-shadow:
        0 0 0 3px var(--bs-body-bg),
        0 0 14px rgba(var(--bs-primary-rgb), 0.5); /* glow halo */
}
.lum-timeline__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(19, 42, 49, 0.10);
}
.lum-timeline__item:last-child { margin-bottom: 0; }

/* ---------- Services ---------- */
.lum-card--service .card-body .fs-2.text-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14),
        0 0 20px rgba(var(--bs-primary-rgb), 0.12); /* glow halo */
}
.lum-card--service .card-title a { color: inherit; }
.lum-card--service .card-title a:hover { color: var(--bs-primary); }
.lum-services__more {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.18s ease;
}
.lum-services__more:hover { color: var(--bs-primary); text-decoration: underline; }

/* =================================================================
   Phase 5 — list sections (publications / events / resources / blog)
   ================================================================= */

/* Media partagé (events, blog) — mêmes coins/zoom doux que projects */
.lum-card--event .lum-card__media,
.lum-card--post .lum-card__media {
    position: relative;
    overflow: hidden;
}
.lum-card--event .lum-card__media img,
.lum-card--post .lum-card__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lum-card--event:hover .lum-card__media img,
.lum-card--post:hover .lum-card__media img { transform: scale(1.05); }
.lum-card--event .lum-card__media::after,
.lum-card--post .lum-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(var(--bs-primary-rgb), 0.10));
    pointer-events: none;
}

/* ---------- Publications (liste citation académique) ---------- */
.lum-pub {
    padding: 1.1rem 1.25rem;
    margin-bottom: 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.035), var(--bs-body-bg) 60%);
    box-shadow: 0 4px 16px rgba(19, 42, 49, 0.05);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.lum-pub:last-child { margin-bottom: 0; }
.lum-pub:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 12px 30px rgba(19, 42, 49, 0.10);
}
.lum-pub__title a { color: var(--bs-body-color); }
.lum-pub__title a:hover { color: var(--bs-primary); }

/* ---------- Events ---------- */
.lum-event__date {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ---------- Resources ---------- */
.lum-resource__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 3rem;
    height: 3rem;
    font-size: 1.35rem;
    border-radius: 0.9rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14),
        0 0 20px rgba(var(--bs-primary-rgb), 0.14); /* glow halo */
}

/* ---------- Accessibilité (reduced motion) ---------- */
@media (prefers-reduced-motion: reduce) {
    .lum-card--project .lum-card__media img,
    .lum-card__avatar,
    .lum-accordion__item,
    .lum-about__media img,
    .lum-timeline__item,
    .lum-card--event .lum-card__media img,
    .lum-card--post .lum-card__media img,
    .lum-pub {
        transition: none;
    }
    .lum-card--project:hover .lum-card__media img,
    .lum-card--member:hover .lum-card__avatar,
    .lum-about__media:hover img,
    .lum-timeline__item:hover,
    .lum-card--event:hover .lum-card__media img,
    .lum-card--post:hover .lum-card__media img,
    .lum-pub:hover {
        transform: none;
    }
}

/* =================================================================
   Phase 6 — bespoke pages (blog list/detail, project list/detail)
   "soft luminous" : dégradés tendres, coins arrondis, glow discret.
   ================================================================= */

/* ---------- Filtres / pills actifs ---------- */
.lum-blog .btn.lum-pill.btn-primary,
.lum-projects .btn.lum-pill.btn-primary {
    box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), 0.24);
}

/* ---------- État vide doux ---------- */
.lum-empty {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
    border-radius: 1rem;
    color: var(--bs-secondary-color);
    background: linear-gradient(180deg,
        rgba(var(--bs-primary-rgb), 0.05), var(--bs-body-bg) 70%);
    box-shadow: 0 4px 16px rgba(19, 42, 49, 0.05);
}

/* ---------- Pagination ---------- */
.lum-pagination { gap: 0.4rem; }
.lum-pagination .page-link {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
    border-radius: 50rem;
    min-width: 2.5rem;
    text-align: center;
    color: var(--bs-primary);
    background: linear-gradient(180deg,
        rgba(var(--bs-primary-rgb), 0.04), var(--bs-body-bg) 70%);
    transition: box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.lum-pagination .page-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(var(--bs-primary-rgb), 0.16);
}
.lum-pagination .page-item.active .page-link {
    color: #fff;
    border-color: transparent;
    background: var(--bs-primary);
    box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), 0.28);
}
.lum-pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.18);
}

/* ---------- Breadcrumb ---------- */
.lum-breadcrumb {
    --bs-breadcrumb-divider-color: var(--bs-secondary-color);
    margin-bottom: 0;
}
.lum-breadcrumb .breadcrumb-item a {
    color: var(--bs-primary);
    text-decoration: none;
}
.lum-breadcrumb .breadcrumb-item a:hover { text-decoration: underline; }
.lum-breadcrumb .breadcrumb-item.active { color: var(--bs-secondary-color); }

/* ---------- En-tête d'article / projet ---------- */
.lum-article__title {
    font-weight: 700;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--bs-body-color), var(--bs-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--bs-primary); /* fallback */
}
.lum-article__lead {
    color: var(--bs-secondary-color);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

/* Média principal halo-isé (article + projet + galerie) */
.lum-article__media,
.lum-figure__media {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(var(--bs-primary-rgb), 0.10),
        0 16px 40px rgba(19, 42, 49, 0.12),
        0 0 32px rgba(var(--bs-primary-rgb), 0.10); /* glow halo */
}
.lum-article__media img,
.lum-figure__media img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.lum-article__media:hover img,
.lum-figure__media:hover img { transform: scale(1.03); }

/* ---------- Corps de texte (prose) ---------- */
.lum-prose__heading {
    font-weight: 700;
    display: flex;
    align-items: center;
}
.lum-prose :where(h2, h3, h4, h5) { font-weight: 700; }
.lum-prose a { color: var(--bs-primary); }
.lum-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(19, 42, 49, 0.10);
}
.lum-prose blockquote {
    margin: 1.25rem 0;
    padding: 0.85rem 1.25rem;
    border-left: 3px solid var(--bs-primary);
    border-radius: 0 1rem 1rem 0;
    color: var(--bs-secondary-color);
    background: linear-gradient(90deg,
        rgba(var(--bs-primary-rgb), 0.06), transparent);
}

/* ---------- Encarts latéraux (aside) ---------- */
.lum-aside .card-title {
    font-weight: 700;
    color: var(--bs-primary);
}
.lum-aside__list li { color: var(--bs-body-color); }

/* ---------- Figures / légendes ---------- */
.lum-figure { margin-bottom: 0; }
.lum-figure .figure-caption { margin-top: 0.5rem; }

/* ---------- Métriques (réutilise lum-stat__*) ---------- */
.lum-metric .lum-stat__ico { margin-bottom: 0.5rem; }

/* ---------- Accessibilité (reduced motion) ---------- */
@media (prefers-reduced-motion: reduce) {
    .lum-article__media img,
    .lum-figure__media img,
    .lum-pagination .page-link {
        transition: none;
    }
    .lum-article__media:hover img,
    .lum-figure__media:hover img,
    .lum-pagination .page-link:hover {
        transform: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 575.98px) {
    .lum-article__media,
    .lum-figure__media { border-radius: 1rem; }
    .lum-pagination .page-link { min-width: 2.2rem; }
}

/* =================================================================
   Phase 7 — content pages (events/faq/jobs/publications/resources/
   services/team detail+list). "soft luminous" : on réutilise au max
   les classes existantes (lum-card, lum-aside, lum-pill, lum-pub,
   lum-breadcrumb, lum-prose, lum-resource__ico…) ; ci-dessous seules
   les pièces nouvelles propres à ces pages.
   ================================================================= */

/* ---------- Filtres / pills actifs (toutes les listes Phase 7) ---------- */
.lum-jobs .btn.lum-pill.btn-primary,
.lum-services-page .btn.lum-pill.btn-primary,
.lum-pubs .btn.lum-pill.btn-primary,
.lum-team .btn.lum-pill.btn-primary {
    box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), 0.24);
}

/* ---------- Badge variante "urgent" (jobs) ---------- */
.lum-badge--urgent {
    color: var(--bs-danger);
    background: rgba(var(--bs-danger-rgb), 0.12);
    border-color: rgba(var(--bs-danger-rgb), 0.25);
}

/* ---------- Jobs : liste de faits dans la carte ---------- */
.lum-job__facts li { display: flex; align-items: center; }
.lum-job__facts i { color: var(--bs-primary); }

/* ---------- Services (liste) : média + icône en pastille ---------- */
.lum-card--service .lum-card__media {
    position: relative;
    overflow: hidden;
}
.lum-card--service .lum-card__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lum-card--service:hover .lum-card__media img { transform: scale(1.05); }
.lum-card--service .lum-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(var(--bs-primary-rgb), 0.10));
    pointer-events: none;
}
.lum-card--service .card-body .fs-2.text-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14),
        0 0 20px rgba(var(--bs-primary-rgb), 0.12); /* glow halo */
}

/* ---------- Service detail : liste "what's included" ---------- */
.lum-included { display: grid; gap: 0.75rem; }
.lum-included__item {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.035), var(--bs-body-bg) 60%);
    box-shadow: 0 4px 16px rgba(19, 42, 49, 0.05);
}
.lum-included__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
    border-radius: 0.7rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.10);
    box-shadow: inset 0 0 0 1px rgba(var(--bs-primary-rgb), 0.14);
}

/* ---------- Resources : carte centrée sur une icône (pas d'image) ---------- */
.lum-card--resource .lum-resource__ico { align-self: flex-start; }

/* ---------- Team : carte membre (déjà lum-card--member) ---------- */
.lum-card__avatar--placeholder { background: rgba(var(--bs-primary-rgb), 0.08); }
.lum-card__avatar--lg { width: 150px; height: 150px; }

/* ---------- Publication detail : table de métadonnées ---------- */
.lum-pub__meta dt { font-weight: 600; }
.lum-pub__meta dd { color: var(--bs-body-color); }

/* ---------- Accessibilité (reduced motion) ---------- */
@media (prefers-reduced-motion: reduce) {
    .lum-card--service .lum-card__media img { transition: none; }
    .lum-card--service:hover .lum-card__media img { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 575.98px) {
    .lum-card__avatar--lg { width: 120px; height: 120px; }
    .lum-included__item { padding: 0.75rem 0.85rem; }
}
