/* ==========================================================================
   ScanORDO Direct Hors HDS - Styles Communs & Variables de Design
   Inspiration éditoriale (L'Express) & Support Marque Blanche
   ========================================================================== */

/* Typographies éditoriales : Lora (Serif de presse) pour les titres, Inter pour la lecture et les formulaires */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Marque blanche dynamique : personnalisable par groupement */
  --brand-primary: #b81414;        /* Rouge éditorial signature L'Express (ou couleur groupement) */
  --brand-secondary: #1a365d;      /* Bleu institutionnel sobre */
  --primary-color: var(--brand-primary);
  --primary-dark: #911010;

  /* Teintes de fond et d'encre */
  --bg-light: #f8f9fa;             /* Fond blanc cassé/ivoire doux de lecture */
  --bg-white: #ffffff;             /* Fond blanc pur */
  --text-dark: #121212;            /* Noir encre profond */
  --text-muted: #595959;           /* Gris minéral pour métadonnées */
  --border-color: #e5e7eb;         /* Ligne de séparation fine et sobre */

  /* Couleurs de statut */
  --status-success: #15803d;       /* Vert institutionnel */
  --status-warning: #b45309;       /* Ambre sobre */
  --status-danger: #b91c1c;        /* Rouge alerte */

  /* Typographies */
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rayons de courbure et ombres nettes */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-pill: 40px;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);

  /* Transitions */
  --transition-normal: all 0.2s ease-in-out;
  --transition-slide: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Réinitialisation de base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-light);
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
