/**
 * HEALIST BRAND TOKENS - Design 4 Prestige
 * =========================================
 * WHITE-LABEL FILE: Change these values to rebrand.
 * All colors, fonts, and spacing defined here.
 */

:root {
  /* ============================================
     PRIMARY BRAND COLORS - Navy
     ============================================ */
  --brand-primary: #1E3A5F;
  --brand-primary-light: #2D4F7A;
  --brand-primary-dark: #0F1C2E;
  
  /* ============================================
     SECONDARY/ACCENT COLORS - Gold
     ============================================ */
  --brand-secondary: #C9A962;
  --brand-secondary-light: #E8D5A3;
  --brand-secondary-dark: #A68B4B;
  
  /* ============================================
     NEUTRAL COLORS
     ============================================ */
  --brand-charcoal: #1A1A2E;
  --brand-surface: #FFFFFF;
  --brand-surface-elevated: #F8F9FC;
  --brand-border: #E5E7EB;
  --brand-border-subtle: rgba(201, 169, 98, 0.2);
  
  /* ============================================
     TEXT COLORS
     ============================================ */
  --brand-text: #1A1A2E;
  --brand-text-light: #FFFFFF;
  --brand-text-muted: #6B7280;
  --brand-text-placeholder: #9CA3AF;
  
  /* ============================================
     SEMANTIC COLORS
     ============================================ */
  --color-success: #059669;
  --color-success-light: #D1FAE5;
  --color-success-border: #a7f3d0;
  --color-success-dark: #065F46;
  --color-warning: #F59E0B;
  --color-warning-light: #FEF3C7;
  --color-warning-border: #fde68a;
  --color-warning-dark: #92400E;
  --color-error: #DC2626;
  --color-error-light: #FEE2E2;
  --color-error-border: #fecaca;
  --color-error-dark: #991B1B;
  --color-info: #3B82F6;
  --color-info-light: #DBEAFE;
  --color-info-border: #bfdbfe;
  --color-info-dark: #1E40AF;
  
  /* ============================================
     TYPOGRAPHY
     ============================================ */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;
  
  /* Font Sizes */
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 24px;
  --text-4xl: 28px;
  --text-5xl: 32px;
  --text-6xl: 48px;
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 1.7;
  
  /* Letter Spacing */
  --tracking-tight: -0.5px;
  --tracking-normal: 0;
  --tracking-wide: 0.5px;
  --tracking-wider: 1px;
  --tracking-widest: 1.5px;
  
  /* ============================================
     SPACING
     ============================================ */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  
  /* ============================================
     BORDER RADIUS
     ============================================ */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* ============================================
     SHADOWS
     ============================================ */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.16);
  --shadow-btn-primary: 0 8px 24px rgba(30, 58, 95, 0.2);
  --shadow-btn-secondary: 0 4px 12px rgba(0, 0, 0, 0.08);
  
  /* ============================================
     TRANSITIONS
     ============================================ */
  --transition-fast: 0.15s ease;
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
  --transition-sidebar: 0.3s ease;
  
  /* ============================================
     Z-INDEX SCALE
     ============================================ */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
  --z-notification: 700;
  
  /* ============================================
     LAYOUT
     ============================================ */
  --sidebar-width: 280px;
  --sidebar-collapsed-width: 72px;
  --header-height: 64px;
  --content-max-width: 1400px;
  --form-max-width: 400px;
  
  /* ============================================
     STATE COLORS (selection, disabled, hover)
     ============================================ */
  --color-selected-bg: #EBF0F7;
  --color-disabled-bg: #D1D5DB;
  --color-disabled-text: var(--brand-text-placeholder);

  /* ============================================
     SUBTLE TOKENS (used by buttons, borders)
     ============================================ */
  --border-subtle: var(--brand-border);          /* #E5E7EB */
  --bg-subtle: var(--brand-surface-elevated);    /* #F8F9FC */

  /* ============================================
     SIDEBAR TOKENS - White Theme
     ============================================ */
  --sidebar-bg: #FFFFFF;
  --sidebar-border: var(--border-subtle);
  --sidebar-text: var(--brand-text-muted);
  --sidebar-text-hover: var(--brand-primary-dark);
  --sidebar-text-active: var(--brand-primary);
  --sidebar-active-bg: rgba(30, 58, 95, 0.08);
  --sidebar-hover-bg: rgba(30, 58, 95, 0.04);
  
  /* ============================================
     TOP HEADER BAR - Dark Navy
     ============================================ */
  --header-bg: var(--brand-primary-dark);
  --header-text: var(--brand-text-light);
  --header-border: rgba(255, 255, 255, 0.08);
  
  /* ============================================
     COMPONENT TOKENS
     ============================================ */
  --card-bg: var(--brand-surface);
  --card-border: var(--brand-border);
  --card-header-border: var(--brand-border);
  --data-icon-bg: var(--brand-surface-elevated);
  --action-icon-gradient-start: var(--brand-primary);
  --action-icon-gradient-end: var(--brand-primary-light);
  --login-brand-bg: var(--brand-primary-dark);
  --login-brand-overlay: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
  --login-form-bg: var(--brand-surface);
  --credential-icon-bg: rgba(201, 169, 98, 0.15);
  --footer-bg: var(--brand-surface);
  --footer-border: var(--brand-border);
  --footer-text: var(--brand-text-muted);
}