/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  height: 520px;
  background-image: url("../../../assets/hero-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--pearl-white);
  padding: 40px 24px 60px;
  max-width: 680px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
}

.hero__description {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__timing {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 28px;
}

.hero__cta {
  background-color: #a02334;
  color: var(--pearl-white);
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  border-radius: 4px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero__cta:hover {
  background-color: #8b1f2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__dot--active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--imperial-purple);
}

.hero__dot:hover:not(.hero__dot--active) {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ================================
   MOBILE (up to 767px)
   ================================ */
@media (max-width: 767px) {
  .hero {
    background-image: url("../../../assets/hero-image-mobile.png");
  }

  .hero__content {
    padding: 30px 20px 40px;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero__description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .hero__timing {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero__cta {
    font-size: 13px;
    padding: 14px 32px;
  }
}

/* ================================
   TABLET & DESKTOP (768px+)
   ================================ */
@media (min-width: 768px) {
  .hero {
    height: 700px;
  }

  .hero__content {
    padding: 60px 40px 80px;
    max-width: 800px;
  }

  .hero__title {
    font-size: 56px;
    margin-bottom: 24px;
  }

  .hero__description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 600px;
  }

  .hero__timing {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero__cta {
    font-size: 15px;
    padding: 18px 48px;
  }
}
