/*
File: assets/css/hero.css
Purpose: Hero section layout, background image, and call-to-action styling.
Sections: Hero base, overlay, content, badge, title, subtitle, CTAs, scroll indicator, responsive
*/

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,30,10,0.80) 0%, rgba(0,60,15,0.55) 60%, rgba(0,40,10,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.4);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--bpss-white);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  animation: pulse 2s ease infinite;
}

.hero-scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.4);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    background-position: 60% center;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
}
