/* global.css */
:root{
  --accent: #ea580c;
  --accent-dark: #c2410c;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
}

/* Custom scrollbar (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* Hero pattern */
.hero-pattern {
  background-color: #fff7ed;
  background-image:
    radial-gradient(#fdba74 0.5px, transparent 0.5px),
    radial-gradient(#fdba74 0.5px, #fff7ed 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}
