/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  overflow: hidden;
  background: #2d3a2e url('../assets/quinta-hero-section.jpg') center/cover no-repeat;
}

/* Dark gradient overlay so text stays readable over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(139,90,43,0.3) 0%, transparent 55%);
}

/* Subtle amber glow at the corners */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(169,94,32,0.12) 0%, transparent 35%),
    radial-gradient(circle at 90% 85%, rgba(169,94,32,0.08) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-names {
  font-family: var(--font-script);
  font-size: clamp(52px, 14vw, 72px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 14px 0;
}

.hero-date {
  font-family: var(--font-script);
  font-size: clamp(24px, 5.5vw, 26px);
  color: #fff;
  opacity: 0.9;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 320px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  animation: cta-pulse 2s ease-in-out infinite;
}

.hero-cta:hover {
  animation: none;
  opacity: 1;
}

.hero-cta-circle {
  font-size: 20px;
  line-height: 1;
  transform: rotate(90deg);
  opacity: 0.8;
}

/* ---- Desktop ---- */
@media (min-width: 900px) {
  .hero {
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    min-height: 100vh;
  }

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

  .hero-names {
    font-size: clamp(80px, 8vw, 120px);
  }

  .hero-divider {
    width: 280px;
    margin: 20px auto;
  }

  .hero-date {
    font-size: clamp(26px, 2.8vw, 36px);
  }

  .hero-cta {
    margin-top: 500px;
    font-size: 11px;
  }
}
