/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://via.placeholder.com/1920x400");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  margin-bottom: 40px;
}

.page-header h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Event Cards */
.event-card {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-date {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  text-align: center;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-info {
  padding: 20px;
  flex: 1;
}

.event-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.event-time {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 40px 0;
    text-align: center;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .event-date .day {
    margin-right: 10px;
  }
}
