/* EVENT SECTION - 2026 COLOR UPDATE */
.events-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 15px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #800000; /* Maroon Primary */
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #D4AF37; /* Soft Gold Accent */
  margin: 12px auto 0;
  border-radius: 2px;
}

.events-grid {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.event-card {
  background: #f4e5e8; /* White card background */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(128, 0, 0, 0.1); /* Maroon-tinted shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(128, 0, 0, 0.2); /* Stronger Maroon shadow */
  border-color: #D4AF37; /* Gold border on hover */
}

.event-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #D4AF37; /* Soft Gold accent line */
}

.event-info {
  padding: 15px;
  text-align: center;
}

.event-date {
  display: inline-block;
  background: #800020; /* Maroon background */
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.event-title {
  font-size: 20px;
  color: #800020; /* Maroon Title */
  margin: 10px 0 0;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.event-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.event-title a:hover {
  color: #D4AF37; /* Soft Gold hover for links */
}
