/* Home-specific: Staggered fade-in for cards */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }
.fade-in:nth-child(7) { animation-delay: 0.1s; } /* Reset for next section */
.fade-in:nth-child(8) { animation-delay: 0.2s; }
.fade-in:nth-child(9) { animation-delay: 0.3s; }
.fade-in:nth-child(10) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced hero description fonts */
.hero-section .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--bs-info); /* Ties back to theme */
}