/* === THEME VARIABLES === */
:root {
  /* Colors */
  --primary-color: #0f172a; /* Deep Navy Blue - Trust */
  --secondary-color: #f59e0b; /* Amber/Gold - Action */
  --bg-color: #f8fafc; /* Off-White Background */
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --success: #10b981;

  /* Typography */
  --font-heading: "Roboto", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Utilities */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] body {
  background-color: var(--bg-color);
  color: var(--text-dark);
}
