/*
 * Theme: Light
 * Clean, minimal light theme
 * Author: Tracker Team
 */

[data-theme="light"] {
  /* Backgrounds */
  --bg-app: #f2f3f5;
  --bg-app-secondary: #e9ebef;
  --bg-card: #ffffff;
  --bg-card-solid: #ffffff;
  --bg-card-hover: #f8f9fa;
  --bg-sidebar: #1a1a2e;
  --bg-input: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* Text */
  --text-primary: #1a1f2e;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-sidebar: #a0a8c0;
  --text-sidebar-active: #ffffff;
  --btn-text: #ffffff;

  /* Accents */
  --accent: #6c5ce7;
  --accent-rgb: 108, 92, 231;
  --accent-hover: #5b4cdb;
  --accent-light: rgba(108, 92, 231, 0.1);
  --accent-glow: rgba(108, 92, 231, 0.2);
  --accent-secondary: #00b894;
  --accent-secondary-rgb: 0, 184, 148;
  --accent-tertiary: #0984e3;

  /* Sidebar */
  --sidebar-accent: #6c5ce7;
  --sidebar-hover: rgba(108, 92, 231, 0.15);

  /* Semantic */
  --success: #00b894;
  --success-light: rgba(0, 184, 148, 0.1);
  --danger: #e74c3c;
  --danger-light: rgba(231, 76, 60, 0.1);
  --warning: #f39c12;
  --warning-light: rgba(243, 156, 18, 0.1);
  --info: #0984e3;
  --info-light: rgba(9, 132, 227, 0.1);

  /* Borders */
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);

  /* Shadows */
  --shadow-sm: 0 1px 3px 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-glow: none;

  /* Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  /* Fonts */
  --font-heading: 'Inter', -apple-system, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Effects */
  --glass-blur: blur(12px);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;

  color-scheme: light;
}
