/* src/css/variables.css */
/* Coco Gills Author Website - Design System */
/* Extracted from approved Nano Banana Pro mockups */

:root {
  /* === COLORS === */
  /* Warm sunset palette derived from book cover */
  --cream-bg: #FCF8F3;
  --paper-white: #FFFCF7;
  --warm-brown: #8B5A3D;
  --warm-brown-dark: #654529;
  --warm-brown-text: #553C2A;
  --muted-text: #A77E62;
  --sunset-coral: #C3826B;
  --teal-accent: #6AABAB;
  --highlight-peach: #F8E1D2;
  --border-light: rgba(139, 90, 61, 0.2);
  --shadow-soft: rgba(101, 69, 41, 0.1);
  --error-color: #c44;

  /* === TYPOGRAPHY === */
  --font-signature: 'Dancing Script', cursive;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;

  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-reader: 1.8;

  /* === SPACING === */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;

  /* === LAYOUT === */
  --max-width-content: 800px;
  --max-width-reader: 700px;
  --max-width-page: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;

  /* === TRANSITIONS === */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  --highlight-transition: 0.25s ease;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 2px var(--shadow-soft);
  --shadow-md: 0 4px 12px var(--shadow-soft);
  --shadow-lg: 0 8px 24px var(--shadow-soft);
  --shadow-paper: 0 4px 20px rgba(101, 69, 41, 0.15);
}
