@import url('./base.css');

:root[data-theme="rufoof"] {
  /* Brand Colors - Rufoof Theme */
  --theme-primary: #D70036;
  --theme-primary-hover: #b91c1c;
  --theme-primary-light: #fecaca;
  --theme-secondary: #64748b;
  --theme-secondary-hover: #475569;
  --theme-secondary-light: #f1f5f9;
  --theme-accent: #dc2626;
  --theme-accent-hover: #b91c1c;
  --theme-accent-light: #fecaca;

  /* Backgrounds - Rufoof Theme */
  --theme-bg-primary: #F4F4F4;
  --theme-bg-secondary: #f8fafc;
  --theme-bg-surface: #ffffff;
  --theme-bg-overlay: rgba(0, 0, 0, 0.5);
  --theme-bg-card: #ffffff;
  --theme-bg-hover: #f1f5f9;

  /* Text Colors - Rufoof Theme */
  --theme-text-primary: #111111;
  --theme-text-secondary: #475569;
  --theme-text-muted: #64748b;
  --theme-text-inverted: #ffffff;
  --theme-text-link: #dc2626;
  --theme-text-link-hover: #b91c1c;

  /* Borders */
  --theme-border-primary: #e2e8f0;
  --theme-border-secondary: #cbd5e1;
  --theme-border-focus: #2563eb;
  --theme-border-error: #dc2626;
  --theme-border-success: #059669;
  --theme-border-warning: #d97706;

  /* Shadows */
  --theme-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --theme-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --theme-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --theme-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Status Colors */
  --theme-success: #059669;
  --theme-success-bg: #ecfdf5;
  --theme-success-border: #10b981;
  --theme-error: #dc2626;
  --theme-error-bg: #fef2f2;
  --theme-error-border: #f87171;
  --theme-warning: #d97706;
  --theme-warning-bg: #fffbeb;
  --theme-warning-border: #f59e0b;
  --theme-info: #0ea5e9;
  --theme-info-bg: #f0f9ff;
  --theme-info-border: #38bdf8;

  /* Interactive States */
  --theme-focus-ring: 0 0 0 2px var(--theme-primary-light);

  /* Additional style guide compatibility variables */
  --theme-text-tertiary: #666666; /* Style guide tertiary text */
  --theme-text-subtle: #AAAAAA; /* Style guide subtle text */
  --theme-border-tertiary: #888888; /* Style guide tertiary border */
  --theme-bg-low-contrast-white: #FAFAFA; /* Style guide low contrast background */
  --theme-brand-subtle: #fecaca; /* Style guide brand subtle background */

  /* Button specific variables */
  --theme-button-primary: var(--theme-primary);
  --theme-button-primary-hover: var(--theme-primary-hover);
}
