.hero {
  background: url('../images/acts_of_compassion_collage_skewed_fixed2.png') center/cover no-repeat fixed;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}


.hero-overlay, .acts-section, .cta-section {
  background-color: rgba(255, 255, 255,255);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.acts-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.filters input,
.filters select {
  padding: 10px;
  font-size: 16px;
  width: 48%;
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.act-card {
  background-color: rgba(255, 255, 255, 0.15);
  color: black;
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease;
}

.act-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}



.cta-section {
  background: #0e2a47;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-button {
  background-color: #ffffff;
  color: #002855;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #e0e0e0;
}


