/* ═══════════════════════════════════════
   HERO.CSS — Slideshow a pantalla completa
   con intro estilo Elegant End Estates
═══════════════════════════════════════ */

#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ── SLIDES ── */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 7s ease;
  filter: grayscale(30%);
}
.hero-slide.active img { transform: scale(1); }

/* Overlay oscuro dramático */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

/* ── CONTENIDO ── */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5vw;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 2.5rem;
}
.hero-title em {
  font-style: italic;
  color: rgba(245,242,238,0.75);
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.55);
  margin-bottom: 3.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  text-decoration: none;
  padding: 1rem 2.4rem;
  transition: all 0.35s;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--black);
}

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.7);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 2.4rem;
  transition: all 0.35s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── SLIDE DOTS ── */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hero-dot {
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--accent);
  width: 3rem;
}
