/* Events Section */
.events-section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .events-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .events-section {
    padding: 50px 0;
  }
}

.event-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.event-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent), #e8d5c4);
  border-radius: 20px 20px 0 0;
}

.event-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.event-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.event-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  transition: opacity 0.4s ease;
}

.event-content {
  padding: 35px 30px;
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.event-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary);
  font-weight: 400;
}

.event-detail {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.map-container {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  border-radius: 15px;
}
