/* ===== Events Section Styling ===== */
#events {
  background: #f8f9fa; /* Bootstrap's light gray */
  padding: 60px 0;
}

#events h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

#events h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards */
#events .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#events .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Card Images */
#events .card img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#events .card:hover img {
  transform: scale(1.1);
}

/* Card Titles */
#events .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

/* Card Text */
#events .card-text {
  font-size: 0.95rem;
  color: #666;
  min-height: 60px;
}

/* Buttons */
#events .btn-primary {
  background: #007bff;
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  transition: background 0.3s ease;
}

#events .btn-primary:hover {
  background: #0056b3;
}
