/*
 * SharkMovie - Hero Slider Component CSS
 */

.sm-hero-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--sm-radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  background-color: var(--sm-dark-bg);
  box-shadow: var(--sm-shadow-lg);
}

.sm-hero-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.sm-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.sm-hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.sm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}

.sm-hero-content {
  position: relative;
  z-index: 2;
  padding: 28px 45px;
  max-width: 680px;
  color: var(--sm-dark-text);
}

.sm-hero-badge-wrap {
  margin-bottom: 8px;
}

.sm-hero-title {
  font-family: var(--sm-font-heading);
  font-size: var(--sm-hero-title-size);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
}

.sm-hero-description {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #cbd5e1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sm-hero-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.sm-hero-meta-bar .sm-genre-pill {
  background-color: var(--sm-primary);
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.sm-hero-buttons {
  display: flex;
  gap: 15px;
}

/* Dots Navigation */
.sm-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.sm-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--sm-transition);
}

.sm-hero-dot.active {
  background-color: #ffffff;
  width: 24px;
  border-radius: var(--sm-radius-full);
}
