/* =====================================================
   HOME PAGE (INDEX)
   ===================================================== */

/* ==========================
   HERO CON VIDEO
   ========================== */

.hero-section {
  padding-bottom: 4rem;
}

.hero-media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================
   SECCIONES DESTACADAS
   ========================== */

.featured-section {
  padding-block: 5rem;
}

/* Encabezado de pareja (nombre, lugar, link) */

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 0.75rem;
}

.couple-name {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  letter-spacing: 0.03em;
  margin: 0.2rem 0;
}

.location {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.watch-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
}

.watch-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background-color: var(--text-main);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.watch-link:hover::after {
  transform: scaleX(0.65);
}

/* Galería con imágenes superpuestas */

.featured-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.featured-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: var(--bg-card);
}

.featured-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Imagen central grande */

.featured-image-center {
  width: 70%;
  max-width: 900px;
  z-index: 1;
}

/* Imágenes laterales flotando */

.featured-image-left,
.featured-image-right {
  width: 26%;
  max-width: 320px;
  position: absolute;
  top: 12%;
  z-index: 333;
}

.featured-image-left {
  left: 5%;
  transform: translateY(12%);
}

.featured-image-right {
  right: 5%;
  transform: translateY(-4%);
}

/* ==========================
   SECCIÓN CTA
   ========================== */

.cta-section {
  text-align: center;
  padding-block: 5rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
}

/* ==========================
   RESPONSIVE SOLO HOME
   ========================== */

@media (max-width: 900px) {
  .featured-image-left,
  .featured-image-right {
    display: none;
  }

  .featured-image-center {
    width: 100%;
  }

  .cta-title {
    font-size: 2rem;
    padding-inline: 1rem;
  }
}

@media (max-width: 600px) {
  .couple-name {
    font-size: 2.1rem;
  }
}
