/* Cinematic Hero Section */

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  filter: brightness(0.6) contrast(1.15) saturate(0.9);
  transition: transform var(--transition-slow);
}

.hero-section:hover .hero-image {
  transform: scale(1.03);
}

/* Dark atmospheric vignette to frame content */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(
    circle at center,
    rgba(25, 20, 17, 0.2) 0%,
    rgba(25, 20, 17, 0.75) 70%,
    rgba(25, 20, 17, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: var(--header-height);
  animation: fadeInHero 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  display: inline-block;
  border-left: 2px solid var(--accent-red);
  padding-left: var(--spacing-sm);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  text-transform: uppercase;
}

.hero-title span {
  font-weight: 300;
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: var(--spacing-2xl);
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: var(--text-primary);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--accent-red);
  animation: scrollAnim 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-100%);
  }
  50%, 100% {
    transform: translateY(200%);
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
}
