/* public/assets/css/components/_hero.css */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #101510;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 21, 16, 0.65) 0%, rgba(74, 20, 140, 0.55) 55%, rgba(10, 14, 10, 0.85) 100%);
  z-index: 1;
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.25), transparent 70%);
  top: -150px;
  right: -150px;
  filter: blur(10px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 179, 0, 0.14);
  border: 1px solid rgba(255, 179, 0, 0.4);
  color: var(--bb-gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--bb-font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 18px 0 24px;
}

.hero h1 em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD54F, #FFB300 45%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
  }
}
