/* ==========================================================================
   Society Dekho - Minimalist & Modern Mobile Design Tokens
   Clean, vibrant blue accents, soft pastel action tiles, and crisp typography
   Strictly NO emojis - Clean SVG Icons only
   ========================================================================== */

:root {
  /* Vibrant Primary Brand Palette */
  --primary: #2563eb;           /* Modern Royal Blue */
  --primary-hover: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-light: #eff6ff;
  --primary-subtle: #f8fafc;
  --primary-glow: rgba(37, 99, 235, 0.16);

  --accent: #3b82f6;
  --accent-light: #eff6ff;

  --secondary: #1e293b;
  --secondary-light: #334155;

  /* Refined Semantic Colors */
  --emerald: #16a34a;
  --emerald-light: #f0fdf4;
  --emerald-subtle: #dcfce7;

  --amber: #d97706;
  --amber-light: #fffbeb;
  --amber-subtle: #fef3c7;

  --rose: #dc2626;
  --rose-light: #fef2f2;
  --rose-subtle: #fee2e2;

  --purple: #9333ea;
  --purple-light: #faf5ff;

  --cyan: #0891b2;
  --cyan-light: #ecfeff;

  --orange: #ea580c;
  --orange-light: #fff7ed;

  /* Quick Action Tile Pastels */
  --tile-blue-bg: #eff6ff;
  --tile-blue-text: #2563eb;
  
  --tile-orange-bg: #fff7ed;
  --tile-orange-text: #ea580c;
  
  --tile-green-bg: #f0fdf4;
  --tile-green-text: #16a34a;
  
  --tile-pink-bg: #fef2f2;
  --tile-pink-text: #dc2626;
  
  --tile-purple-bg: #faf5ff;
  --tile-purple-text: #9333ea;
  
  --tile-cyan-bg: #ecfeff;
  --tile-cyan-text: #0891b2;

  /* Surfaces & Backgrounds */
  --bg-app: #f8fafc;
  --bg-sidebar: #ffffff;
  --bg-sidebar-active: #eff6ff;
  --bg-sidebar-hover: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-muted: #f1f5f9;
  --bg-input: #ffffff;

  /* Typography Colors */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Subtle Borders */
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-focus: #2563eb;
  --border-sidebar: #e2e8f0;

  /* Elevation */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-device: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Dimensions */
  --sidebar-width: 250px;
  --header-height: 64px;
  --transition-smooth: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
