/* ============================================
   Hero Banner Styles
   ============================================ */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section .bg-media::after {
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.15));
}

.hero-section .bg-media--gradient {
  background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
}

.hero-section .section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.hero-section .section__subtitle {
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-widest);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.hero-section .section__title {
  font-size: clamp(2.5rem, 5vw, var(--font-size-hero));
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-widest);
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.hero-section .section__cta {
  margin-top: var(--spacing-lg);
}

/* Text color variants */
.hero-section.text-light { color: #fff; }
.hero-section.text-dark { color: #000; }

/* Hero section transitions on scroll */
.hero-section {
  transition: opacity 0.8s ease;
}

/* First hero gets extra top padding for header */
.hero-section:first-child {
  padding-top: var(--header-height);
}
