/* === HERO — Home Header Image & Text === */

/* Container */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background image slides */
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  opacity: 0;
  transition: opacity 2s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Overlay — black gradient for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.58) 45%,
    rgba(0,0,0,0.90) 100%
  ) !important;
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 2rem;
}

/* Eyebrow label */
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #38c8f5 !important;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
  animation: fadeUp 0.8s 0.2s both;
}

/* Main title */
.hero-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.08;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55) !important;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-title em {
  font-style: italic;
  color: #38c8f5 !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5) !important;
}

/* Subtitle */
.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: #ffffff !important;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55) !important;
  animation: fadeUp 0.9s 0.5s both;
}

/* Rating badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.65rem 1.4rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.55s both;
}
.hero-badge .score {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1;
}
.hero-badge .stars {
  color: #ffd166 !important;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
.hero-badge .label {
  font-size: 0.74rem;
  color: #ffffff !important;
  text-align: left;
  line-height: 1.5;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.65s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff !important;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #ffffff, transparent) !important;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* === KEYFRAMES === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9; }
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-sub   { font-size: 0.95rem; }
  .hero-btns  { flex-direction: column; align-items: center; }
}
