/* ===================================================
   ROSE EVENTS — Hero Slider
   =================================================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slide backgrounds */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: zoomSlow 12s ease-in-out infinite;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.45) 100%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-decorative {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-decorative .line {
  width: 3.5rem;
  height: 1px;
  background: rgba(229, 141, 168, 0.7);
}

.hero-decorative .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(229, 141, 168, 0.8);
  background: rgba(229, 141, 168, 0.3);
}

.hero-title {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  max-width: 58rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.95);
}

.hero-script {
  font-family: var(--font-script);
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 25px rgba(243, 164, 190, 0.4);
}

.hero-subtitle {
  color: #f9fafb;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  max-width: 44rem;
  margin: 0 auto 3rem;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.hero-dot {
  border-radius: 9999px;
  transition: all 500ms;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  width: 2.5rem;
  height: 4px;
  background: var(--accent);
}

.hero-dot:not(.active) {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot:not(.active):hover {
  background: var(--white);
}

/* Learn More bounce link */
.hero-learn-more {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 300ms;
  z-index: 20;
  text-decoration: none;
  animation: float 6s ease-in-out infinite;
}

.hero-learn-more:hover {
  color: var(--white);
}

.hero-learn-more span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-learn-more svg {
  width: 20px;
  height: 20px;
  animation: bounce 1s infinite;
}