/* ==========================================================================
   HERO SECTION COMPONENT
   Used in: index.html, about.html, trajectory.html, blog.html
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem 6rem;
}

.hero__container {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  order: 2;
}

.hero__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--color-primary-40);
  display: block;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-highlight {
  font-style: italic;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--color-primary-70);
  margin-bottom: 2rem;
  max-width: 28rem;
  line-height: 1.625;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image-wrapper {
  order: 1;
}

.hero__image-container {
  aspect-ratio: 4/5;
  background-color: rgba(26, 43, 60, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 1.5rem 8rem;
  }
  
  .hero__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero__content {
    order: 1;
  }
  
  .hero__title {
    font-size: 4.5rem;
    font-weight: 400;
  }
  
  .hero__description {
    font-size: 1.25rem;
  }
  
  .hero__image-wrapper {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 6rem;
    font-weight: 400;
  }
}
