/* Fichier de variables CSS - Calfeutrage ZLS */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Palette de couleurs (Inspirée d'Adfast - Rouge et Noir Industriel) */
  --primary: #e31b23;        /* Rouge vif Adfast */
  --primary-hover: #b8141a;  /* Rouge plus sombre pour le survol */
  --primary-light: #fde8e8;  /* Fond rouge très clair */
  --secondary: #111111;      /* Noir mat industriel */
  --secondary-hover: #000000;/* Noir pur */
  
  --accent: #1e1e1e;         /* Gris très foncé pour accentuation */
  --accent-hover: #2d2d2d;
  
  --bg-light: #ffffff;       /* Couleur de fond principale */
  --bg-gray: #f5f5f7;        /* Gris clair moderne pour les sections alternées */
  --bg-dark: #111111;        /* Fond noir pour le header et le footer */
  --bg-dark-card: #1e1e1e;   /* Fond de carte sombre */
  
  --text-dark: #111111;      /* Texte principal sur fond clair */
  --text-muted: #555555;     /* Texte secondaire sur fond clair */
  --text-light: #ffffff;     /* Texte sur fond sombre */
  --text-light-muted: #cccccc;/* Texte secondaire sur fond sombre */
  
  --border-color: #e5e5e7;   /* Bordure légère grise */
  --success: #10b981;        /* Couleur de succès */
  
  /* Typographie */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Tailles de police */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  
  /* Espacements */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Arrondis */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* 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);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  
  /* Mise en page */
  --max-width: 1200px;
}
