/* outreachprograms.css */

/* Section styling */
.env-section {
  margin: 0 auto;
  padding: 3rem 1.5rem;
  overflow-x: hidden;
  max-width: 1200px;
}

/* Container adjustments for proper centering */
.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

/* Section title styling */
.section-title {
  text-align: center;
  font-family: "DM Serif Text", serif;
  font-size: 3rem;
  color: #333;
  margin-bottom: 10px;
}

/* Initiative block styling */
.initiative-block {
  margin-bottom: 4rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.initiative-title {
  font-family: "DM Serif Text", serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Text styling for consistent appearance */
.initiative-intro, 
.objective-list li,
.initiative-block p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

/* Heading styles */
h5 {
  font-family: "DM Serif Text", serif;
  font-size: 1.2rem;
  margin-top: 10px;
  color: #333;
}

/* Event poster cards */
.event-poster {
  transition: transform 0.3s ease;
  height: 100%;
}

.event-poster:hover {
  transform: translateY(-5px);
}

.event-poster .card-title {
  font-family: "DM Serif Text", serif;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.event-poster p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

.event-poster strong {
  color: #333;
}

/* Gallery styling */
.gallery-heading {
  font-family: "DM Serif Text", serif;
  font-size: 1.5rem;
  color: #333;
  margin: 2rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}

.gallery-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 20px;
  background-color: #333;
}

/* Gallery images */
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Initiative summary */
.initiative-summary {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 5px;
  margin-top: 2rem;
}

/* List styling */
.objective-list {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.objective-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 0.5rem;
}

/* Image heights for poster images */
.same-height-img,
.card-img-top {
  height: 350px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* General paragraph styles */
p {
  color: #666;
  margin-bottom: 0;
}

p strong {
  color: #333;
}

/* Divider */
hr {
  margin: 3rem 0;
  opacity: 0.15;
  border-color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .initiative-title {
    font-size: 1.75rem;
  }
  
  .initiative-intro, 
  .objective-list li,
  .initiative-block p {
    font-size: 1.1rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .same-height-img,
  .card-img-top {
    height: 250px;
  }
  
  .initiative-summary {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .initiative-title {
    font-size: 1.5rem;
  }
  
  .gallery-image {
    height: 160px;
  }
  
  .initiative-summary {
    padding: 1.25rem;
  }
}