body {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Nav link underline animation */
.nav-link {
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f5a623;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active page underline */
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #f5a623;
}

/* Remove gap between hero wave and next section */
.hero-wave-fix {
  display: block;
  margin-top: -2px;
  position: relative;
  z-index: 2;
}