@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;800;900&display=swap);

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  transition: all 0.1s;
  font-family: "Roboto", sans-serif;
  color: #3a3a3a;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 30px;
  margin: 0 auto;
}

/* header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fbf8f5;
}
a {
  text-decoration: none;
  color: #3a3a3a;
}
a:hover {
  color: #000;
  text-decoration: underline;
}
.logo {
  padding: 0 70px;
}

/* hero */
.hero {
  display: flex;
  gap: 50px;
  padding: 60px 0;
  background: #fbf8f5;
}
.hero__title {
  font-weight: 400;
  font-size: 64px;
  line-height: 76px;
}
.hero__text-box {
  margin-left: 60px;
}
.hero__text {
  font-size: 18px;
  line-height: 28px;
  margin-top: 18px;
}
.hero__btn {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  padding: 16px 32px;
  margin-top: 46px;
  border-radius: 30px;
  background: #e9672b;
  border: none;
  transition: 0.3s all;
}
.hero__btn:hover {
  box-shadow: 0px 0px 15px #ffa073;
}

/* rooms */
.rooms {
  background: #fbf8f5;
  padding-bottom: 71px;
}
.rooms__title {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
}
.rooms__list {
  display: flex;
  justify-content: space-evenly;
}
.rooms__item {
  width: 248px;
  border-radius: 4px;
}
.rooms__title {
  margin-bottom: 43px;
}
.rooms__text {
  margin-top: 15px;
  margin-bottom: 19px;
  text-align: center;
}
.rooms__shadow1 {
  border: 2px solid #e9672b;
  transition: 0.3s all;
}
.rooms__shadow1:hover {
  box-shadow: 8px 8px 0px #cbc6f4;
}
.rooms__shadow2 {
  border: 2px solid #225dca;
  transition: 0.3s all;
}
.rooms__shadow2:hover {
  box-shadow: 8px 8px 0px #e7cb43;
}
.rooms__shadow3 {
  border: 2px solid #242947;
  transition: 0.3s all;
}
.rooms__shadow3:hover {
  box-shadow: 8px 8px 0px #a2d4c5;
}
.rooms__shadow4 {
  border: 2px solid #de4333;
  transition: 0.3s all;
}
.rooms__shadow4:hover {
  box-shadow: 8px 8px 0px #af4920;
}

/* keep */
.keep {
  padding-top: 100px;
}
.keep__text,
.keep__title {
  text-align: center;
}
.keep__title {
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 16px;
}
.keep__text {
  font-size: 24px;
  line-height: 32px;
  margin: 0 100px;
  margin-bottom: 120px;
}
.keep__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}
.keep__gap {
  gap: 100px;
  padding-left: 100px;
}
.keep__right {
  margin-right: 50px;
}
.keep__item-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}
.keep__item-text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 33px;
}
.keep__item-link {
  font-size: 18px;
  color: #e9672b;
  text-decoration: none;
}
.keep__item-link:hover {
  color: #e9672b;
  text-shadow: 0px 0px 15px #ff8850;
  text-decoration: none;
}
.keep__item-bottom {
  margin-bottom: 35px;
}

/* bestsellers */
.bestsellers {
  background: #fbf8f5;
}
.bestsellers__title {
  font-weight: 400;
  font-size: 36px;
  padding-top: 112px;
  padding-bottom: 57px;
  text-align: center;
}
.bestsellers__list {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-bottom: 55px;
}
.bestsellers__item {
  width: 233px;
  height: 430px;
  padding: 45px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s all;
}
.bestsellers__item:hover {
  box-shadow: 5px 5px 20px #cccccc;
}
.bestsellers__item-title {
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 9px;
  padding-top: 30px;
  line-height: 28px;
  text-align: center;
}
.bestsellers__item-text {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.bestsellers__item-yellow {
  color: #e9672b;
}
.bestsellers__item-green {
  color: #4f4f4f;
}
.bestsellers__link {
  display: block;
  color: #e9672b;
  text-align: center;
  margin-bottom: 144px;
}
.bestsellers__link:hover {
  color: #e9672b;
  text-decoration: none;
  text-shadow: 0px 0px 20px #ff8e59;
}
.bestsellers__floyd {
  display: flex;
}
.bestsellers__text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e9672b;
}

/* floyd */
.floyd-title {
  color: white;
  padding: 30px 40px;
}
.bestsellers__btn {
  font-size: 18px;
  border: none;
  padding: 16px 40px;
  border-radius: 88px;
  background: white;
}
.bestsellers__btn:hover {
  cursor: pointer;
  box-shadow: 2px 2px 20px #ffffffab;
  text-decoration: none;
}

