html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

/* end of common styles */
/* navbar */
/* sidebar */
.sidebar {
  width: 8rem;
  height: 100%;
  background-color: #eee;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.menu-icon {
  margin-top: 3rem;
  cursor: pointer;
}

.menu-icon:hover .line {
  width: 2.5rem;
}

.line {
  height: 0.2rem;
  width: 2.5rem;
  background-color: #222;
  margin-bottom: 0.6rem;
}

.line-1,
.line-3 {
  width: 1.8rem;
  transition: all 0.4s;
}

.social-icons-list {
  list-style: none;
  padding: 0;
  height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.social-link {
  font-size: 2rem;
  color: #777;
  transition: color 0.3s;
}

.social-link:hover {
  color: #deaa86;
}

.year {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #555;
}
/* end of sidebar */
/* navigation */
.navigation {
  left: -32rem;
  position: fixed;
  width: 40rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
      to top,
      rgba(34, 32, 41, 1),
      rgba(34, 32, 41, 0.8)
    ),
    url("../img/sidebar.jpeg") center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: left 0.5s cubic-bezier(1, 0, 0, 1);
  z-index: 5;
}
.navigation-heading {
  font-family: "josefin sans", sans-serif;
  font-weight: 300;
  padding: 0.2rem;
  font-size: 3.5rem;
  letter-spacing: 0.2rem;
  color: #deaa86;
  text-align: center;
}
.navigation-search-btn {
  border: none;
  background-color: transparent;
  color: #deaa86;
  position: absolute;
  font-size: 1.7rem;
  top: 1rem;
  right: 1rem;
}
.navigation-search-btn:focus {
  outline: none;
}
.navigation-search {
  position: relative;
}
.navigation-search-input {
  width: 30rem;
  padding: 1rem 2rem;
  outline: none;
  font-size: 1.6rem;
  border: 0.1rem solid #555;
  color: #deaa86;
  border-radius: 10rem;
  background-color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1rem;
  transition: backgroun-color 0.3s;
  cursor: pointer;
}
.navigation-search-input:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
.navigation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 28rem;
  padding: 0;
}
.navigation-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  font-weight: 400;
  transition: color 0.3s;
}
.navigation-item {
  position: relative;
}
.navigation-link::before {
  content: "";
  width: 0rem;
  height: 0.1rem;
  background-color: #deaa86;
  position: absolute;
  top: 1rem;
  left: -4rem;
  transition: width 0.5s cubic-bezier(1, 0, 0, 1);
}
.navigation-link::after {
  content: "";
  width: 0rem;
  height: 0.1rem;
  background-color: #deaa86;
  position: absolute;
  top: 1rem;
  right: -4rem;
  transition: width 0.5s cubic-bezier(1, 0, 0, 1);
}
.navigation-link:hover {
  color: #deaa86;
}
.navigation-link:hover::before,
.navigation-link:hover::after {
  width: 3rem;
}
.copyright {
  color: #fff;
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
}
.checkbox:checked ~ .navigation {
  left: 8rem;
}
.checkbox:checked ~ .sidebar .line-1 {
  transform: rotate(-405deg) translate(-5px, 6px);
  width: 2.5rem;
}
.checkbox:checked ~ .sidebar .line-2 {
  opacity: 0;
}
.checkbox:checked ~ .sidebar .line-3 {
  transform: rotate(405deg) translate(-5px, -6px);
  width: 2.5rem;
}
/* end of navigation */
/* end of navbar */
/* banner start */
.header {
  margin-left: 8rem;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
    url("../img/banner.jpeg") center no-repeat;
  background-size: cover;
}
.brand {
  display: flex;
  align-items: center;
  height: 7rem;
}
.brand-img {
  padding: 0.5rem;
}
.brand-text {
  font-size: 2.7rem;
  font-family: "josefin sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2rem;
  padding: 1rem 2rem;
  color: #deaa86;
}
.banner {
  height: 65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
}
.banner-text {
  font-size: 7rem;
  font-family: "josefin sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin: 0 auto;
  animation: anim 2s;
  color: #eee;
}
@keyframes anim {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 50;
  }
  100% {
    opacity: 100;
  }
}
.banner-p {
  font-size: 2rem;
  font-family: "josefin sans", sans-serif;
  font-weight: 300;
  color: #eee;
  margin: 1rem auto;
  animation: anim 1.5s 0.5s backwards;
}
.banner-btn {
  border: none;
  outline: none;
  font-family: "josefin sans", sans-serif;
  background: linear-gradient(to right, gold, rgb(233, 226, 190));
  border-radius: 10rem;
  padding: 0.8rem 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  animation: anim 1s 1s backwards;
}
.banner-btn:active {
  transform: translateY(0.5rem);
}
.banner-btn:hover {
  background: linear-gradient(to left, gold, rgb(233, 226, 190));
}
/* banner end */
/* about us */
.about-us {
  margin-left: 8rem;
  display: flex;
  height: 40rem;
  padding: 10rem 2rem;
  background-color: rgb(196, 189, 189);
}
.about-us-content {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem;
  box-sizing: border-box;
}
.about-us-heading {
  font-family: "josefin sans", sans-serif;
  font-size: 4rem;
  color: #777;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
}
.underline {
  text-align: center;
}
.small-underline {
  width: 10rem;
  height: 0.1rem;
  background-color: #777;
  margin: 0 auto 0.8rem auto;
  text-align: center;
}
.big-underline {
  width: 20rem;
  height: 0.1rem;
  background-color: #777;
}
.about-us-sub-heading {
  color: #777;
  font-size: 2.5rem;
  font-family: "josefin sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}
.about-us-p {
  color: #777;
  font-size: 1.2rem;
  text-align: center;
}
.about-us-btn {
  background-color: transparent;
  border: 0.4rem solid rgba(25, 26, 24, 0.514);
  outline: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #777;
  padding: 0.4rem 0.5rem;
  transition: padding-left 0.5s;
}
.about-us-icon {
  padding-left: 0.2rem;
}
.about-us-btn:hover .about-us-icon {
  padding-left: 0.6rem;
}
.about-us-imgs {
  flex: 1 1 50%;
  position: relative;
}
.image {
  position: absolute;
  width: 25rem;
  left: 50%;
  top: 50%;
  box-shadow: 0.2rem 3rem 6rem rgba(10, 10, 10, 0.918);
  border-radius: 0.2rem;
  border: 0.2rem solid rgba(8, 8, 8, 0.945);
}
.image-1 {
  transform: translate(-32%, -107%);
}
.image-2 {
  transform: translate(-16%, -69%);
}
.image-3 {
  transform: translate(-70%, -70%);
}
.image-4 {
  transform: translate(-48%, -40%);
}
/* end of about us */
/* common */
.common-header {
  text-align: center;
}
.common-header-heading {
  font-family: "josefin sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: #deaa86;
  font-size: 5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}
/* end of common */
/* rooms */
.rooms {
  margin-left: 8rem;
  transition: all 0.5s;
  margin-bottom: 6rem;
}
.rooms-underline {
  padding: 0.5rem;
  height: 2.5rem;
  text-align: center;
  padding-bottom: 0;
}
.rooms-small-underline {
  width: 10rem;
  height: 0.1rem;
  background-color: #777;
  margin: 0 auto 0.8rem auto;
  text-align: center;
}
.rooms-big-underline {
  width: 20rem;
  height: 0.1rem;
  background-color: #777;
  margin: 0 auto 0 auto;
}
.rooms-card-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.rooms-card {
  margin: 3rem 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0rem 3rem 6rem black;
  width: 40rem;
  text-align: center;
}
.rooms-card-img {
  width: 100%;
}
.rooms-card-header {
  text-align: center;
  font-size: 2rem;
  margin: 0.6rem 0;
  font-family: "josefin sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #706964c7;
}
.rooms-card-p {
  text-align: center;
  font-family: "josefin sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0.5rem;
  margin: 0;
  color: #deaa86;
  letter-spacing: 0.1rem;
}
.rooms-card-price {
  font-size: 3rem;
  text-align: center;
  color: #746e6b;
  margin: 0;
  letter-spacing: 0.1rem;
}
.rooms-card-btn {
  border: 0.1rem solid red;
  border-radius: 10rem;
  margin: 0 auto;
  background-color: transparent;
  font-family: "josefin sans", sans-serif;
  margin: 1rem;
  color: red;
  outline: none;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  transition: all 0.3s;
}
.rooms-card-btn:hover {
  background-color: black;
  color: white;
}
.rooms-btn-wr {
  text-align: center;
  margin: 3rem;
}
.rooms-btn {
  font-size: 2rem;
  border: 0.4rem solid #deaa86;
  letter-spacing: 0.1rem;
  color: #deaa86;
  text-transform: uppercase;
  padding: 0.2rem;
  letter-spacing: 0.1rem;
  padding: 1rem 2rem;
}
/* end of rooms */
/* customers */
.customers {
  margin-left: 8rem;
  background-color: black;
  padding: 2rem 2rem 2rem 2rem;
}
.custiomers-p {
  font-family: "josefin sans", sans-serif;
  font-size: 1.5rem;
  color: white;
  text-align: center;
  width: 70rem;
  margin: 1rem auto;
  letter-spacing: 0.2rem;
}
.customers-card-wrapper {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.customers-card {
  background-color: white;
  display: flex;
  justify-content: center;
  height: 15rem;
  margin: 2rem 0rem 2rem 6rem;
  width: 50rem;
}
.customers-card-img-w {
  margin: auto 0;
}
.customers-card-img {
  margin-left: -2rem;
  width: 20rem;
}
.customers-card-info {
  padding: 2rem;
}
.customers-card-name {
  font-family: "josefin sans", sans-serif;
  font-size: 2rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.customers-card-p1 {
  font-family: "josefin sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin: 0.2rem;
  color: #deaa86;
}
.customers-card-p2 {
  font-family: "josefin sans", sans-serif;
  font-size: 1rem;
  margin: 0.4rem 0;
}
/* end of customers */
/* footer */
.footer {
  margin-left: 8rem;
  background-color: #746e6b;
  font-family: "josefin sans", sans-serif;
}
.footer-main-part {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.footer-heading {
  font-size: 2rem;
  font-weight: 300;
  color: orange;
  letter-spacing: 0.1rem;
  margin: 1rem;
}
.footer-list {
  list-style: none;
  padding-left: 0;
}
.footer-item {
  margin: 1rem;
}
.footer-a {
  font-size: 1.5rem;
  color: rgba(204, 190, 190, 0.712);
}
.footer-contact-p {
  font-size: 1.5rem;
  color: rgba(204, 190, 190, 0.712);
  font-weight: 400;
}
.footer-contact-form {
  display: flex;
}
.footer-contact-input {
  border: 0;
  padding-left: 1rem;
  font-size: 1.2rem;
  padding: 1rem;
  outline: none;
}
.footer-contact-2 {
  margin-left: 1rem;
}
.footer-contact-btn {
  border: 0;
  background-color: gold;
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.1rem;
  padding: 0.5rem;
}
.footer-gallery {
  max-width: 35rem;
}
.footer-gallery-w {
  display: flex;
  flex-wrap: wrap;
}
.footer-gallery-img-c {
  width: 10rem;
  margin: 0.5rem;
  overflow: hidden;
}
.footer-galery-img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.footer-galery-img:hover {
  transform: scale(1.3);
  opacity: 0.8;
}
.footer-copyright {
  background-color: #222;
  display: flex;
  justify-content: space-between;
}
.footer-copyright-c {
  font-size: 1.2rem;
  color: lightcyan;
  letter-spacing: 0.1rem;
  font-weight: 300;
  padding-left: 1rem;
}
.footer-text-right {
  font-size: 1rem;
  color: lightcyan;
  letter-spacing: 0.1rem;
  font-weight: 300;
  padding-right: 1rem;
}
.footer-text-right i {
  color: red;
  font-size: 1.5rem;
}
.footer-text-right span {
  color: orange;
}
/* end of footer */
/* media queries */
@media screen and (max-width: 1000px) {
  .banner-text {
    font-size: 5rem;
  }
  .about-us-heading {
    font-size: 3rem;
  }
  .common-header-heading {
    font-size: 3rem;
  }
  .rooms-btn {
    font-size: 1rem;
  }
  .rooms-card-price {
    font-size: 2rem;
  }
  .footer-contact-input {
    width: 8rem;
    font-size: 1rem;
    padding: 0 0 0 0.2rem;
  }
  .footer-contact-btn {
    font-size: 0.8rem;
    width: 4rem;
    padding: 0.4rem;
  }
  .customers-card-name {
    font-size: 1.4rem;
  }
  .customers-card-p1 {
    font-size: 1rem;
  }
  .customers-card-p2 {
    font-size: 0.9rem;
  }
  .about-us-content {
    padding: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .about-us {
    flex-direction: column;
    height: 70rem;
    padding: 5rem 5rem;
  }
  .customers-card-wrapper {
    flex-direction: column;
  }
  .footer-main-part {
    flex-direction: column;
  }
  .footer-list {
    display: flex;
  }
  .customers-card-p2 {
    font-size: 1.2rem;
  }
  .footer-contact-input {
    width: 10rem;
    font-size: 1rem;
    padding: 0 0 0 0.4rem;
  }
  .footer-contact-btn {
    font-size: 0.8rem;
    width: 6rem;
    padding: 0.8rem;
  }
  .custiomers-p {
    font-size: 1rem;
    padding: auto 2rem;
    width: 100%;
  }
  .brand-text {
    font-size: 1.5rem;
  }
  .brand-img {
    width: 40px;
  }
  .customers-card {
    flex-direction: column;
    height: 30rem;
    margin: 2rem auto;
    width: 80%;
  }
  .customers-card-img {
    margin-left: 0;
  }
  .customers-card-img-w {
    margin: 0 auto;
  }
  .customers-card-info {
    text-align: center;
  }
  .customers-card-p2 {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .banner-text {
    font-size: 3rem;
  }
  .about-us-heading {
    font-size: 2.5rem;
  }
  @media screen and (max-width: 600px) {
    .footer-a {
      font-size: 1.2rem;
    }
    .footer-heading {
      font-size: 1.4rem;
    }
    .footer-gallery {
      margin-top: 2rem;
    }
  }
  @media screen and (max-width: 500px) {
    .image {
      width: 20rem;
    }
    .footer-copyright {
      flex-direction: column;
    }
    .footer-copyright-c {
      order: 1;
      text-align: center;
      font-size: 1rem;
    }
    .footer-text-right {
      text-align: center;
      font-size: 1rem;
    }
    .footer-list {
      flex-direction: column;
    }
  }
  @media screen and (max-width: 500px) {
    .banner-text {
      font-size: 2rem;
    }
    .banner-p {
      font-size: 1.2rem;
    }
    .banner-btn {
      font-size: 1rem;
      padding: 0.4rem 1rem;
    }
    .about-us-heading {
      font-size: 1.5rem;
    }
    .small-underline {
      width: 6rem;
    }
    .big-underline {
      width: 10rem;
    }
    .about-us-sub-heading {
      font-size: 1.5rem;
    }
    .about-us-p {
      font-size: 1rem;
    }
    .about-us-btn {
      font-size: 0.8rem;
    }
    .image {
      width: 12rem;
    }
    .about-us {
      height: 40rem;
      padding: 5rem 2rem;
    }
    .about-us-content {
      padding-top: 0;
    }
    .rooms-btn {
      font-size: 0.8rem;
      padding: 0.4rem 0.5rem;
    }
    .customers-card-img {
      width: 15rem;
    }
    .customers-card-p2 {
      font-size: 1rem;
    }
    .footer-copyright-c {
      font-size: 0.8rem;
    }
    .footer-text-right {
      font-size: 0.8rem;
    }
    .fas fa-heart {
      font-size: 1rem;
    }
    .common-header-heading {
      font-size: 1.5rem;
    }
    .custiomers-p {
      font-size: 0.8rem;
    }
    .rooms-small-underline {
      width: 6rem;
    }
    .rooms-big-underline {
      width: 10rem;
    }
    .navigation {
      width: 25rem;
    }
    .navigation-heading {
      font-size: 2rem;
    }
    .navigation-search-input {
      width: 15rem;
      font-size: 1rem;
    }
    .navigation-link {
      font-size: 1.2rem;
    }
    .copyright {
      font-size: 1rem;
    }
  }
}
/* end of media queries */
