/* 4mindsthatroam.com — custom styles
 *
 * Most styling is handled by Tailwind via the CDN script tag.
 * This file holds any custom additions: typography refinements, scroll behaviour,
 * or things Tailwind utilities don't cover cleanly.
 */

html {
  scroll-behavior: smooth;
}

/* Selection colour matches the amber accent */
::selection {
  background: #fde68a;
  color: #78350f;
}

/* Focus ring polish */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: 2px;
  border-radius: 4px;
}
