/* ===================================
   Hero Section - Resonant Opening
   =================================== */

#hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-4);
  background-color: var(--color-bg);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  opacity: 0;
  animation: gentleFadeIn 1.2s ease-out 0.3s forwards;
}

/* Gentle fade-in animation on load */
@keyframes gentleFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (min-width: 768px) {
  #hero {
    min-height: 70vh;
    padding: var(--space-20) var(--space-6);
  }

  .hero-headline {
    font-size: var(--text-4xl);
    line-height: 1.35;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  #hero {
    min-height: 75vh;
    padding: var(--space-24) var(--space-8);
  }

  .hero-headline {
    font-size: var(--text-5xl);
    line-height: 1.3;
  }
}
