/* assets/css/variables.css */
:root {
  /* Brand */
  --color-orange: #E8520A;
  --color-orange-hover: #c94408;
  --color-black: #1A1A1A;
  --color-gray: #8A8A8A;

  /* Light theme (default) */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-card: #ffffff;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #8A8A8A;
  --border-color: #e0e0e0;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --nav-bg: rgba(255,255,255,0.95);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, sans-serif;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  /* Transitions */
  --transition: 0.25s ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 70px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

[data-theme="dark"] {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-card: #222222;
  --text-primary: #f0f0f0;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;
  --border-color: #333333;
  --shadow: 0 2px 16px rgba(0,0,0,0.4);
  --nav-bg: rgba(15,15,15,0.95);
}
