/* General body styles */
body {
  font-family: "Lexend Deca", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Links */
a {
  color: inherit;
  text-decoration: underline 2px rgba(255, 255, 255, 0);
  transition: text-decoration-color 300ms;
  text-underline-offset: 5px;
}

a:hover {
  text-decoration-color: rgba(255, 255, 255, 1);
}

a.pink-link {
  color: #FFABDB;
}

a.pink-link:hover {
  text-decoration-color: #FFABDB;
}

/* Instagram icon */
.ig-icon {
  display: block;
  fill: none;
  stroke: #3C6530;
  transition: stroke 0.3s ease-in-out;
}

.ig-icon:hover {
  stroke: #FFABDB;
}

/* Header and Footer */
.header {
  background: #8FD1A3;
  color: white;
  display: flex;
  justify-content: center;
  padding: 1rem;
  text-align: left;
  border-bottom: 3px solid #FFF;
}

.header__interior {
  display: flex;
  align-items: center;
  padding-right: 38px;
  position: relative;
  width: 100%;
}

.header__nav {
  display: none;
}

.header__nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.header__nav-ig {
  position: absolute;
  right: 0;
}

/* Content Block */
.content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 675px;
}

.content__interior {
  box-sizing: border-box;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  min-height: 675px;
  padding: 1rem;
  z-index: 1;
}

/* Hero Section */
.hero {
  background-color: #7BB662;
  color: white;
  position: relative;
  text-align: center;
}

.hero img {
  display: inline;
}

.hero__lockup {
  margin: 8% 0 0;
  width: 606px;
}

.hero__photo {
  width: 442px;
}

.hero__text {
  color: #FFF347;
  font-size: 1.25rem;
  margin: auto;
  padding: 0 0 1rem 0;
}

/* Newsletter Signup */
.newsletter-signup {
  display: none;
  min-height: 150px;
}

/* Footer Area */
.footer {
  background: #5F9C3F;
  color: white;
  padding: 1rem;
}

.footer__grid {
  gap: 1rem;
  padding: 50px 0 10px;
}

.footer__grid p {
  margin: 0 0 6px; 
}

.footer__column {
  padding: 0 0 1.5rem;
}

.footer__bottom {
  font-size: 14px;
  text-align: center;
}


/* Responsive Layout */
@media (min-width: 769px) {
  .header__interior {
    max-width: 1280px;
  }

  .hero {
    background-image: url('../images/hero-field-bg.png');
    background-repeat: no-repeat;
    background-position: center 371px;
    background-size: 1440px;
    min-height: 825px;
  }

  .content__interior {
    grid-template-columns: 1fr 1fr;
  }

  .hero__duo-layer {
    background-color: #7BB662;
    mix-blend-mode: multiply;
    position: absolute;
    top: 371px;
    width: 100%;
    height: 304px;
    z-index: 0;
  }

  .hero__title {
      display: flex;
      height: 355px;
      justify-content: center;
  }

  .hero__lockup {
    margin: auto 0 1rem;
    min-width: 404px;
  }

  .hero__text {
    max-width: 445px;
    padding: 1.5rem 0 0 1rem;
  }

  .hero__col2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__photo {
    margin: auto 0;
  }

  .newsletter-signup {
    display: flex;
  } 

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 60px 0 25px;
  }
}

@media (min-width: 1455px) {
  .hero {
    background-size: 100%;
  }
}