/* ✏️ VARIABLES CENTRALISÉES - La Corbeille de Moïse */

:root {
  /* PALETTE PRINCIPALE */
  --color-cream: #FDFBF7;
  --color-sage: #8EA885;
  --color-terracotta: #D48C70;
  --color-gold: #D4AF37;
  --color-charcoal: #2C3531;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F3F0;
  --color-border: #E8E3DD;

  /* TYPOGRAPHIE */
  --font-display: 'Fredoka One', 'Fredoka', sans-serif;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* ESPACEMENT */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-section: 100px;

  /* BORDER RADIUS */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 50px;

  /* SHADOWS */
  --shadow-sm: 0 4px 12px rgba(212, 140, 112, 0.08);
  --shadow-md: 0 8px 20px rgba(212, 140, 112, 0.12);
  --shadow-lg: 0 20px 40px rgba(212, 140, 112, 0.15);

  /* TRANSITIONS */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.4s ease-out;

  /* BREAKPOINTS */
  --breakpoint-mobile: 375px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --breakpoint-wide: 1440px;

  /* MAX WIDTH */
  --max-width: 1200px;
}

/* DARK MODE (si nécessaire) */
@media (prefers-color-scheme: dark) {
  :root {
    --color-cream: #2C3531;
    --color-charcoal: #FDFBF7;
  }
}
