/* c:/xampp/htdocs/ng/ngone/assets/css/variables.css */
:root {
  /* Brand Color Palette - Styled to match official NG Blue & Cyan Logo */
  --primary: #0052cc;
  --primary-hover: #0040a8;
  --primary-light: rgba(0, 82, 204, 0.08);
  --primary-glow: rgba(0, 82, 204, 0.22);

  --secondary: #0080ff;
  --secondary-hover: #006ce0;
  --secondary-light: rgba(0, 128, 255, 0.08);

  --accent-purple: #7c3aed;
  --accent-pink: #e11d48;

  --success: #059669;
  --success-light: rgba(5, 150, 105, 0.1);
  --warning: #d97706;
  --warning-light: rgba(217, 119, 6, 0.1);
  --danger: #dc2626;
  --danger-light: rgba(220, 38, 38, 0.1);

  /* Light Theme Core */
  --bg-dark: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-surface-hover: #e2e8f0;
  
  --border-subtle: #e2e8f0;
  --border-card: #cbd5e1;
  --border-focus: rgba(0, 82, 204, 0.4);

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-inverted: #ffffff;

  /* Glassmorphism for Light Mode */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-blur: blur(16px);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Shadows - Crisp Light Elevation */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 20px rgba(0, 82, 204, 0.2);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;
}
