:root {
  --primary-color: #b89e7e;
  --secondary-color: #35322d;
  --background-color: #f8f5f0;
  --font-family-heading: "lora", serif;
  --font-family-body: "afacad", sans-serif;
}

body {
  background-color: #f8f5f0;
  margin: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

section {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.instagram-feed-widget {
  max-width: 100%;
  text-align: center;
}

.instagram-feed {
  width: 320px;
  height: 400px;
  margin-top: 60px;
}
.testimonials-title {
  font-family: "lora", sans-serif;
  font-size: 60px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.testimonials {
  display: block;
  border-top: 0.5px solid var(--primary-color);
  border-bottom: 0.5px solid var(--primary-color);
  margin: 50px auto;
  padding: 20px;
}

.footer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

footer h3 {
  font-family: "afacad", serif;
  font-size: 15px;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.footer-p {
  font-family: "afacad", sans-serif;
  margin-top: 20px;
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1.5;
}

footer li {
  list-style-type: none;
}

footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

footer a {
  text-decoration: none;
  color: var(--secondary-color);
  font-family: "afacad", sans-serif;
  font-size: 15px;
}

h1 {
  color: #b89e7e;
  font-family: "lora", serif;
  font-weight: 400;
  font-size: 60px;
  text-align: right;
  margin: 0 30px 0 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 30px 0 0;
}

.logo {
  width: 200px;
  height: auto;
}

header ul {
  list-style-type: none;
  margin: 2px;
  padding: 2px;
  display: flex;
  justify-content: flex-end;
}

header a {
  text-decoration: none;
  color: var(--secondary-color);
  font-family: "afacad", sans-serif;
  font-size: 20px;
  margin: 0 10px;
}


.column-1,
.column-2 {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
  margin: 50px auto;
}

.who-h3 {
  display: inline-block;
  margin: 30px;
  text-align: justify;
  font-style: italic;
  font-family: "afacad", sans-serif;
  font-size: 20px;
  color: var(--secondary-color);
}

.what-p,
.who-p {
  display: inline-block;
  text-align: justify;
  font-family: "afacad", sans-serif;
  font-size: 20px;
  color: var(--secondary-color);
}

.what-p {
  font-style: italic;
  margin: 30px;
}

.who-p {
  font-style: italic;
  margin: 0 30px;
}

.who-button,
.what-button {
  display: inline-block;
  margin: 15px 15px 15px 30px;
  padding: 5px 10px;
  color: var(--font-family-body);
  border: 0.5px solid var(--primary-color);
  cursor: pointer;
  font-family: "afacad", sans-serif;
  font-size: 15px;
}

.button-link {
  text-decoration: none;
  color: var(--secondary-color);
}

.view-projects-button {
  display: block;
  margin: 30px auto;
  padding: 5px 10px;
  color: var(--font-family-body);
  border: 0.5px solid var(--primary-color);
  cursor: pointer;
  font-family: "afacad", sans-serif;
  font-size: 15px;
}

.hello-button {
  display: block;
  position: fixed;
  right: 0;
  rotate: -90deg;
  padding: 5px 10px;
  margin-top: 10px;
  border: none;
  border-bottom: 3px solid var(--secondary-color);
  color: var(--font-family-body);
  cursor: pointer;
  font-family: "afacad", sans-serif;
  font-size: 20px;
  background-color: var(--background-color);
}

.hello-button:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}

.projects-home {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0;
  font-family: "afacad", sans-serif;
  font-size: 14px;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.line {
  font-size: 10px;
}

p {
  padding: 0 10px 0 0;
  font-family: "afacad", sans-serif;
  font-size: 10px;
  color: var(--secondary-color);
}

@media (max-width: 600px) {
  body {
    margin: 20px;
  }

  header {
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-size: 4px;
  }

  .footer-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  h1 {
    text-align: center;
    margin: 15px;
  }

  .what-we-do,
  .who-we-are {
    text-align: center;
    font-size: 30px;
  }

  .hello-button {
    margin-top: 12px;
  }
  .column-1,
  .column-2 {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .who-h3,
  .what-p,
  .who-p {
    text-align: center;
    margin: 15px;
  }


  .who-button,
  .what-button {
    margin: 15px auto;
    display: block;
  }

  .projects-home {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    font-size: 10px;
  }

  .img {
    width: 75%;
    height: auto;
  }

  footer ul {
    font-size: 5px;
    padding: 0;
  }

  footer h3 {
    font-family: "afacad", serif;
    font-size: 12px;
    margin-top: 0;
  }

  .footer-p {
    font-family: "afacad", sans-serif;
    font-size: 10px;
    margin-top: 0;
  }

  footer a {
    font-size: 10px;
  }
  header a {
    font-size: 15px;
  }
  .testimonials-title {
    font-size: 30px;
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 10px;
  }

    .prev,
    .next,
    .text {
        font-size: 11px
    }

}

footer {
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-family: "afacad", sans-serif;
  font-size: 8px;
}


.top-button {
  position: fixed;
  bottom: 20px;
  left: 48%;
  z-index: 99;
  padding: 5px 10px;
  color: var(--font-family-body);
  border: 0.5px solid var(--primary-color);
  cursor: pointer;
  font-family: "afacad", sans-serif;
  font-size: 15px;
  animation:float 2s ease-in-out infinite;

}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}
}

.top-button:hover {
  background-color: #e6e1e1;
  transform: scale(1.5);
}

    .mySlides {
      display: none
    }


    /* Slideshow container */
    .slideshow-container {
      max-width: 1000px;
      position: relative;
      margin: auto;
    }

    /* Next & previous buttons */
    .prev,
    .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      color: var(--secondary-color)
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .testimonials {
        font-family: "afacad";
    }

    /* Caption text */
    .text {
      color: var(--secondary-color)
      font-size: 15px;
      padding: 8px 65px;
      bottom: 8px;
      text-align: center;
    }

    /* The dots/bullets/indicators */
    .dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
      background-color: #717171;
    }

    /* Fading animation */
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }

    @keyframes fade {
      from {
        opacity: .4
      }

      to {
        opacity: 1
      }
    }