/* Fichier : assets/css/variables.css */
:root {
  /* Palette "Studio Photo" Minimaliste */
  --bg-color: #f7f7f9;        /* Fond argenté très clair, pur et lumineux */
  --card-bg: #ffffff;         /* Blanc pur pour détacher les éléments */
  --text-main: #111111;       /* Noir profond pour une typographie forte */
  --text-muted: #666666;      /* Gris adouci pour les descriptions */
  --accent-color: #d31118;    /* Rouge Esthétique IBT */
  
  /* Dégradé Premium */
  --accent-gradient: linear-gradient(135deg, #d31118 0%, #900a0f 100%);
  
  /* Ombres ultra-douces style "Techno" */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);

  /* Typographie */
  --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  
  /* Transitions par défaut */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset de base pour éviter les comportements bizarres du navigateur */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}