@charset "UTF-8";
/*
COLORS

Primary: #eb2f64
Primary light: #FF3366
Primary dark: #BA265D

Grey light 1: #faf9f9
Grey light 2: #f4f2f2
Grey light 3: #f0eeee
Grey light 4: #ccc

Grey dark 1: #333
Grey dark 2: #777
Grey dark 3: #999

*/
:root {
  --color-primary: #eb2f64;
  --color-primary-light: #ff3366;
  --color-primary-dark: #ba265d;
  --color-white: #fff;
  --color-Grey-light-1: #faf9f9;
  --color-Grey-light-2: #f4f2f2;
  --color-Grey-light-3: #f0eeee;
  --color-Grey-light-4: #ccc;
  --color-Grey-dark-1: #333;
  --color-Grey-dark-2: #777;
  --color-Grey-dark-3: #999;
  --box-shadow-dark: 0 1rem 1rem rgba(0, 0, 0, 0.3);
  --border: 0.1rem solid var(--color-Grey-light-2);
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}
@media screen and (max-width: 56.25em) {
  html {
    font-size: 56.25%;
  }
}

body {
  background-image: linear-gradient(to bottom right, var(--color-primary-light), var(--color-primary-dark));
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #777;
  font-family: "open sans", sans-serif;
}

::selection {
  background-color: #999;
  color: #f4f2f2;
}

.logo {
  height: 3.25rem;
  margin-left: 0.8rem;
}
@media screen and (max-width: 37.5em) {
  .logo {
    align-self: flex-start;
    margin-top: 0.7rem;
  }
}

.search {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 31.25em) {
  .search {
    display: flex;
    align-items: center;
    order: 1;
    flex: 0 0 100%;
    padding: 0 15rem 0 5rem;
    margin-top: -5rem;
  }
}
.search__input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: var(--color-Grey-light-2);
  padding: 0.7rem 2rem;
  width: 90%;
  border-radius: 10rem;
  border: none;
  transition: all 0.5s;
  margin-right: -3rem;
}
.search__input:focus {
  background-color: var(--color-Grey-light-3);
  outline: none;
  width: 100%;
}
.search__input::-webkit-input-placeholder {
  color: var(--color-Grey-light-4);
}
.search__button {
  background-color: var(--color-Grey-light-3);
  border: none;
}
.search__button:focus {
  outline: none;
}
.search__button:active {
  transform: translateY(0.2rem);
}
.search__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-Grey-dark-3);
}

