/* Estilos exclusivos de la landing — slideshow, hero, scroll hint. */

/* ---------- BACKGROUND SLIDESHOW ---------- */
.slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh; /* fallback */
  height: 100lvh; /* viewport grande: no cambia al ocultarse la barra del navegador en mobile */
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1100ms ease-in-out;
  transform: scale(1.04);
  animation: kenburns 9s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
.slide.is-active { opacity: 1; }

@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.10) translate(-0.6%, -0.4%); }
}

/* Overlay — un pelín más oscura en bordes para legibilidad */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.62) 75%, rgba(0,0,0,0.78) 100%),
    linear-gradient(180deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.35) 30%, rgba(26,20,16,0.55) 70%, rgba(26,20,16,0.85) 100%);
}

/* ---------- LAYOUT ---------- */
.page { position: relative; z-index: 2; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;
  transform: translateY(-1cm);
  margin-bottom: -1cm;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  letter-spacing: 0.42em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.78;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 38px;
  height: 1px;
  background: var(--line);
}

.hero-logo {
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  margin-bottom: 36px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--cream);
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.4;
}

/* ---------- BUTTONS GRID (hero) ---------- */
.buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- RESPONSIVE — hero / buttons ---------- */
@media (max-width: 820px) {
  .topbar { display: none; }
  .hero { padding: 100px 20px 80px; }
  .hero-logo { width: 150px; height: 150px; margin-bottom: 28px; }
  .hero-tagline { margin-bottom: 40px; }
  .buttons { grid-template-columns: 1fr; max-width: 380px; }
}
