/* REVYSTA Design Tokens
   Source: investori.html light theme + hotelieri.html dark accents
   Fonts: Space Grotesk (headings) + Inter (body) */

:root {
  /* Primary */
  --primary: #1e40af;
  --primary-hover: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-soft: rgba(30, 64, 175, 0.06);
  --primary-glow: rgba(30, 64, 175, 0.25);

  /* Accent (green) */
  --accent: #059669;
  --accent-hover: #10b981;
  --accent-soft: rgba(5, 150, 105, 0.08);

  /* Warning / highlight */
  --orange: #f59e0b;
  --red: #e94560;

  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Text */
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-on-primary: #ffffff;

  /* Dark sections (dashboard embeds) */
  --dark-bg: #0a0e27;
  --dark-card: #111636;
  --dark-card2: #161b45;
  --dark-accent: #e94560;
  --dark-text: #eaeaea;
  --dark-sub: #a0a0b0;
  --dark-border: rgba(255, 255, 255, 0.06);

  /* Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 16px rgba(30, 64, 175, 0.25);

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Typography scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.82rem;
  --fs-base: 0.95rem;
  --fs-md: 1.05rem;
  --fs-lg: 1.15rem;
  --fs-xl: 1.35rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: clamp(2rem, 4.5vw, 2.8rem);

  /* Transitions */
  --ease: 0.2s ease;
  --ease-slow: 0.3s ease;

  /* Layout */
  --container-max: 1120px;
  --container-narrow: 860px;
  --nav-height: 48px;
}
