:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', system-ui, -apple-system, sans-serif;

  --radius: 0.5rem;

  /* Tailwind-equivalent shadow scale, muted slightly for the warm palette. */
  --shadow-sm: 0 1px 2px rgba(45, 42, 38, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(45, 42, 38, 0.08), 0 2px 4px -2px rgba(45, 42, 38, 0.05);
  --shadow-lg: 0 12px 24px -6px rgba(45, 42, 38, 0.16), 0 6px 10px -4px rgba(45, 42, 38, 0.08);
}

/* Terracotta — warm, earthy. The default theme. */
:root,
[data-theme="terracotta"] {
  --color-bg:          #faf8f3;
  --color-fg:          #2d3748;
  --color-card:        #ffffff;
  --color-primary:     #d97642;
  --color-secondary:   #e8d4a0;
  --color-muted-bg:    #f5f0e6;
  --color-muted-fg:    #64748b;
  --color-accent:      #d4a955;
  --color-destructive: #c17767;
  --color-border:      rgba(217, 118, 66, 0.15);
}

/* Blossom — cool, floral. */
[data-theme="blossom"] {
  --color-bg:          #fef7fb;
  --color-fg:          #554994;
  --color-card:        #ffffff;
  --color-primary:     #F675A8;
  --color-secondary:   #FFCCB3;
  --color-muted-bg:    #fff5f9;
  --color-muted-fg:    #7a6aa8;
  --color-accent:      #F29393;
  --color-destructive: #c17767;
  --color-border:      rgba(246, 117, 168, 0.15);
}
