/* Church School */

/* Custom Styles */
.hero-section {
  background-size: cover;
  color: white;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adjust height for smaller screens */
@media (max-width: 768px) {
  .hero-section {
    height: 280px; /* Smaller height */
    background-position: top center; /* Adjust focus */
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 200px; /* Even smaller for mobile */
    background-position: center center; /* Ensure it looks balanced */
  }
}


.hero-section h1 {
  animation: fadeInDown 1s ease-in-out;
}

.animated-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* Fade in animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.description_text {
  font-weight: bold;
  font-size: 18px;
}

.description_title {
  background-color: #26368b;
  color: white;
}

#brigade_gallery h3 {
  color: #26368b;
  font-weight: bold;
}

.card-title {
  color: #26368b;
  font-weight: bold;
  font-size: 24px;
}

.subtitle {
  color: #26368b;
  font-weight: bold;
}
