@import "tailwindcss";

/* Theme tokens — luxury dark + gold */
@theme {
  --color-primary: #C9A227;
  --color-accent: #E8C766;
  --color-surface: #0B0B10;
  --color-ink: #F2EEE4;
  --color-ink-muted: rgba(242, 238, 228, 0.62);
  --font-sans: "Vazirmatn", system-ui, sans-serif;
  --font-display: "Estedad", "Vazirmatn", system-ui, sans-serif;
}

:root {
  --primary: #C9A227;
  --accent: #E8C766;
  --surface: #0B0B10;
  --surfaceMuted: #12121A;
  --ink: #F2EEE4;
  --inkMuted: rgba(242, 238, 228, 0.62);
  --muted: rgba(242, 238, 228, 0.38);
  --border: rgba(255, 255, 255, 0.08);
  --success: #7EE787;
  --color-text: #F2EEE4;
  --color-surface-root: #0B0B10;
}

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

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