@import "tailwindcss";

/* Brand tokens — luxury register: deep petrol navy + warm gold on dark canvas */
:root {
  --primary: #0F4C81;
  --accent: #F2A104;
  --surface: #0B1220;
  --ink: #F4F1EA;
  --secondary: #C8A24C;
  --surfaceMuted: #11151C;
  --inkMuted: rgba(244, 241, 234, 0.62);
  --muted: rgba(244, 241, 234, 0.38);
  --border: rgba(255, 255, 255, 0.08);
  --success: #7EE787;
  --shadow-glow: 0 0 32px -4px var(--accent);
  --shadow-lg: 0 24px 56px -16px rgba(0, 0, 0, 0.28);
}

@theme {
  --color-primary: #0F4C81;
  --color-accent: #F2A104;
  --color-surface: #0B1220;
  --color-ink: #F4F1EA;
  --color-ink-muted: rgba(244, 241, 234, 0.62);
  --font-sans: "Vazirmatn", system-ui, sans-serif;
  --font-display: "Estedad", "Vazirmatn", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.8;
}
#root { min-height: 100vh; }

::selection { background: color-mix(in oklch, var(--accent) 70%, transparent); color: var(--surface); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
