:root {
  --green: #185d32;
  --orange: #f08100;
}

.pt-sans-narrow-regular {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-narrow-bold {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  min-height: 100vh;
  /* TODO: change to a warmer color */
  background-color: beige;
  display: flex;
  flex-direction: column;
}

.column-container {
  max-width: 1600px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

#container {
  color: var(--green);
  width: 100%;
}

section {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

#banner {
  background-color: #185d32;
  color: var(--orange);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

img#logo {
  height: auto;
  object-fit: contain;
  max-width: 456px;
}

#blurb {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 3rem;
  text-align: center;
  align-self: center;
}

#content .column {
  padding: 1rem 1.5rem;
}

#contact-info {
  text-align: center;
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FAF9F6;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#contact-info a {
  text-decoration: underline;
  color: inherit;
}

#contact-info a:hover {
  color: var(--orange) !important;
}

#map {
  align-self: center;
  margin-top: 2.5rem;
  max-width: 24rem;
  width: 100%;
  height: 70%;
  height: 20rem;
}

#map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#content {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#presentation {
  padding-top: 0 !important;
  font-size: 1.9rem;
}

#presentation h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#presentation p {
  margin-bottom: 1rem;
  display: inline-block
}

#presentation ul {
  list-style-type: square;
  line-height: 2.5rem;
}

#mobile-blurb {
  display: none;
  margin-top: 1.5rem;
}

footer {
  font-size: 1.2rem;
  width: 100%;
  background-color: black;
  color: white;
  padding: 2rem;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 992px) {
  .column-container {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  #blurb {
    display: none;
  }

  #mobile-blurb {
    display: block;
  }

  #presentation {
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 600px) {
  .column-container {
    width: 100%;
  }

  #banner {
    padding: 2rem 0;
  }

  img#logo {
    width: 100%;
    height: auto;
  }

  #content {
    padding: 2rem 1rem;
  }

  #presentation h1 {
    display: none;
  }

  #presentation {
    font-size: 1.5rem;
    padding-bottom: 2rem !important;
  }

  #presentation ul {
    padding-left: 1.5rem;
  }

  #contact-info {
    font-size: 2rem;
  }
}
