/* ============================================================
   SIGNIA — Hero Section Component
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0908;
}

/* Full-screen background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: saturate(0.7) brightness(0.55);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(10, 9, 7, 0.70) 0%,
      rgba(10, 9, 7, 0.45) 50%,
      rgba(10, 9, 7, 0.55) 100%
    ),
    linear-gradient(to bottom,
      rgba(10, 9, 7, 0.50) 0%,
      rgba(10, 9, 7, 0.05) 30%,
      rgba(10, 9, 7, 0.05) 70%,
      rgba(10, 9, 7, 0.65) 100%
    );
}

/* Content wrapper */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 640px;
}

/* Scroll hint at bottom */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.5;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

.hero-scroll-dot {
  animation: scroll-dot 2.5s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { cy: 7; opacity: 0.8; }
  100% { cy: 14; opacity: 0; }
}

/* Eyebrow line above hero title */
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
  animation: fade-up 0.7s ease both;
}

/* Title — sigue cabiendo en viewport (eyebrow + title + subtitle + CTA
   sin scroll en pantallas comunes) pero con tamaño un poco más
   presente que el del primer ajuste. */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fade-up 0.8s ease 0.1s both;
  max-width: 760px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-title .accent-word {
  color: var(--accent);
  font-style: italic;
}

/* CTA */
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: fade-up 0.8s ease 0.3s both;
}

/* Override: on photo bg, primary btn needs extra contrast */
#hero .btn-primary {
  background: var(--accent);
  color: #0D0C0A;
  font-weight: 700;
}
#hero .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 32px rgba(200,169,102,0.35);
}
