.home-square-button {
  color: white;
  font-family: inherit;
  background: transparent;
  border: 1.5px solid white;
  padding: 0.7rem 1.5rem;
  width: fit-content;
  font-size: 16px;
}

.home-square-button:hover {
  color: black;
  background-color: white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.home-text-1 {
  color: #cda582;
  font-family: "Elephant";
  font-style: italic;
  text-align: center;
  font-size: 26px;
  margin: 4rem 0;
  opacity: 0.4;
}

.home-text-2 {
  color: #cda582;
  font-family: "Elephant";
  font-style: italic;
  text-align: center;
  font-size: 26px;
  margin: 4rem 0;
}

.home-banner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  height: 600px;
  background-size: cover;
  padding: 2rem;
  gap: 2rem;
}

.home-banner-wrapper * {
  text-align: center;
}

.home-banner-wrapper h2 {
  font-family: "PinyonScript";
  font-size: 40px;
  text-align: center;
}

.home-banner-wrapper a {
  font-size: 16px;
  padding: 0.4rem 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0.4px solid white;
  margin-left: 1rem;
}

.carousel-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* padding: 1.5rem; */
  margin-top: 2rem;
}

.carousel-section-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.carousel-section-text * {
  text-align: center;
}

.carousel-section-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: "PinyonScript";
  font-size: 50px;
}

.carousel-cards-wrapper {
}

.carousel-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-cards::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 100%;
  height: 450px;
  background: #ddd;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-size: cover;
  filter: grayscale(100%);
  color: white;
}

.carousel-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.carousel-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  background: transparent;
}

.carousel-btn.left img {
    transform: rotate(-180deg);
}

.carousel-btn:hover img {
    filter: invert(54%) sepia(35%) saturate(390%) hue-rotate(353deg) brightness(94%) contrast(89%);
}

.carousel-btn.hidden {
  visibility: hidden;
}

@media screen and (min-width: 1024px) {
  .home-text-1 {
    font-size: 46px;
    margin: 7rem 0rem;
  }

  .home-text-2 {
    font-size: 46px;
    margin: 7rem 0rem;
  }

  .home-banner-wrapper {
    height: 800px;
    padding: 6rem 25rem;
    gap: 2rem;
  }

  .home-banner-wrapper h2 {
    font-size: 80px;
  }

  .home-banner-wrapper a {
    font-size: 20px;
    padding: 0.7rem 1.5rem;
  }

  .carousel-section {
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
    margin: 5rem 0;
  }

  .carousel-section-text {
    flex: 1;
    min-width: 250px;
    height: auto;
  }

  .carousel-section-text * {
    width: 80%;
  }

  .carousel-cards-wrapper {
    flex: 2;
    overflow: hidden;
  }

  .carousel-cards {
    gap: 1rem;
  }

  .carousel-card {
    flex: 0 0 calc((100% - 2 * 1rem) / 3);
    height: 500px;
    transition: 0.3s ease-in-out;
    font-size: 24px;
  }

  .carousel-card:hover {
    filter: none;
  }

  .carousel-section.reverse {
    flex-direction: row-reverse;
  }
}