.user-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
}
.user-nav > * {
  padding: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.user-nav > *:hover {
  background-color: var(--color-Grey-light-3);
}
.user-nav__icon-box {
  position: relative;
}
@media screen and (max-width: 37.5em) {
  .user-nav__icon-box {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
}
.user-nav__icon {
  height: 2.25rem;
  width: 2.25rem;
  fill: var(--color-Grey-dark-2);
}
@media screen and (max-width: 37.5em) {
  .user-nav__icon {
    margin-top: 1rem;
  }
}
.user-nav__notfication {
  font-size: 0.8rem;
  height: 1.75rem;
  width: 1.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: 1.2rem;
  right: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-nav__user-photo {
  width: 4.75rem;
  border-radius: 50%;
  margin-right: 0.8rem;
}

.side-nav {
  font-size: 1.4rem;
  padding-top: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 56.25em) {
  .side-nav {
    padding-top: 0;
  }
}
.side-nav__list {
  color: var(--color-Grey-light-1);
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 56.25em) {
  .side-nav__list {
    display: flex;
    flex: 1;
    justify-content: space-around;
    margin: none;
    padding-top: 1rem;
  }
}
.side-nav__item {
  position: relative;
}
.side-nav__item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.side-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.3rem;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transition: transform 1s, width 0.4s cubic-bezier(1, 0, 0, 1) 0.2s;
  transition: all 0.5s;
}
.side-nav__item:hover::before, .side-nav__item--active::before {
  transform: scaleY(1);
  width: 100%;
}
.side-nav__item:active::before {
  background-color: var(--color-primary-light);
}
.side-nav__link:link, .side-nav__link:visited {
  text-decoration: none;
  color: var(--color-Grey-light-1);
  text-transform: uppercase;
  display: block;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 75em) {
  .side-nav__link:link, .side-nav__link:visited {
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 56.25em) {
  .side-nav__link:link, .side-nav__link:visited {
    flex-direction: column;
    padding: 1rem 1.5rem;
  }
}
.side-nav__icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 2rem;
  fill: currentColor;
}

.legal {
  font-size: 1.2rem;
  color: var(--color-Grey-light-4);
  text-align: center;
  padding: 2.5rem;
}
@media screen and (max-width: 56.25em) {
  .legal {
    display: none;
  }
}

.gallery {
  display: flex;
}
.gallery__photo {
  width: 100%;
  display: block;
}

.overview {
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid var(--color-Grey-light-2);
}
.overview__heading {
  margin-right: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding: 1.5rem 3rem;
}
@media screen and (max-width: 56.25em) {
  .overview__heading {
    margin-right: 0;
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 31.25em) {
  .overview__heading {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
}
.overview__stars {
  margin-right: auto;
  display: flex;
}
.overview__icon--location, .overview__icon--star {
  height: 1.75rem;
  width: 1.75rem;
  fill: var(--color-primary);
}
@media screen and (max-width: 31.25em) {
  .overview__icon--location, .overview__icon--star {
    height: 1rem;
    width: 1rem;
  }
}
.overview__location {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 31.25em) {
  .overview__location {
    font-size: 1rem;
  }
}
.overview__icon--location {
  margin-right: 0.5rem;
}
.overview__rating {
  height: 100%;
  font-size: 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-left: 3rem;
  align-self: stretch;
  padding: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 56.25em) {
  .overview__rating {
    padding: 1rem;
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 31.25em) {
  .overview__rating {
    padding: 0.7rem;
  }
}
.overview__rating--avarage {
  font-size: 2.25rem;
  font-weight: 300;
}
.overview__rating--count {
  font-size: 1rem;
  text-transform: uppercase;
}

.button-inline {
  border: none;
  color: var(--color-primary-dark);
  font-size: inherit;
  border-bottom: 0.1rem solid currentColor;
  padding-bottom: 0.2rem;
  display: inline-block;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.5s;
  margin-left: auto;
}
.button-inline:hover {
  transform: scale(1.02);
  color: var(--color-primary-light);
}
.button-inline:hover span {
  margin-left: 1rem;
}
.button-inline span {
  margin-left: 0.5rem;
}
.button-inline:focus {
  outline: none;
  animation: pulset 2s infinite;
}

@keyframes pulset {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3);
    background-color: var(--color-Grey-light-4);
    color: black;
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}
.detail {
  border-bottom: var(--border);
}
@media screen and (max-width: 37.5em) {
  .detail {
    flex-direction: column;
  }
}

.description {
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3);
  flex: 0 0 60%;
  margin-right: 2rem;
}
@media screen and (max-width: 56.25em) {
  .description {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 37.5em) {
  .description {
    margin-right: 0;
    margin-bottom: 5rem;
  }
}

.Review {
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3);
  flex: 1;
}

.paragraph {
  margin-bottom: 2rem;
  padding: 2.5rem 3.5rem 0 3.5rem;
}

.list {
  margin: 3.5rem 0;
  padding: 3.5rem 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border-top: var(--border);
  border-bottom: var(--border);
}
.list__item {
  flex: 0 0 50%;
  margin-bottom: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 56.25em) {
  .list__item {
    padding-left: 0.8rem;
  }
}
.list__item::before {
  display: inline-block;
  content: "";
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
  -webkit-mask-image: url(../img/chevron-thin-right.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/chevron-thin-right.svg);
  mask-size: cover;
  background-color: red;
}

.recommend {
  display: flex;
  padding: 0 1rem;
  align-items: center;
}
.recommend__count {
  font-size: 1.4rem;
  color: var(--color-Grey-dark-3);
  margin-right: auto;
}
.recommend__photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.2rem solid var(--color-white);
}
.recommend__friends:not(:last-child) {
  margin-right: -1.5rem;
}

.review {
  padding: 3rem;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-dark);
  margin-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 56.25em) {
  .review {
    padding: 1.5rem;
  }
}
.review__user {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  margin-bottom: auto;
}
.review__text {
  z-index: 10;
  position: relative;
}
.review__photo {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  margin-right: 2rem;
}
@media screen and (max-width: 56.25em) {
  .review__photo {
    margin-right: 1rem;
  }
}
.review__user-name {
  font-size: 1.2rem;
}
.review__user-date {
  font-size: 1rem;
  margin-top: 1rem;
}
.review__rating {
  transform: scale(1.5);
  margin-left: auto;
  color: var(--color-primary);
}
.review::before {
  content: "“";
  position: absolute;
  top: -3rem;
  left: 0.51rem;
  font-size: 20rem;
  font-family: sans-serif;
  line-height: 1;
  color: var(--color-Grey-light-3);
  z-index: 1;
}
@media screen and (max-width: 56.25em) {
  .review::before {
    top: -4rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 37.5em) {
  .review::before {
    top: -3rem;
    font-size: 14rem;
  }
}

.button-inline {
  display: flex;
  margin-right: auto;
}

.cta {
  padding: 3.5rem 0;
  text-align: center;
}
.cta__book-now {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-Grey-dark-3);
  margin-bottom: 2.5rem;
}
.cta__btn {
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 10rem;
  background-image: linear-gradient(to right, var(--color-primary-light), var(--color-primary-dark));
  color: var(--color-white);
  cursor: pointer;
  overflow: hidden;
}
.cta > * {
  transition: all 2s;
}
.cta__visible {
  display: inline-block;
  height: 100%;
  width: 100%;
  padding: 2rem 7rem;
}
.cta__hidden {
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 100%;
  left: 0;
  top: -100%;
  padding: 2rem 0;
  color: var(--color-white);
}
.cta:hover .cta__hidden {
  top: 0;
  left: 0;
  background-image: linear-gradient(to left, var(--color-primary-light), var(--color-primary-dark));
  transform: scale(1.05);
}
.cta:active .cta__hidden {
  transform: scale(1);
}
.cta:hover .cta__visible {
  transform: translatey(-100%);
}

.container {
  max-width: 120rem;
  min-height: 50rem;
  margin: 8rem auto;
  background-color: var(--color-Grey-light-2);
  box-shadow: var(--box-shadow-dark);
}
@media screen and (max-width: 75em) {
  .container {
    margin: auto;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  height: 7rem;
  background-color: var(--color-Grey-light-1);
  border-bottom: 0.1rem solid var(--color-Grey-light-4);
}
@media screen and (max-width: 31.25em) {
  .header {
    flex: 1;
    flex-wrap: wrap;
    padding-bottom: 7rem;
  }
}

.content {
  display: flex;
}
@media screen and (max-width: 56.25em) {
  .content {
    flex-direction: column;
  }
}

.side-nav {
  background-color: var(--color-Grey-dark-1);
  flex: 0 0 18%;
}
@media screen and (max-width: 75em) {
  .side-nav {
    flex: 0 0 18%;
  }
}

.main {
  background-color: var(--color-white);
  flex: 1;
}

.detail {
  display: flex;
  padding: 3.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 56.25em) {
  .detail {
    padding: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
