.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-heading {
  position: relative;
  margin-bottom: 2em;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: rgb(255, 78, 0);
  letter-spacing: 2px;
}

.section-padding {
  padding: 6em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 8em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 10em 2em;
  }
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
}

.scroll-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 1em;
  cursor: pointer;
  z-index: 1000;
  color: #fff;
}
.scroll-up__btn {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 4rem;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 2001;
}
.burger-btn:hover .burger-btn__bars::before,
.burger-btn:hover .burger-btn__bars::after {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::before, .burger-btn__bars::after {
  position: absolute;
  right: 0;
  height: 4px;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
  border-radius: 8px;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background-image: linear-gradient(45deg, rgb(255, 78, 0), rgb(236, 159, 5));
  z-index: 2000;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.8rem;
  color: #fff;
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  background-color: #fff;
  transition: transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}
@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: #2e2e2e;
}

.scroll-up-color,
.scroll-up-color::after,
.scroll-up-color::before {
  color: #2e2e2e;
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 100vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(45deg, rgba(255, 78, 0, 0.6), rgba(236, 159, 5, 0.75)), url("/img/outdoor-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.header__heading {
  font-family: "Dancing Script", cursive;
  font-size: 4.8rem;
  font-weight: 300;
}
.header__text {
  font-size: 1.4rem;
}
.header__btn {
  margin-top: 2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s;
}
.header__btn:hover {
  transform: scale(1.05);
}
.header__btn::before {
  background-color: #eee;
}

.rooms__box {
  display: flex;
  flex-direction: column;
  margin: 2em 0;
  overflow: hidden;
}
.rooms__img {
  width: 100%;
  margin-bottom: 1em;
  border: 2px solid rgb(255, 78, 0);
  border-radius: 8px;
}
.rooms__title {
  margin-bottom: 0.5em;
  color: rgb(255, 78, 0);
}
.rooms__text {
  font-size: 1.4rem;
}

.info {
  position: relative;
  background-image: linear-gradient(45deg, rgba(255, 78, 0, 0.6), rgba(236, 159, 5, 0.75)), url("/img/outdoor-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.info .section-heading {
  color: #fff;
}
.info__element {
  margin: 1em 0;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 5px 5px 10px rgba(46, 46, 46, 0.18);
  background-color: #fff;
  overflow: hidden;
  z-index: 10;
  transition: transform 0.3s;
}
.info__element-heading {
  margin-bottom: 0.5em;
  font-size: 3rem;
  font-weight: 600;
  color: rgb(255, 78, 0);
}
.info__element-text {
  margin-bottom: 0.5em;
  font-size: 1.7rem;
  color: #2e2e2e;
}
.info__element:hover {
  transform: scale(0.95);
}

.contact {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.contact__text {
  margin-bottom: 1em;
  font-size: 2rem;
  color: #2e2e2e;
  text-align: center;
}
.contact__mini-heading {
  padding-bottom: 1em;
  font-size: 2.5rem;
  text-align: center;
}

.footer {
  padding: 2em;
  color: #fff;
  background-color: #2e2e2e;
}
.footer__text {
  text-align: center;
}

@media (min-width: 576px) {
  .rooms__box {
    flex-direction: row;
    justify-content: space-between;
  }
  .rooms__box-text {
    width: 55%;
  }
  .rooms__box-text--right {
    text-align: right;
  }
  .rooms__box-img {
    width: 40%;
  }
  .rooms__box-img--right {
    order: 1;
  }
  .rooms__img {
    margin-bottom: 0;
    max-height: 300px;
  }
  .info__element {
    margin: 2em 0;
    width: 100%;
  }
  .info__element-heading {
    margin-bottom: 0.5em;
    font-style: 3.6rem;
  }
}
@media (min-width: 768px) {
  .header__heading {
    font-size: 6.6rem;
  }
  .header__text {
    font-size: 2.2rem;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .rooms__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .scroll-up {
    bottom: 50px;
    right: 50px;
  }
  .header {
    background-image: linear-gradient(45deg, rgba(255, 78, 0, 0.6), rgba(236, 159, 5, 0.75)), url("../img/outdoor-big.jpg");
  }
  .header__heading {
    font-size: 10rem;
  }
  .nav__item {
    font-size: 4.8rem;
  }
  .rooms__box {
    margin: 5em 0;
  }
  .rooms__box-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 2.5em;
  }
  .rooms__title {
    font-size: 3.6rem;
  }
  .rooms__text {
    font-size: 2.2rem;
  }
  .info {
    background-image: linear-gradient(45deg, rgba(255, 78, 0, 0.6), rgba(236, 159, 5, 0.75)), url("../img/outdoor-big.jpg");
  }
  .info__element-text {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */