/* ===== HERO SECTION ===== */
.hero {
  background: url('../img/hero.jpg') center/cover no-repeat fixed;
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: calc(3.5rem + 4rem) 1rem 4rem;
  margin-top: 0;
  color: var(--color-white);
  overflow: hidden;
  background-attachment: scroll;
}

@media (min-width: 768px) {
  .hero {
      background-attachment: fixed;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
  background-color: var(--color-blue-logo-70); 
  padding: 2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 1000px;
}