@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=Graduate&family=Quicksand:wght@300;400;500;600;700&family=Henny+Penny&display=swap");


/*
font-family: 'Cormorant Unicase', serif;
font-family: 'Gruppo', cursive;
font-family: 'Quicksand', sans-serif;
font-family: 'Henny Penny', cursive; */

/*------------------------------------------------
## CSS Reset
------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*------------------------------------------------
## CSS Reset
------------------------------------------------*/


/* Variables for common use */
:root {
  /* Text sizing */
  --base-size: 1.6rem;
  /* 16px */
  --type-scale: 1.33;
  --small: var(--base-size);
  --body: calc(var(--base-size) * var(--type-scale));
  /* 21.33px */
  --h6: calc(var(--body) * var(--type-scale));
  /* 28.43px */
  --h5: calc(var(--h6) * var(--type-scale));
  --h4: calc(var(--h5) * var(--type-scale));
  --h3: calc(var(--h4) * var(--type-scale));
  --h2: calc(var(--h3) * var(--type-scale));
  --h1: calc(var(--h2) * var(--type-scale));
  /* Fonts */
  --font-body: 'Brygada 1918', serif;
  --font-headings: 'Lexend Deca', sans-serif;
  --dark: "Quicksand", sans-serif;
  --soft: "Gruppo", cursive;
  --uni: "Cormorant Unicase", serif;
  --spooky: 'Henny Penny', cursive;
  /* width and height */
  --fill: 100%;
  --nav: 8rem;

  /* color */
  --color-lightgrey: #eee;
  --color-darkgrey: #222;
  --color-grey: #585963;
  --color-dk-orange: #d06114;

  /* transition */
  --ease-bounce: cubic-bezier(.75, -0.5, 0, 1.75);
}

/*------------------------------------------------
## Layout
------------------------------------------------*/
html {
  /* 1rem = 10px */
  font-size: 62.5%;
  /* Border Box fix */
  box-sizing: border-box;
  /* Smooth scrolling */
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  position: relative;
  box-sizing: inherit;
}

body {
  font-size: var(--base-size);
  font-family: var(--dark);
  /* background: var(--color-bg-dk); */
  /* color: var(--color-text); */
  /* color: var(--color-bg-dk); */
  /* overflow-x: hidden; */


}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--uni);
}

h1 {
  font-size: var(--h1);
  line-height: calc(var(--h1) * var(--type-scale));
}

h2 {
  font-size: var(--h2);
  line-height: calc(var(--h2) * var(--type-scale));
}

h3 {
  font-size: var(--h3);
  line-height: calc(var(--h3) * var(--type-scale));
}

h4 {
  font-size: var(--h4);
  line-height: calc(var(--h4) * var(--type-scale));
}

h5 {
  font-size: var(--h5);
  line-height: calc(var(--h5) * var(--type-scale));
}

h6 {
  font-size: var(--h6);
  line-height: calc(var(--h6) * var(--type-scale));
}

p {
  font-size: var(--body);
  line-height: calc(var(--body) * var(--type-scale));
  margin-bottom: var(--body);
}

small,
.small-text {
  font-size: var(--base-size);
  line-height: calc(var(--base-size) * var(--type-scale));
}

strong {
  font-variation-settings: 'wght'900;
}

em {
  font-style: italic;
  font-variation-settings: 'wght'200;
}


a {
  font-family: var(--spooky);
  font-size: var(--body);
}

button {
  font-family: var(--soft);
  font-size: var(--body);
}
/* navbar */
.navbar {
  z-index: 10;
}
/* sidebar */
.sidebar {
  width: var(--nav);
  height: var(--fill);
  background-color: var(--color-lightgrey);
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 11;
}

.menu-icon {
  margin-top: 3rem;
  cursor: pointer;
}

.line {
  height: .2rem;
  width: var(--body);
  background-color:var(--color-darkgrey);
  margin-bottom: .6rem;
}

.line-1, .line-3 {
  width: var(--small);
  transition: all .5s;
}

.menu-icon:hover .line {
  width: var(--body);
}

.social-icons-list {
  height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: var(--color-grey);
}

.social-link {
  color: inherit;
  font-size: var(--h6);
  transition: all .3s;
}

.social-link:hover {
  font-size: var(--h5);
}

.fa-facebook-f:hover {
  color: #3b5998;
}

.fa-twitter:hover {
  color: #00aced;
}

