/* ============================================================= */
/* 7. HERO SECTION - TRUST-FIRST NARRATIVE LAYOUT (OPTIMIZED) */
/* ============================================================= */
.hero-section {
  position: relative;
  height: calc(100vh - 72px);  /* 72px = header height */
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--color-mist);
  /* Add subtle pseudo-element for better contrast */
  backdrop-filter: blur(10px);
  z-index: 1;
}

.hero-mist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Simplified gradient with improved contrast */
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.2) 0%,   /* Reduced opacity from 0.3 to 0.2 */
    rgba(255, 255, 255, 0.4) 50%,    /* Increased transparency */
    rgba(255, 255, 255, 0.2) 100%
  );
  animation: mist-flow 15s linear infinite;
  z-index: 1;
}

/* Hero background video container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;  /* Ensure video is behind overlay */
}

.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.9;  /* Slightly increase video visibility */
  z-index: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 4rem var(--spacing-lg) 0;
  color: var(--color-forest-floor);
}

/* Logo adjustments for better visibility */
.logo h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .hero-section {
    min-height: 550px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .logo h1 {
    font-size: 1.3rem;
  }
}