h2 {
  color: #e8b105;
  margin-top: 0;
  margin-bottom: 3vw;
  font-size: 3vw;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2.5vw;
}

h4 {
  color: #fdfcf5;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 1.5vw;
}

.hero-section {
  width: 100vw;
  height: 100vh;
  background-color: #644d40;
  background-image: url('../images/hero-bread.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 6vw;
  display: flex;
}

.about-section {
  width: 100vw;
  min-height: 100vh;
  background-color: #fdfcf5;
  justify-content: space-between;
  display: flex;
}

.products-section {
  background-color: #fdfcf5;
  padding-top: 8vw;
}

.footer-section {
  background-color: #644d40;
  justify-content: space-between;
  align-items: center;
  padding: 2vw 6vw;
  display: flex;
}

.logo-hero {
  width: 28vw;
}

.hero-intro {
  color: #fdfcf5;
  text-align: center;
  margin-top: 4vw;
}

.body {
  font-family: Lato, sans-serif;
  font-size: 1.5vw;
  line-height: 2vw;
}

.about-details-container {
  width: 50vw;
  padding: 10vw 6vw 6vw;
}

.half-screen-img {
  width: 100%;
}

.header-centered {
  text-align: center;
}

.header-centered.header-brown {
  color: #644d40;
}

.product {
  width: 25vw;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.product-container {
  margin-top: 5vw;
  display: flex;
}

.product-image {
  width: 100%;
}

.about-image-container {
  width: 50vw;
  background-image: url('../images/baguettes.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-logo {
  width: 33vw;
  padding: 3vw;
}

.social-container {
  width: 33vw;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.contact-container {
  width: 33vw;
  text-align: right;
  flex-direction: column;
  order: 1;
  display: flex;
}

.contact-link {
  color: #e8b105;
}

.link-icon {
  width: 100%;
}

.link-block {
  width: 4vw;
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 8vw;
    line-height: 8vw;
  }

  h4 {
    font-size: 4vw;
  }

  .hero-section {
    background-position: 50% -15%;
    background-size: 240%;
    padding-top: 15vw;
  }

  .about-section {
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5vw;
  }

  .products-section {
    padding-top: 20vw;
  }

  .footer-section {
    flex-direction: column;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .logo-hero {
    width: 55vw;
  }

  .hero-intro {
    margin-top: 10vw;
    font-size: 5vw;
    line-height: 6.5vw;
  }

  .about-details-container {
    width: 100vw;
  }

  .header-centered.header-brown {
    font-size: 10vw;
    line-height: 11vw;
  }

  .product {
    width: 100vw;
    margin-top: 20vw;
  }

  .product-container {
    flex-direction: column;
  }

  .product-image {
    z-index: 0;
  }

  .about-image-container {
    width: 100vw;
    min-height: 65vh;
  }

  .footer-logo {
    width: 55vw;
    order: -1;
  }

  .social-container {
    justify-content: center;
    margin-top: 6vw;
    margin-bottom: 6vw;
  }

  .contact-container {
    width: 90vw;
    text-align: center;
  }

  .contact-link {
    font-size: 5vw;
    line-height: 8vw;
  }

  .link-block {
    width: 10vw;
  }

  .paragraph {
    font-size: 4vw;
    line-height: 6.5vw;
  }
}