/* reviews */
.reviews__title {
  font-weight: 400;
  font-size: 48px;
  margin-top: 130px;
  margin-bottom: 57px;
  text-align: center;
}
.reviews__list {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 150px;
}
.reviews__item {
  width: 350px;
  height: 254px;
  padding: 34px;
}
.reviews__text {
  margin-top: 30px;
  font-size: 18px;
}
.reviews__shadow1 {
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #e9672b;
  transition: 0.2s all;
}
.reviews__shadow1:hover {
  box-shadow: 8px -8px 0px #cbc6f4;
}
.reviews__shadow2 {
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #225dca;
  transition: 0.2s all;
}
.reviews__shadow2:hover {
  box-shadow: 8px -8px 0px #e7cb43;
}
.reviews__shadow3 {
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #242947;
  transition: 0.2s all;
}
.reviews__shadow3:hover {
  box-shadow: 8px -8px 0px #a2d4c5;
}
/* footer */
.footer {
  border-top: 2px solid #cdd454;
  padding: 80px 20px;
  background: #f3f0ec;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.footer__item {
  display: flex;
  flex-direction: column;
}
.footer__title {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer__link {
  margin-bottom: 8px;
}
.footer__icon-box {
  display: flex;
  gap: 10px;
}
.footer__line {
  width: 300px;
  border: 1px solid #b2b2b2;
  margin-top: 30px;
}
.footer__radius {
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px;
  border: 2px solid #7d7d7d;
  margin-bottom: 40px;
  border-radius: 50px;
}
.footer__radius:hover {
  box-shadow: 3px 3px 15px #bcbcbc;
}

@media (max-width: 1165px) {
  .hero__img {
    width: 500px;
    height: 400px;
  }
  .bestsellers__img {
    width: 700px;
  }
}

@media (max-width: 1100px) {
  .rooms__item {
    width: 200px;
  }
  .rooms__img {
    width: 196px;
  }
  .keep__item-img {
    width: 500px;
  }
  .reviews__item {
    width: 300px;
  }
}

@media (max-width: 1024px) {
  .hero__img {
    width: 450px;
    height: 350px;
  }
  .bestsellers__img {
    width: 600px;
  }
  .floyd-title {
    padding: 15px 20px;
  }
  .keep__item-img {
    width: 400px;
  }
}
@media (max-width: 966px) {
  a {
    font-size: 14px;
  }
  .logo {
    padding: 0;
  }
  .hero__img {
    width: 400px;
    height: 300px;
  }
  .bestsellers__item {
    width: 200px;
    padding: 20px;
  }
  .bestsellers__title {
    font-size: 28px;
  }
  .hero__title {
    font-size: 48px;
    line-height: 50px;
  }
  .rooms__title {
    font-size: 36px;
  }
  .rooms__list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .rooms__item {
    width: 600px;
  }
  .rooms__img {
    width: 596px;
  }
  .keep__gap {
    gap: 50px;
    padding-left: 30px;
  }
  .bestsellers__img {
    width: 500px;
  }
  .reviews__list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .reviews__item {
    width: 600px;
    height: 300px;
    text-align: center;
    padding-top: 70px;
  }
}
@media (max-width: 839px) {
  .hero__title {
    font-size: 36px;
  }
  .hero__text {
    font-size: 16px;
  }
  .bestsellers__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .bestsellers__item {
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero__text-box {
    margin-left: 0;
  }
  .bestsellers__floyd {
    flex-direction: column;
  }
  .bestsellers__img {
    width: 100%;
  }
  .bestsellers__text-box {
    padding: 80px 30px;
  }
  .bar-block,
  .tablet-none {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    justify-content: space-between;
  }
  .header__bar-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .header__bar {
    width: 20px;
    border-radius: 10px;
    border-top: 3px solid #3a3a3a;
  }
  .tablet {
    display: none;
    text-align: center;
    font-size: 18px;
    padding-top: 20px;
  }
  .bar {
    display: none;
    width: 100%;
    height: 60vh;
    position: absolute;
    z-index: 10;
    background: #fff;
  }
  .bar-block,
  .tablet-none {
    display: block;
  }
  .hero {
    flex-direction: column;
    align-items: center;
  }
  .hero__text-box {
    text-align: center;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__text {
    font-size: 18px;
  }
  .hero__img {
    width: 100%;
    height: auto;
  }
  .keep__item {
    flex-direction: column;
    margin-bottom: 70px;
  }
  .keep__item-text-box {
    text-align: center;
  }
  .keep__right {
    margin: 0;
  }
  .keep__item-img {
    width: 90%;
    height: auto;
  }
  .keep__item-title {
    font-weight: 500;
    font-size: 24px;
  }
  .keep__text {
    font-size: 16px;
  }
  .keep__gap {
    padding: 0;
  }
}
@media (max-width: 625px) {
  .rooms__img {
    width: 100%;
  }
  .rooms__item {
    width: 100%;
  }
  .reviews__item {
    width: 90%;
  }
  .bestsellers__item {
    width: 90%;
  }
  .keep__text {
    margin: 0 50px;
  }
}
@media (max-width: 425px) {
  .footer__radius {
    width: 30px;
    height: 30px;
    padding: 6px;
  }
  .footer__icon {
    width: 15px;
    height: 15px;
  }
  .footer__line {
    width: 90%;
  }
}
