/* Custom styles beyond Tailwind */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hero-bg {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/hero.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
}

.terra-green {
  color: #10b981;
}

.nav-link {
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #10b981;
}

/* Make forms and cards nicer */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}