/* Shared styles for every page on the site. Edit here and it updates
   everywhere — you never need to touch this file per-page. */

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; }

/* Signature tread-pattern divider used between sections site-wide */
.tread-divider {
  height: 6px;
  background-image: repeating-linear-gradient(
    115deg, #B72714 0px, #B72714 14px,
    #000000 14px, #000000 16px,
    transparent 16px, transparent 30px
  );
}

a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #B72714;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Continuously scrolling client logo strip (homepage) */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
