/**
 * Red Theme - Bold Red
 * Passionate and energetic aesthetic
 * Usage: Import after design-system.css
 */

:root {
  /* Primary Brand Colors - Red */
  --primary: 0 84% 60%;          /* Red-500 (#EF4444) */
  --primary-hover: 0 84% 50%;    /* Darker red */
  --primary-light: 0 84% 95%;    /* Very light red */
  --primary-dark: 0 84% 40%;     /* Deep red */

  /* Secondary Accent - Rose */
  --secondary: 350 89% 60%;      /* Rose-400 */
  --secondary-hover: 350 89% 50%;

  /* Semantic Colors */
  --success: 142 71% 45%;        /* Green-600 */
  --warning: 38 92% 50%;         /* Amber-500 */
  --error: 0 84% 60%;            /* Red-500 */
  --info: 0 84% 60%;             /* Same as primary */

  /* Background Colors */
  --background: 0 0% 100%;
  --background-secondary: 0 100% 99%;
  --surface: 0 0% 100%;
  --surface-hover: 0 100% 98%;

  /* Text Colors */
  --text-primary: 0 10% 10%;
  --text-secondary: 0 6% 40%;
  --text-tertiary: 0 5% 60%;
  --text-on-primary: 0 0% 100%;

  /* Border Colors */
  --border: 0 20% 91%;
  --border-hover: 0 25% 84%;
  --border-focus: 0 84% 60%;

  /* Component-Specific */
  --card-bg: 0 0% 100%;
  --card-border: 0 20% 91%;
  --input-bg: 0 0% 100%;
  --input-border: 0 20% 91%;
  --button-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);

  /* Header-Specific */
  --header-bg: 0 84% 60%;
  --header-text: 0 0% 100%;
  --header-border: 0 84% 50%;
}

/* Dark mode handled by dark.css with [data-theme="dark"] selector */
