/* ═══════════════════════════════════════════════════════════════════════════
   SSI Endoskeleton — Hero: Fullscreen
   100vh hero with background image and dark overlay.
   Load via: <link rel="stylesheet" href="heroes/fullscreen.css">
   ═══════════════════════════════════════════════════════════════════════════ */

.hero--fullscreen {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--nav-height) * -1);
  padding-top: var(--nav-height);
}

.hero--fullscreen .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--fullscreen .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero--fullscreen .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 56.25rem;
  padding: var(--space-xl) var(--space-lg);
}

.hero--fullscreen .hero-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.hero--fullscreen .hero-title {
  color: #ffffff;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}

.hero--fullscreen .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
}

.hero--fullscreen .hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero--fullscreen .hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: color 0.2s;
}

.hero--fullscreen .hero-scroll:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hero--fullscreen .hero-scroll::after {
  content: '';
  width: 0.0625rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(0.625rem); opacity: 1; }
}

@media (max-width: 48rem) {
  .hero--fullscreen {
    min-height: 85vh;
  }

  .hero--fullscreen .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero--fullscreen .hero-ctas .btn {
    width: 100%;
    max-width: 20rem;
  }
}
