/*
  hero.css
  ─────────────────────────────────────────────────────────────
  Estilos de la sección principal (Hero) que aparece al entrar.
*/

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

/* Fondo con gradiente radial */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139,26,26,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(92,14,14,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(212,160,23,0.08) 0%, transparent 50%),
    var(--negro);
}

/* Rombo decorativo de fondo */
.hero-diamond {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(212,160,23,0.08);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -350px;
  margin-left: -350px;
  pointer-events: none;
}
.hero-diamond::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(212,160,23,0.05);
}

/* Ciudad/ubicación encima del título */
.hero-eyebrow {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

/* Título principal */
.hero-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--blanco);
  text-shadow: 0 0 60px rgba(139,26,26,0.6), 0 4px 30px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards 0.5s;
}
.hero-title span {
  display: block;
  color: var(--dorado);
  font-size: clamp(3.5rem, 10vw, 9rem);
}

/* Restaurant Bar & Pizzería */
.hero-subtitle {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 0.7s;
}

/* Línea divisora con rombo */
.hero-divider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  width: 300px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dorado), transparent);
}
.hero-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--dorado);
  transform: rotate(45deg);
}

/* Slogan */
.hero-slogan {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gris);
  max-width: 500px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 1.1s;
}

/* Botones de acción */
.hero-ctas {
  position: relative;
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 1.3s;
}

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gris-dark);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--dorado), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
