@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bootstrap Icons';
    src: url('/lib/bootstrap-icons/font/fonts/bootstrap-icons.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Police globale */
body, html {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.flex-grow-1 {
    flex: 1;
}

footer {
    width: 100%;
    box-sizing: border-box;
}

.text-justify {
    text-align: justify;
}

/* =============================================
   TYPOGRAPHIE DISPLAY (Fraunces serif)
   ============================================= */
.hero-title,
.page-title,
.cta-section h2,
.cta-box h2,
section h2.display-4,
section h2.display-5 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-feature-settings: "ss01", "ss02";
}

/* Chiffres tabulaires partout (alignement vertical des nombres) */
.stat-number,
.process-number {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

/* =============================================
   FOND PAPIER CHAUD (override Bootstrap bg-light)
   ============================================= */
.bg-light {
    background-color: #F4EFE6 !important;
}

/* =============================================
   ACCESSIBILITÉ — REDUCE MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}