/* kindness_ministry.css */

.kindness-hero {
  background-image: 
    url('../'),
    url('../images/humanity_in_action1.JPG'),
    url('../images/humanity_in_action2.JPG'),
    url('../images/humanity_in_action3.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 37, 64, 0.75), rgba(10, 37, 64, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  max-width: 90%;
}

.hero {
  background-image: url('../images/kindness-hero-1.jpg');   
  animation: crossfade 30s infinite;
}





@keyframes crossfade {
  0%, 33%   { background-image: url('../images/humanity_in_action1.JPG'); }
  33.1%, 66% { background-image: url('../images/humanity_in_action2.JPG'); }
  66.1%, 100% { background-image: url('../images/humanity_in_action3.JPG'); }
}

.kindness-hero .hero-content {
  max-width: 900px;
}

.section-title {
  font-size: 3rem;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.shadow-lg {
  box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
}

.hover-gold:hover {
  color: var(--gold) !important;
}