:root {
  /* Cream and Orange Theme */
  --color-primary: #c25934;
  --color-primary-hover: #a34727;
  
  /* Backgrounds */
  --color-bg: #f9f6f0; /* Cream background */
  --color-surface: #f9f6f0; /* Same as bg for seamless look */
  --color-border: #d5d0c4; /* Darker beige for borders */
  
  /* Text */
  --color-text-primary: #333333; /* Dark gray for high contrast */
  --color-text-secondary: #666666; /* Medium gray */
  --color-text-muted: #999999;
  
  /* Feedback */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Typography */
  --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-serif: 'Georgia', 'Times New Roman', serif;
  
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
