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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--clr-deep-emerald);
  padding: 4rem 1.5rem;
}

/* Hero Visual Backdrop & Vignette Overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.82;
  filter: saturate(1.15) contrast(1.05) brightness(0.95);
  transform: scale(1.04);
  animation: heroParallax 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroParallax {
  from { transform: scale(1.04) translateY(0px); }
  to   { transform: scale(1.06) translateY(-10px); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 44, 32, 0.25) 0%, rgba(3, 29, 21, 0.75) 85%);
  z-index: 2;
}

/* Hero Gold Corner Botanical Ornaments */
.hero-flower {
  width: clamp(200px, 28vw, 380px);
  z-index: 5;
  opacity: 0.45;
}

.hero-flower-tl {
  top: 0;
  left: 0;
}

.hero-flower-br {
  bottom: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  color: var(--clr-ivory);
}

/* Ornamental Arch Frame around Hero text */
.hero-frame {
  padding: 3.5rem 2rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--border-radius-lg);
  background: rgba(3, 29, 21, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5), var(--shadow-gold);
  position: relative;
  /* Hidden di awal agar tidak terlihat sama sekali saat pintu membuka */
  opacity: 0;
  transform: scale(0.92);
  will-change: opacity, transform;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(201, 162, 39, 0.25);
  border-radius: calc(var(--border-radius-lg) - 6px);
  pointer-events: none;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-champagne-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-names {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-ivory);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 0 60px rgba(201,162,39,0.1);
}

.hero-names span.ampersand {
  font-family: var(--ff-accent);
  font-style: italic;
  color: var(--clr-champagne-gold);
  display: block;
  font-size: 0.6em;
  margin: 0.2rem 0;
}

.hero-date {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  letter-spacing: 0.25em;
  color: var(--clr-champagne-gold);
  margin-top: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-champagne-gold);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: bounceSlow 2s infinite;
}

.scroll-indicator svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@keyframes bounceSlow {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.8; }
  50%       { transform: translate(-50%, -10px); opacity: 0.5; }
}
