/* MF Carriers — custom styles (supplements Tailwind CDN) */

html {
  scroll-behavior: smooth;
}

/* Offset anchor targets so the fixed header doesn't cover section titles */
section[id] {
  scroll-margin-top: 5rem;
}

body {
  overflow-x: hidden;
}

/* Animated underline for desktop nav links */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #57b04a;
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
