/**
 * Shared Theme Variables
 * Common color palette and design tokens for derekw.co and related apps
 */

:root {
    --brand-primary: #dd3333;
    --brand-primary-dark: #bb2a2a;
    --brand-primary-hover: #c02c2c;
    --brand-primary-light: #ff5555;
    
    /* Background Colors */
    --bg-page: #f5f5f5;              /* Light mode main background */
    --bg-page-dark: #222222;         /* Dark mode main background */
    --bg-card: #eaeaea;              /* Light mode card/surface */
    --bg-card-dark: #171717;         /* Dark mode card/surface */
    --bg-subtle: #eeeeee;            /* Lighter backgrounds */
    --bg-hover: #444444;             /* Hover states on dark backgrounds */
    --bg-warning-gradient: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    --bg-info-gradient: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    
    /* Border Colors */
    --border-light: #f0f0f0;         /* Very light borders */
    --border-medium: #dddddd;        /* Standard borders (light mode) */
    --border-dark: #333333;          /* Dark mode borders */
    --border-darker: #bababa;        /* Darker borders */
    
    /* Text Colors - Light Mode */
    --text-primary: #333333;         /* Main text color (light mode) */
    --text-secondary: #666666;       /* Secondary text (light mode) */
    --text-tertiary: #999999;        /* Tertiary/lighter text */
    --text-muted: #bbbbbb;           /* Muted/disabled text */
    --text-on-dark: #eaeaea;         /* Text on dark backgrounds / Bright text */
    
    /* Text Colors - Dark Mode */
    --text-primary-dark: #d6d6d6;    /* Main text */
    --text-secondary-dark: #9b9b9b;  /* Secondary text */
    
    /* Status Colors */
    --status-success: #4caf50;
    --status-info: #2196f3;
    --status-warning: #ff9800;
    --status-warning-bg: #fff3e0;
    --status-warning-bg-alt: #ffe0b2;
    --status-danger: #d32f2f;
    --status-danger-light: rgba(211, 47, 47, 0.3);
    --status-danger-hover: rgba(211, 47, 47, 0.5);
    
    /* Info & Note Colors */
    --info-bg: #e8f4f8;
    --note-primary: #ffd54f;
    --note-secondary: #ffca28;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-slow: 0.3s ease;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Component Heights */
    --height-topbar: 50px;
    --height-banner: 35px;
    
    /* Brightness Filters */
    --hover-brightness-dark: 1.25;   /* For dark mode hover effects */
    --hover-brightness-light: 0.9;   /* For light mode hover effects */
}
