/* ==========================================================================
   WEEKLY EYE NEWS — DESIGN SYSTEM & TOKENS
   Uttarakhand Digital TV News & Professional Newsroom CMS
   ========================================================================== */

:root {
  /* Brand Palette - Matched Exactly to Weekly Eye Logo */
  --brand-red: #C4121A;
  --brand-red-dark: #8B0000;
  --brand-red-light: #FFE4E6;
  --brand-red-bright: #E11D48;
  --brand-red-glow: rgba(196, 18, 26, 0.35);
  
  --brand-navy: #0A0E1A;
  --brand-navy-light: #141B2D;
  --brand-navy-card: #182238;
  --brand-slate: #334155;
  
  --brand-gold: #FACC15;
  --brand-gold-dark: #CA8A04;
  --brand-gold-light: #FEF08A;
  --brand-gold-glow: rgba(250, 204, 21, 0.35);

  --brand-cyan: #0284C7;
  --brand-cyan-light: #E0F2FE;
  --brand-cyan-glow: rgba(2, 132, 199, 0.4);

  --brand-green: #10B981;
  --brand-green-light: #D1FAE5;
  --brand-blue: #0284C7;
  --brand-blue-light: #DBEAFE;
  --brand-purple: #8B5CF6;

  /* Neutral Spectrum */
  --bg-body: #080D1A;
  --bg-surface: #10172A;
  --bg-surface-elevated: #1E293B;
  --bg-surface-glass: rgba(16, 23, 42, 0.92);
  --bg-surface-light: #F8FAFC;
  --bg-card-light: #FFFFFF;
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-light-primary: #0F172A;
  --text-light-secondary: #475569;
  --text-light-muted: #94A3B8;

  --border-subtle: #1E293B;
  --border-subtle-light: #E2E8F0;
  --border-focus: #C4121A;
  --border-gold: #FACC15;

  /* Typography */
  --font-headline: 'Rozha One', 'Mukta', serif;
  --font-hindi: 'Mukta', 'Noto Sans Devanagari', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Elevation / Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 10px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.5), 0 4px 8px -4px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 30px -5px rgba(0, 0, 0, 0.6), 0 8px 12px -6px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 4px 20px rgba(196, 18, 26, 0.45);
  --shadow-gold: 0 4px 20px rgba(250, 204, 21, 0.35);
  --shadow-cyan: 0 4px 20px rgba(2, 132, 199, 0.35);

  /* Layout Spacing */
  --header-height: 64px;
  --topbar-height: 38px;
  --newsroom-sidebar-w: 240px;
  --newsroom-right-w: 360px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Overrides for Public Portal when toggled */
[data-theme="light"] {
  --bg-body: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F1F5F9;
  --bg-surface-glass: rgba(255, 255, 255, 0.92);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --border-subtle: #E2E8F0;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
