/* Core variables and base utilities */

:root {
    /* Couleurs principales */
    --bs-primary: #d92028;
    --bs-primary-rgb: 217, 32, 40;
    --bs-secondary: #1f4e8c;
    --bs-secondary-rgb: 31, 78, 140;
    --bs-success: #0f8a3b;
    --bs-danger: #c81e1e;
    --bs-light: #f7f8fa;
    --bs-dark: #1d232a;

    /* Variables personnalisées */
    --color-red: #d92028;
    --color-red-dark: #b9131a;
    --color-red-soft: #fee2e2;
    --color-blue: #1f4e8c;
    --color-blue-soft: #e0ecfa;
    --color-text-soft: #4b5663;
    --color-text-faint: #6b7682;

    /* Police */
    --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.text-primary {
    color: var(--color-red) !important;
}

.bg-primary {
    background-color: var(--color-red) !important;
}

.border-primary {
    border-color: var(--color-red) !important;
}

/* Base text/background helpers */
.text-soft {
    color: var(--color-text-soft);
}

.text-faint {
    color: var(--color-text-faint);
}

.bg-soft {
    background-color: var(--color-red-soft);
}

.bg-blue-soft {
    background-color: var(--color-blue-soft);
}

.text-blue {
    color: var(--color-blue);
}

/* Social brand backgrounds */
.bg-tiktok {
    background-color: #ff0050 !important;
}

.bg-instagram {
    background-color: #e4405f !important;
}

.bg-youtube {
    background-color: #ff0000 !important;
}

.bg-facebook {
    background-color: #1877f2 !important;
}

.bg-bluesky {
    background-color: #00bcd4 !important;
}