/* INSANE IDENTITY — base.css
   Centralise toutes les variables, couleurs, polices, et tokens du design system. À importer en premier dans chaque page et CSS spécifique. */

:root {
    /* Couleurs principales */
    --primary-blue: #1793B2;
    --primary-black: #111111;
    --primary-white: #FFFFFF;
    --primary-gray: #D9D9D9;

    /* Psykotik Panda */
    --psyko-blue: #00AEEF;
    --psyko-blue-dark: #0072CE;
    --psyko-pink: #FF3366;
    --psyko-red: #FF5A5F;

    /* Inside Agency */
    --inside-green: #39FF14;
    --inside-pink: #FF007F;
    --inside-yellow: #FFD700;

    /* Reeboot */
    --reeboot-gold: #FFD700;
    --reeboot-turquoise: #00BFFF;
    --reeboot-violet: #8A2BE2;
    --reeboot-red: #FF1744;

    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

html {
    font-family: var(--font-family);
    font-size: 16px;
    scroll-behavior: smooth;
}
