/* src/css/components/hero.css */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
  padding: 100px 2rem 0 2rem;
}

/* Background Curve Layer */
.hero-bg-curves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08; /* Extremely subtle */
}

.hero-bg-curves svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-subtitle {
  color: var(--color-gold-matte);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.5vw + 0.6rem, 1rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: var(--fluid-txt-h1);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title.shiny-gold {
  background: linear-gradient(135deg, var(--color-gold-glint) 0%, var(--color-gold-matte) 50%, var(--color-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(212, 195, 158, 0.4)) drop-shadow(0 0 2px rgba(212, 195, 158, 0.6));
}

.hero-description {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: 300;
  max-width: 600px;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.3rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Elegant CTA Button */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-matte);
  border: 1px solid var(--color-gold-matte);
  border-radius: var(--radius-smooth-md);
  background-color: transparent;
  overflow: hidden;
  transition: var(--transition-fluid);
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold-matte);
  z-index: -1;
  transform: translateY(100%);
  transition: var(--transition-fluid);
}

.cta-button:hover {
  color: var(--color-bg-solid);
  box-shadow: 0 0 30px rgba(212, 195, 158, 0.35);
  border-color: var(--color-gold-glint);
}

.cta-button:hover::before {
  transform: translateY(0);
}

/* Down indicator arrow */
.scroll-indicator {
  margin-top: 3rem;
  z-index: 2;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-micro);
  display: flex;
  justify-content: center;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateY(5px);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold-matte);
  fill: none;
  stroke-width: 1.5;
}
