/**
 * MLG Solutions - Variables CSS
 * Charte graphique officielle
 */

:root {
  /* === COULEURS PRIMAIRES === */
  --deep-blue: #032A56;
  --coral-pink: #FF6A95;
  --bright-teal: #75D8E3;
  --white: #FFFFFF;
  --black: #000000;

  /* === COULEURS SECONDAIRES === */
  --light-blue: #2DABE0;
  --light-purple: #7D74BB;
  --light-pink: #F0A2C9;

  /* === GRADIENTS === */
  --gradient-blue-pink: linear-gradient(135deg, #032A56 0%, #FF6A95 100%);
  --gradient-pink-white: linear-gradient(180deg, #FF6A95 0%, #FFFFFF 100%);
  --gradient-teal-white: linear-gradient(180deg, #75D8E3 0%, #FFFFFF 100%);
  --gradient-blue-teal: linear-gradient(135deg, #032A56 0%, #75D8E3 100%);

  /* === OPACITÉS DEEP BLUE === */
  --deep-blue-80: rgba(3, 42, 86, 0.8);
  --deep-blue-60: rgba(3, 42, 86, 0.6);
  --deep-blue-40: rgba(3, 42, 86, 0.4);
  --deep-blue-20: rgba(3, 42, 86, 0.2);
  --deep-blue-10: rgba(3, 42, 86, 0.1);
  --deep-blue-05: rgba(3, 42, 86, 0.05);

  /* === OPACITÉS AUTRES === */
  --coral-pink-10: rgba(255, 106, 149, 0.1);
  --bright-teal-10: rgba(117, 216, 227, 0.1);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-90: rgba(255, 255, 255, 0.9);

  /* === TYPOGRAPHIE === */
  --font-display: 'Alexandria', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === TAILLES DE POLICE === */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */
  --font-size-6xl: 3.75rem;     /* 60px */

  /* === ESPACEMENTS === */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */
  --space-5xl: 8rem;      /* 128px */

  /* === BREAKPOINTS === */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1440px;

  /* === TRANSITIONS === */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* === OMBRES === */
  --shadow-sm: 0 1px 2px rgba(3, 42, 86, 0.05);
  --shadow-base: 0 4px 20px rgba(3, 42, 86, 0.08);
  --shadow-md: 0 8px 30px rgba(3, 42, 86, 0.12);
  --shadow-lg: 0 12px 40px rgba(3, 42, 86, 0.15);
  --shadow-xl: 0 20px 60px rgba(3, 42, 86, 0.2);

  /* === LIQUID GLASS EFFECT === */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(3, 42, 86, 0.1);
  --glass-backdrop: blur(10px) saturate(180%);

  /* === BORDER RADIUS === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* === Z-INDEX === */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}
