/*
 * Standard color theme for Nova
 * Clean color palette for professional design
 */

:root {
  /* Core brand colors */
  --theme-primary: #ff4b4b;
  --theme-secondary: #3e3bff;
  --theme-success: #00cc8f;
  --theme-warning: #ffd166;
  --theme-danger: #ff4b4b;
  --theme-info: #4699ff;
  
  /* Background and text colors */
  --theme-background: #ffffff;
  --theme-text: #111111;
  --theme-border-color: #111111;
  
  /* Surface colors */
  --theme-surface-light: #f5f5f5;
  --theme-surface-medium: #f0f0f0;
  --theme-surface-muted: #f9f9f9;
  
  /* Card background variations */
  --theme-card-bg-1: #ffecec;  /* Light red/pink */
  --theme-card-bg-2: #e8f4ff;  /* Light blue */
  --theme-card-bg-3: #f0fff4;  /* Light green */
  
  /* Notification backgrounds */
  --theme-notification-primary: #ffe8e8;
  --theme-notification-danger: #ffe8e8;
  --theme-notification-warning: #fff8e8;
  
  /* Special colors */
  --theme-text-muted: #666;
  --theme-warning-text: #806a00;
  --theme-focus-ring: rgba(62, 59, 255, 0.25);
  --theme-dropzone-hover: #ffe8e8;

  /* Override Bulma's base color system */
  --bulma-primary-h: 0deg;       /* Red hue */
  --bulma-primary-s: 100%;       /* Red saturation */
  --bulma-primary-l: 64%;        /* Red lightness (#ff4b4b) */

  --bulma-link-h: 233deg;        /* Blue hue */
  --bulma-link-s: 100%;          /* Blue saturation */
  --bulma-link-l: 63%;           /* Blue lightness (#3e3bff) */

  --bulma-info-h: 210deg;        /* Info blue hue */
  --bulma-info-s: 100%;          /* Info blue saturation */
  --bulma-info-l: 64%;           /* Info blue lightness (#4699ff) */

  --bulma-success-h: 162deg;     /* Green hue */
  --bulma-success-s: 100%;       /* Green saturation */
  --bulma-success-l: 40%;        /* Green lightness (#00cc8f) */

  --bulma-warning-h: 44deg;      /* Yellow/orange hue */
  --bulma-warning-s: 100%;       /* Yellow saturation */
  --bulma-warning-l: 70%;        /* Yellow lightness (#ffd166) */

  --bulma-danger-h: 0deg;        /* Red danger hue (same as primary) */
  --bulma-danger-s: 100%;        /* Red danger saturation */
  --bulma-danger-l: 64%;         /* Red danger lightness (#ff4b4b) */
}