/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 6.25rem) clamp(1rem, 5vw, 3.75rem);
  background:
    radial-gradient(ellipse at center top, rgba(200, 120, 10, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74, 14, 14, 0.7) 0%, transparent 50%),
    linear-gradient(165deg, var(--maroon-deep) 0%, #2a0808 50%, #1a0505 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(200, 120, 10, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  animation: parallaxMove 30s ease-in-out infinite alternate;
}

@keyframes parallaxMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(200,120,10,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="20" r="8" fill="url(%23g)"><animate attributeName="r" values="8;12;8" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="6" fill="url(%23g)"><animate attributeName="r" values="6;9;6" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat;
  animation: float 20s linear infinite;
  opacity: 0.3;
}

.hero-ring {
  position: absolute;
  width: clamp(25rem, 50vw, 37.5rem);
  height: clamp(25rem, 50vw, 37.5rem);
  border-radius: 50%;
  border: 2px solid rgba(200, 120, 10, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse 4s ease-in-out infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: 1.875rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 120, 10, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.hero-eyebrow {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  font-weight: 700;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  height: 2px;
  width: 3.75rem;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.9375rem;
}

.hero-title span {
  font-family: 'Dancing Script', cursive;
  display: block;
  font-size: 1.15em;
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  color: var(--cream-dark);
  letter-spacing: 2px;
  margin: var(--space-sm) 0 var(--space-lg);
  opacity: 0.9;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) !important;
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: var(--gold);
  margin: 0.625rem auto 0;
  opacity: 0.4;
  animation: float 2s ease-in-out infinite reverse;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
