.event-section {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  margin-top:-50px;
}

.event-heading {
  text-align: center;
  margin: 70px 0 30px;
}

.event-heading h3 {
  font-size: 42px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: rgb(201, 162, 77);
}

.event-heading p {
  color: #bdbdbd;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.event-slider {
  display: flex;
  /* gap: 20px; */
  overflow: hidden;
  position: relative;
}

.event-card {
  min-width: calc(20% - 16px);
  background: #151515;
  /* border-radius: 18px; */
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  flex-shrink: 0;
}

.event-image {
  position: relative;
  height: 481px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.08);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.event-card:hover .event-overlay {
  opacity: 1;
  visibility: visible;
}

.event-btn {
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease;
}

.book-btn {
  background: rgb(201, 162, 77);
  color: #000;
}

.book-btn:hover {
  background: #fff;
}

.info-btn {
  border: 2px solid #fff;
  color: #fff;
}

.info-btn:hover {
  background: #fff;
  color: #000;
}

.day-badge {
  position: absolute;
  bottom: 20px;
  left: 7px;
  background: rgb(201, 162, 77);
  color: #000;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  z-index: 2;
  font-weight: bold;
  min-width: 60px;
  display: none;
}

.day-badge span {
  display: block;
  font-size: 13px;
  /* margin-bottom: 3px; */
}

.day-badge strong {
  font-size: 20px;
}

.event-content {
  padding: 20px;
  border-right: 2px solid #222;
}

.event-card:nth-child(5) .event-content {
  border-right: none;
}

.event-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.event-date {
  color: #bdbdbd;
  font-size: 15px;
}

@media (max-width: 1280px) {
  /*.event-card {*/
  /*  min-width: calc(33.333% - 14px);*/
  /*}*/
  .event-image {
    height: 409px;
}
}

@media (max-width: 768px) {
  .event-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .event-card {
    width: 100%;
    background: #151515;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
  }

  .event-image {
    height: 350px;
  }

  .event-heading h3 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .event-card {
    min-width: 100%;
  }

  .event-image {
    height: 550px;
  }

.event-heading {
        margin: 60px 0 20px;
    }
}
