@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400..900;1,400..900&family=Montserrat:wght@300;400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Colors - AY Conseil Official Brand Kit */
  --bg-color: #f9f6f1; /* Silk beige */
  --surface-color: #ffffff; 
  --surface-border: #e5e0d5;
  --primary-color: #C5A059; /* Radiant Gold */
  --primary-color-hover: #A67C3D;
  --secondary-color: #1A1A1A; /* Charcoal Black */
  --accent-red: #e1000f;
  --text-main: #1A1A1A;
  --text-muted: #555555;
  
  /* Layout */
  --max-width: 1200px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  
  /* Typography */
  --font-serif: 'Bodoni Moda', serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  
  --font-family: var(--font-ui); /* Default */
  
  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.2s ease-in-out;
}

