/* ===================================
   MS Coaching - CSS Variables
   =================================== */

:root {
  /* Couleurs - Palette principale */
  --color-black: #191c1e;
  --color-gray: #44403c;
  --color-bronze: #7c5e40;
  --color-gold-muted: #af8a54;
  --color-gold: #d6b160;
  --color-cream: #f2ede9;

  /* Couleurs utilitaires */
  --color-success: #4ade80;
  --color-error: #ef4444;
  --color-overlay: rgba(25, 28, 30, 0.9);

  /* Typographies */
  --font-main: 'Overpass', sans-serif;
  --font-accent: 'Race Sport', sans-serif;

  /* Tailles de police */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Poids de police */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-black: 900;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Largeurs containers */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(214, 177, 96, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;

  /* Header height */
  --header-height: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --header-height: 70px;
  }
}
