/* /shared-core/css/global-tokens.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-body);

  /* Light Theme Variables */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --bg-header: rgba(255, 255, 255, 0.82);
  --bg-card: rgba(255, 255, 255, 0.9);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-focus: #6366f1;

  /* Accent Palette */
  --accent-primary: #4f46e5;      /* Indigo */
  --accent-primary-hover: #4338ca;
  --accent-secondary: #0ea5e9;    /* Sky Blue */
  --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
  --accent-glow: rgba(79, 70, 229, 0.18);
  --badge-bg: #e0e7ff;
  --badge-text: #3730a3;

  /* Layout Standards */
  --header-height: 74px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --backdrop-blur: blur(16px);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.12);
}

/* Dark Theme Variables - Premium High-Contrast Modern Palette */
[data-theme="dark"] {
  --bg-main: #060911;
  --bg-surface: #0e1424;
  --bg-surface-hover: #192238;
  --bg-header: rgba(14, 20, 36, 0.88);
  --bg-card: rgba(14, 20, 36, 0.95);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #8092ab;

  --border-color: #1e293b;
  --border-focus: #818cf8;

  --accent-primary: #6366f1;
  --accent-primary-hover: #818cf8;
  --accent-secondary: #38bdf8;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #38bdf8 100%);
  --accent-glow: rgba(99, 102, 241, 0.35);
  --badge-bg: rgba(99, 102, 241, 0.25);
  --badge-text: #c7d2fe;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 28px -6px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.75);
}


/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}
