html {
  scroll-behavior: smooth;
}

body {
  color: #0f172a; /* slate-900 */
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  background-image: radial-gradient(#f1f5f9 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Custom hover effects for anchors */
a:not([class*="bg-primary"]) {
  position: relative;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:not([class*="bg-primary"]):hover {
  color: #F97316; /* primary */
}

a:not([class*="bg-primary"])::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #F97316;
  transition: width 0.2s ease;
}

a:not([class*="bg-primary"]):hover::after {
  width: 100%;
}
