:root {
  /* Brand Color Palette */
  --bg-cream: #FFFDF9;
  --bg-card: #FFFFFF;
  
  --color-primary: #FF7F7A;      /* Warm Coral */
  --color-primary-hover: #FF6660;
  --color-primary-light: #FFEBEA;
  
  --color-mint: #D8F3E5;         /* Mint Green */
  --color-mint-dark: #1E5C43;
  --color-mint-light: #F0FAF5;
  
  --color-yellow: #FFF2CC;       /* Soft Yellow */
  --color-yellow-dark: #8F6B00;
  --color-yellow-light: #FFFBF0;
  
  --color-blue: #DCEEFA;         /* Light Blue */
  --color-blue-dark: #2B5780;
  --color-blue-light: #F4FAFE;
  
  --color-text-dark: #2D3748;    /* Charcoal for readable text */
  --color-text-muted: #718096;   /* Gray for captions */
  --color-border: #E2E8F0;
  
  /* Fonts */
  --font-headings: 'Quicksand', system-ui, -apple-system, sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Corner Roundness (Kids friendly, rounded) */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 8px 24px rgba(255, 127, 122, 0.25);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-elastic: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Layout */
  --max-width: 1200px;
}
