#home {
  /* background: conic-gradient(
    from 180deg,
    hsl(19, 40%, 26%) 0%,
    hsl(240, 5%, 84%) 14%,
    hsl(240, 5%, 84%) 50%,
    hsl(19, 40%, 26%) 100%
  );
  background-repeat: no-repeat; */
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("../assets/images/bgThumbnail.jpg") center/cover no-repeat;
}

.home-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 60px;
}

.home-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  justify-content: space-between;
}

.home-text .maven-coffee {
  font-size: 7rem;
  letter-spacing: -8px;
  font-weight: 800;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.home-text p {
  font-size: 1.2rem;
  width: 56%;
}

img.home-image {
  width: 450px;
  height: auto;
  display: block;
}

.home-text button {
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.8rem 1.7rem;
  display: block;
  background-color: var(--text-color-drk);
  border: 1px solid transparent;
  color: var(--text-color-lght);
  font-weight: 200;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home-text button:hover {
  background-color: var(--text-color-lght);
  color: var(--button-color);
  font-weight: 600;
  border-color: var(--button-color);
}

@media only screen and (max-width: 768px) {
  .home-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.2rem;
  }
  /* .home-text .maven-coffee {
    font-size: 2.8rem;
    font-weight: 900;
    white-space: wrap;
  } */
  img.home-image {
    width: calc(20rem + 2vw);
  }

  .home-text button {
    font-size: 1rem;
  }
  .threedcontainer {
    width: 100%;
    height: 50vh !important;
  }

  .home-text {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .home-text p {
    font-size: 1rem;
    width: 100%;
  }

  .home-text .maven-coffee {
    letter-spacing: -4px;
    font-size: 3rem;
    font-weight: 600;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-content {
    flex-direction: column-reverse;
    align-items: center;
    margin: 0 auto;
  }
  .home-text {
    padding-inline: 2rem;
  }
  .home-text .maven-coffee {
    font-size: 2.8rem;
    font-weight: 500;
  }
  .threedcontainer {
    width: 100%;
    height: 60vh !important;
  }
  img.home-image {
    width: calc(17rem + 2vw);
    height: auto;
  }
  .home-text p {
    font-size: 0.9rem;
    width: 100%;
  }
  .home-text button {
    margin-top: 15px;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 667px) and (orientation: landscape) {
  .home-content {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin: 0 20px;
  }

  .home-text .maven-coffee {
    font-size: 2.8rem;
    font-weight: 400;
    text-align: start;
    white-space: nowrap;
  }

  .threedcontainer {
    width: 100%;
    height: 80vh !important;
    display: block;
  }

  img.home-image {
    width: calc(16rem + 1vw);
  }

  .home-text button {
    font-size: 1rem;
  }

  .home-text {
    justify-content: center;
    align-items: start;
    text-align: start;
  }

  .home-text p {
    font-size: 0.7rem;
    width: 100%;
  }

  .home-text button {
    margin-top: 15px;
    font-size: 0.8rem;
  }
}

.threedcontainer {
  width: 100%;
  height: 100vh;
  display: block;
  cursor: grab;
}

.threedcontainer:active {
  cursor: grabbing;
}

.threedcontainer canvas {
  width: 100%;
  height: auto;
}
