.navbar {
  background-color: #fff;
}
.nav-text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding: 0 20px 0 20px;
}
.nav-text-active {
  border-bottom: black 1px solid;
}

.home-icon {
  margin-left: 30px;
  color: rgb(150, 139, 124);
}

h1 {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  text-align: end;
  margin-right: 200px;
  margin-top: 10px;
}
h1 a {
  color: rgb(44, 39, 39);
  text-decoration: none;
}

/* homepage banner */

.banner-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.image-container {
  position: relative;
  text-align: center;
}

.image-text {
  position: absolute;
  font-family: "Questrial", sans-serif;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.image-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.image-text p {
  font-size: 18px;
}

/* cards */

.card-title {
  text-align: center;
  font-family: "Questrial", sans-serif;
}
.card-text {
  font-family: "Lato", sans-serif;
}
.card-body a {
  text-decoration: none;
  color: rgb(73, 72, 66);
}

/* footer */

footer {
  border-top: 1px solid rgb(209, 201, 190);
  font-family: "Lato", sans-serif;
  color: rgb(150, 139, 124);
  text-align: center;
}

.footer-text {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.emilia-link {
  text-decoration: none;
  color: rgb(150, 139, 124);
}

/* Footer Icons */
.footer-icon {
  margin: 15px;
  color: rgb(150, 139, 124);
  font-size: 25px;
}

/* about page */

.about-section {
  color: rgb(73, 72, 66);
  margin-top: 60px;
}
.about-title {
  font-family: "Questrial", sans-serif;
  font-size: 38px;
}
.about-text {
  font-family: "Lato", sans-serif;
  line-height: 30px;
  font-size: 20px;
}
.about-img {
  max-width: 100%;
  border-radius: 2px;
}
.services-title {
  margin-top: 60px;
  margin-bottom: 30px;
  font-family: "Questrial", sans-serif;
  font-size: 32px;
}
.services-col {
  padding-left: 40px;
  padding-right: 40px;
}
.services-list li {
  padding-left: 30px;
  text-align: left;
  font-size: 20px;
}

/* gallery page */

.gallery {
  margin-top: 10px;
}

/* contact page */

.contact-section {
  color: rgb(73, 72, 66);
  margin-top: 40px;
}
.contact-section a {
  text-decoration: none;
  color: rgb(73, 72, 66);
}
.contact-title {
  font-family: "Questrial", sans-serif;
  font-size: 40px;
}
.contact-text {
  font-family: "Lato", sans-serif;
  line-height: 40px;
  font-size: 20px;
  margin-bottom: 40px;
}

/* responsiveness */

@media screen and (max-width: 768px) {
  h1 {
    margin-left: 20px;
    margin-right: 100px;
  }
  .home-icon {
    display: none;
  }
  .image-text h2 {
    font-size: 22px;
    white-space: nowrap;
  }
  .image-text p {
    font-size: 17px;
    white-space: nowrap;
  }
  .navbar button {
    margin-right: 20px;
  }
  .nav-text-active {
    border-bottom: 0;
  }

  /* footer */
  footer {
    border-top: none;
  }
  .footer-text {
    font-size: smaller;
  }
  .footer-icon {
    font-size: 30px;
  }

  /* about */

  .about-section {
    padding: 20px;
    align-items: center;
    margin-top: 30px;
  }
}

/* responsiveness for large res screens */

@media only screen and (min-device-width: 1920px) and (min-device-height: 1080px) {
  .nav-text {
    font-size: 28px;
  }
  h1 {
    font-size: 35px;
  }
  .image-text h2 {
    font-size: 42px;
  }

  .image-text p {
    font-size: 28px;
  }

  /* cards */
  .card-title {
    font-size: 38px;
  }
  .card-text {
    font-size: 24px;
  }

  /* about */
  .about-title {
    font-size: 42px;
  }
  .about-text {
    font-size: 24px;
    line-height: 40px;
  }
  .services-title {
    font-size: 36px;
  }
  .services-list li {
    font-size: 24px;
  }
}
