/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.7);
  transform: scale(1.1);
  z-index: 1;
}

.poster-card {
  position: relative;
  z-index: 2;
  width: min(800px, 95%);
  max-height: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.poster-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Countdown section */
.countdown-section {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: -5px;
  margin-bottom: 30px;
}

.countdown-title {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #000;
}

.timer-container,
#timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.timer-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

/* Original color scheme */
.timer-box:nth-child(1) {
  border-top: 5px solid #e63946;
}

/* red */
.timer-box:nth-child(2) {
  border-top: 5px solid #3a86ff;
}

/* blue */
.timer-box:nth-child(3) {
  border-top: 5px solid #2ea44f;
}

/* green */
.timer-box:nth-child(4) {
  border-top: 5px solid #f3a71f;
}

/* yellow */

.numbers {
  display: block;
  font-size: 2.2em;
  font-weight: 900;
  color: #111;
}

.small-note {
  margin-top: 10px;
  color: #333;
  font-size: 0.9em;
}

/* Info section */
.event-info {
  background: #fff;
  margin: 30px auto;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  max-width: 850px;
  text-align: left;
}

.colorful-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.colorful-title span {
  display: inline-block;
}

.colorful-title .red {
  color: #E93C3C;
}

.colorful-title .blue {
  color: #007BFF;
}

.colorful-title .yellow {
  color: #FFC107;
}
.colorful-title .black{
  color: black;
}
.event-info h4 {
  margin-top: 25px;
}

.event-info ul {
  margin: 10px 20px;
}

.event-info .contact {
  margin-top: 15px;
  font-weight: 500;
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 400px;
  }

  .poster-card {
    width: 90%;
  }

  .numbers {
    font-size: 1.8em;
  }
}