/* Nos Églises - Styles */

.church-card {
  transition: all 0.3s ease;
}

.church-card:hover {
  transform: translateY(-4px);
}

/* Animation d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.church-card {
  animation: fadeInUp 0.6s ease-out;
}

.church-card:nth-child(1) { animation-delay: 0.1s; }
.church-card:nth-child(2) { animation-delay: 0.2s; }
.church-card:nth-child(3) { animation-delay: 0.3s; }
.church-card:nth-child(4) { animation-delay: 0.4s; }
.church-card:nth-child(5) { animation-delay: 0.5s; }
.church-card:nth-child(6) { animation-delay: 0.6s; }

/* Map container */
#map-container {
  min-height: 600px;
}