.fa-google-plus-square:hover {
  /* background: linear-gradient(-120deg, #4285f4, #34a853, #fbbc05, #ea4335); */
  background:linear-gradient(120deg, #dd4b39, #FFFFFF);
}

.fa-instagram-square:hover {
  background:linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.year {
  /* padding-bottom: var(--small);
  font-size: var(--body); */
  color: var(--color-grey);
}

/* end of sidebar */

/* navigation */
.navigation {
  left: -32rem;
  position: fixed;
  width: 40rem;
  height: var(--fill);
  background: linear-gradient(to top, rgba(34, 32, 41, 1), rgba(34, 32, 41, .8)), url(img/nav-bg.jpeg) center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--color-dk-orange);
  transition: left 1s var(--ease-bounce);
}

.navigation-heading {
  font-weight: 300;
  letter-spacing: .2rem;
  color: inherit;
  text-align: center;
}

.navigation-search {
  position: relative;
}

.navigation-search-input {
    width: 30rem;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    font-family: var(--soft);
    color: inherit;
    letter-spacing: .2rem;
    outline: none;
    border: .1rem solid #555;
    border-radius: 10rem;
    transition: background-color .3s;
}

.navigation-search-input:hover,.navigation-search-input:focus {
  background-color: rgba(0, 0, 0, 0);
}

.navigation-search-btn {
  border: none;
  background-color: transparent;
  color: inherit;
  position: absolute;
  font-size: inherit;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.navigation-search-btn:focus {
  outline: black;
}

.navigation-list {
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.navigation-item {
  position: relative;
}

.navigation-link {
  color: #fff;
  font-weight: 400;
  letter-spacing: .2rem;
  text-transform: uppercase;
  transition: all .7s;
}

.navigation-link::before {
  content: "";
  width: 0;
  height: .2rem;
  background-color: var(--color-dk-orange);
  position: absolute;
  top: 1rem;
  left: -4rem;
  transition: width .7s var(--ease-bounce);
}

.navigation-link::after {
  content: "";
  width: 0;
  height: .2rem;
  background-color: var(--color-dk-orange);
  position: absolute;
  top: 1rem;
  right: -4rem;
  transition: width .7s var(--ease-bounce);
}

.navigation-link:hover {
  color: inherit;
}

.navigation-link:hover::before,
 .navigation-link:hover::after {
  width: 3rem;
}

.copyright {
  color: #fff;
}

.checkbox:checked ~ .navigation {
  left: var(--nav);
}

.checkbox:checked + .sidebar .line-1 {
  transform: rotate(-405deg) translate(-5px, 6px);
  width: var(--body);
}

.checkbox:checked + .sidebar .line-2 {
  opacity: 0;
}

.checkbox:checked + .sidebar .line-3 {
  transform: rotate(405deg) translate(-5px, -6px);
  width: var(--body);
}
/* end of navigation */
/* end of navbar */

/* header */

.header {
  margin-left: var(--nav);
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .3)), url(img/header-3.jpeg) center no-repeat;
  background-size: cover;
}

.brand {
  display: flex;
  cursor: pointer;
}

.hotel-heading {
  font-weight: bold;
  letter-spacing: .3rem;
  color: var(--color-dk-orange);
  /* font-size: 2.7rem; */
}


.banner {
  color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 30rem;
}

.banner-heading {
  font-weight: bold;
  animation: head 3s;
}

.banner-paragraph {
  font-weight: 300;
  font-size: var(--h5);
  animation: head 5s 2s backwards;
}

.banner-button {
  width: 22rem;
  padding: 1.2rem 2rem;
  font-size: var(--body);
  color: #333;
  letter-spacing: .4rem;
  border-radius: 12rem;
  border: none;
  font-family: var(--soft);
  font-weight: 900;
  background: linear-gradient(to right, gold, darkgoldenrod);
  cursor: pointer;
  animation: head 7s 5s backwards;
}

.banner-button:hover {
  background: linear-gradient(to left, gold, darkgoldenrod);
}

.banner-button:active {
  transform: translateX(1rem)
   translateY(.4rem);
}

@keyframes head {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* end of header */

/* about us */
section {
  margin-left: var(--nav);
}

.about-us {
  /* margin-left: var(--nav); */
  display: flex;
  background-color: #ddd;
}

.about-us-content {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10rem;
  /* box-sizing: border-box; */
}

.about-us-heading {
  font-weight: bold;
  /* text-transform: uppercase; */
  color: var(--color-grey);
}

.small-underline {
  width: 9rem;
  height: .3rem;
  margin: 0 auto 1rem auto;
  background-color: var(--color-dk-orange);
}

.big-underline {
  width: 20rem;
  height: .3rem;
  background-color: var(--color-dk-orange);
}

.sub-heading {
  font-weight: 300;
  color: var(--color-dk-orange);
  letter-spacing: .4rem;
}

.about-us-paragraph {
  font-style: italic;
  font-weight: lighter;
  text-align: center;
  margin-bottom: 5rem;
}

.about-us-paragraph::before {
  content: open-quote;
  font-size: 2rem;
}

.about-us-paragraph::after {
  content: close-quote;
  font-size: 2rem;
}

.about-us-btn {
  width: 22rem;
  padding: .7rem .5rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
  color: var(--color-dk-orange);
  background-color: transparent;
  border: .1rem solid var(--color-dk-orange);
  border-radius: 10rem;
  cursor: pointer;
}

.fa-angle-double-right {
  margin-left: 1.5rem;
  transition: margin-left .4s;
}

.about-us-btn:hover .fa-angle-double-right {
  margin-left: 3rem;
}

.about-us-images {
  flex: 1 1;
  position: relative;
}

.image {
  width: 32rem;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 4rem 7rem rgba(0, 0, 0, .4);
  border-radius: .5rem;
  border: .3rem solid var(--color-dk-orange);
}

.image-1 {
  transform: translate(-20%, -90%);
}

.image-2 {
  transform: translate(-70%, -70%);
}

.image-3 {
  transform: translate(-50%, -50%);
}

.image-4 {
  transform: translate(-30%, -30%);
}

.image-1:hover {
  z-index: 1;
}

.image-2:hover {
  z-index: 1;
}

.image-3:hover {
  z-index: 1;
}
/* end of about us */

/* common heading */
.common-header {
  padding: 5rem;
  text-align: center;
  color: var(--color-dk-orange);
}

.common-heading {
  letter-spacing: .3rem;
    font-weight: 300;
}

.about {
    margin: auto;
}

.small-underline {
  width: 9rem;
  height: .3rem;
  margin: 0 auto 1rem auto;
  background-color: var(--color-dk-orange);
}

.big-underline {
  width: 20rem;
  height: .3rem;
  background-color: var(--color-dk-orange);
}
/* end of common heading */
/* rooms */

.rooms {
  /* margin-left: var(--nav); */
}

.rooms-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.room-card {
  width: 60rem;
  margin: 5rem;
  background-color: black;
  box-shadow: 0 4rem 7rem rgba(0, 0, 0, .4);
}

.room-img {
  width: var(--fill);
}

.room-card-content {
  color: #ddd;
  padding: 2rem;
}

.room-card-heading {
  font-weight: 300;
}

.room-card-paragraph {
  color: var(--color-grey);

}

.room-price {
  font-size: var(--h4);
  font-weight: 200;
  text-align: right;
  /* margin: 0; */
}

.room-card-btn {
  width: 25rem;
  padding: 1.5rem 1rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
  color: var(--color-dk-orange);
  background-color: transparent;
  border: .1rem solid var(--color-dk-orange);
  border-radius: 10rem;
  cursor: pointer;
}

.rooms-btn-wrapper {
  text-align: center;
}

.rooms-btn {
  width: 27rem;
  padding: 2rem 1.5rem;
  margin: 4rem 0;
  letter-spacing: .2rem;
  text-transform: uppercase;
  color: var(--color-dk-orange);
  background-color: transparent;
  border: .1rem solid var(--color-dk-orange);
  border-radius: 10rem;
  cursor: pointer;
  box-shadow: 2rem 2rem 5rem rgba(0, 0, 0, .2);
  transition: all .3s;
  outline: none;
}

.rooms-btn:hover, .rooms-btn:focus {
  color: #ddd;
  background-color: var(--color-dk-orange);
  box-shadow: 0 4rem 7rem rgba(0, 0, 0, .4);
}
/* end of rooms */
/* customers */

.customers {
  padding-bottom: 10rem;
  background-color: black;
}

.customers-paragraph {
  color: #ddd;
  width: 50%;
  margin: 5rem auto 10rem auto;
  text-align: center;
}

.customers-card-wrapper {
  display: flex;
  justify-content: space-evenly;
}

.customer-card {
  background-color: #eee;
  width: 70rem;
  display: flex;
}

.customer-image-wrapper {
  margin: auto 0;
}

.customer-image {
  width: 20rem;
  margin-left: -2rem;
}

.customer-info {
  padding: 0 2rem;
}

.customer-fullname {
  font-weight: 300;
}

.customer-paragraph-1 {
  font-style: italic;
  color: var(--color-dk-orange);
  font-size: var(--small);
}

.customer-paragraph-2 {
  font-size: 1.7rem;
  font-style: oblique;
}

.customer-paragraph-2::before {
  content: open-quote;
  font-size: 2rem;
  margin-right: 1rem;
}

.customer-paragraph-2::after {
  content: close-quote;
  font-size: 2rem;
  margin-left: 1rem;
}
/* end of customers */

/* footer */
footer {
  margin-left: var(--nav);
}

.footer {

}

.main-part {
  display: flex;
  justify-content: space-between;
  background-color: #1c1c1c;
  padding: 2rem 6rem;
}

.footer-heading {
  color: goldenrod;
  margin: 2rem 0 4rem 0;
  font-weight: bold;
  text-align: center;
}

.footer-list {

}

.footer-list-wrapper {

}

.footer-list-item {
  margin-bottom: 2rem;
}

.footer-list-link {
  color: var(--color-grey);
  letter-spacing: .6rem;
  transition: all .7s;
}

.footer-list-link:hover, .footer-list-link:focus {
  color: var(--color-dk-orange);
}

.footer-list-link::before {
  content: "";
  width: 0;
  height: .2rem;
  background-color: var(--color-dk-orange);
  position: absolute;
  top: 1rem;
  left: -4rem;
  transition: width .7s var(--ease-bounce);
}

.footer-list-link::after {
  content: "";
  width: 0;
  height: .2rem;
  background-color: var(--color-dk-orange);
  position: absolute;
  top: 1rem;
  right: -4rem;
  transition: width .7s var(--ease-bounce);
}

.footer-list-link:hover::before,
 .footer-list-link:hover::after {
  width: 3rem;
}

.contact {
  color: var(--color-grey);
}

.footer-form {
  display: flex;
}

.footer-input {
  width: 25rem;
  padding: 1rem;
  font-family: var(--soft);
  font-size: 2rem;
  font-weight: bold;
  color: darkgoldenrod;
  outline: none;
}

.footer-input:focus {
  border: .3rem solid var(--color-dk-orange);
}

.footer-btn {
  font-weight: bold;
  padding: 1rem;
  background-color: var(--color-dk-orange);
  color: #ddd;
  border: none;
}

.footer-btn:hover, .footer-btn:focus {
  background-color: #b85d1c;
}

.gallery {
  max-width: 45rem;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
}

.image-wrapper {
  width: 12rem;
  margin: .5rem;
  overflow: hidden;
}

.footer-image {
  width: var(--fill);
  height: var(--fill);
  backface-visibility: hidden;
  transition: all .3s;
}

.footer-image:hover {
  transform: scale(1.3);
}

.creator-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 0 4rem;
}

.fa-heart {
  color: tomato;
  margin: .5rem;
}


.copyright-text {
  color: #aaa;
}

.text-right {
  color: #bbb;
}

.text-right span {
  color: gold;
}

/* end of footer */

@media(max-width: 1500px) {

  .customers-card-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .customer-card:first-child {
    margin-bottom: 5rem;
  }

  .main-part {
    flex-direction: column;
    align-items: center;
  }

  .footer-list {
    display: flex;
    justify-content: space-evenly;
  }

  .footer-list-item {
    margin: 0 3rem;
  }

  .image-wrapper {
    width: 18rem;
  }
}

@media(max-width: 1280px) {
  .about-us {
    flex-direction: column;
    padding-bottom: 25rem;
  }

  .about-us-content {
    margin-bottom: 17rem;
  }

  .image {
    width: 37rem;
  }
}

@media(max-width: 1024px) {
  .banner {
    text-align: center;
  }

  :root {
    --body: calc(var(--base-size) / var(--type-scale));
  }

  .banner-button {
    width: 16rem;
  }

  .hotel-heading {
    margin: auto 0;
  }
}

@media(max-width: 960px) {
  .customer-card {
    flex-direction: column;
    width: 30rem;
  }

  .customer-image {
    margin-left: 0;
  }

  .footer-list {
    display: block;
  }

  .footer-list-item {
    margin-bottom: 2rem;
  }

  .creator-part {
    flex-direction: column;
    text-align: center;
  }

  .copyright-text {
    order: 1;
  }
}

@media(max-width: 770px) {

  .about-us {
    padding-bottom: 15rem;
    text-align: center;
  }

  .about-us-content {
  padding: 5rem;
  }

  .image {
    width: 18rem;
  }

  .banner {
     height: 100%;
     margin-top: -10rem;
 }

  .navigation {
    width: 28rem;
  }

  .navigation-search-input {
    width: 20rem;
  }

  .room-price {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .room-card-btn {
    width: 15rem;
    padding: 1rem;
  }

  .customers-paragraph {
    width: 70%;
  }

  .image-wrapper {
    width: 13rem;
  }

}

@media(max-width: 500px) {


}
