/* Hero section styles */
.hero-container {
  position: relative;
  margin: 24px auto 48px;
  max-width: var(--container-width);
  padding: 0 16px;
}

.hero-slider {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--gray-200);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  display: flex;
  height: 100%;
  padding: 40px;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  color: var(--white);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50%;
  z-index: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 18px;
   max-width: 450px;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #45c3c5;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 24px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  width: fit-content;
}

.play-button:hover {
  background-color: #ff4875;
  transform: translateY(-2px);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 2;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.hero-dot.active {
  background-color: var(--white);
}

.hero-arrows {
  display: flex;
  gap: 16px;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background-color var(--transition-fast);
}

.hero-arrow:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 350px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-text {
    max-width: 60%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .play-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 300px;
  }

  .hero-content {
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  }

  .hero-text {
    max-width: 100%;
    justify-content: flex-end;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-image {
    width: 100%;
  }

  .hero-controls {
    bottom: 16px;
    padding: 0 16px;
  }

  .hero-arrow {
    width: 32px;
    height: 32px;
  }
}
