:root {
  /* Fond & surfaces (mode clair) */
  --bg-primary: #fdf6ec;          /* fond principal, crème latte */
  --bg-secondary: #f4e3cf;        /* sections, zones secondaires */
  
  /* Texte */
  --text-primary: #3f2a20;        /* marron profond type espresso */
  --text-secondary: #8b5a3c;      /* cappuccino / caramel */

  /* Accent MayMiru (boutons, liens, éléments clés) */
  --accent: #c05621;              /* orange brûlé / cannelle */
  --accent-hover: #9a3412;        /* plus foncé au hover */

  /* Cartes / blocs (compte à rebours, cartes info) */
  --card-bg: rgba(255, 253, 248, 0.96); /* carton crème */
  --border: rgba(209, 175, 139, 0.7);   /* léger contour chaud */

  /* Glow pour les animations (logo, hover, etc.) */
  --glow: rgba(192, 86, 33, 0.45);      /* halo orangé chaleureux */
}

/* --------- THEME SOMBRE : ambiance café de nuit --------- */

[data-theme="dark"] {
  --bg-primary: #130d0a;           /* fond très sombre, espresso */
  --bg-secondary: #1f1410;        /* léger contraste */

  --text-primary: #fef6e7;        /* texte crème pour lisibilité */
  --text-secondary: #d6b08a;

  --accent: #f97316;              /* orange lumineux */
  --accent-hover: #ea580c;

  --card-bg: rgba(31, 20, 15, 0.95);
  --border: rgba(250, 204, 153, 0.35);

  --glow: rgba(249, 115, 22, 0.55); /* glow plus intense en dark */
}
