#hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url('../assets/img/hero-bg-mob.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 180px; /* Space for fixed navbar */
}

.hero {
  padding: var(--space-lg) 0 var(--space-3xl) 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16rem;

  min-height: 90vh;
}

.hero-logo-img {
  width: 90%;
  max-width: 24rem;
}

@media (max-width: 550px) {
  .hero {
    gap: 12rem;
  }
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-bottom: 2rem;
}

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

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

.hero-desc {
  font-family: var(--font-text);
  font-size: var(--font-lg);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
