@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bonheur+Royale&family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Maven+Pro:wght@700;800;900&display=swap");

:root {
  --green-dark: #34670c;
  --green-std: #4caf50;
  --green-light: #5bd260;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
.fixar {
  position: fixed !important;
  height: 80px !important;
  z-index: 2;
}

.overflow {
  overflow: hidden;
}

.menu-bar {
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  width: 100%;
  height: 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 30px;
  color: #fff;
  transition: 0.7s;
}

.menu-bar .logo {
  height: 100%;
  padding: 10px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.menu-bar .logo img {
  object-fit: scale-downs;
  max-width: 100%;
  max-height: 100%;
}

.menu-bar nav {
  display: flex;
  list-style: none;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.7px;
  font-size: 1rem;
}

.menu-bar nav a {
  padding: 0 20px;
  line-height: 35px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.menu-bar nav a:hover {
  color: #4caf50;
}

.menu-bar .btn {
  padding: 16px 38px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.57;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background-color: transparent;
  border: 2px solid var(--green-dark);
  display: inline-block;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.menu-bar .btn:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

#open-mobile-menu {
  display: none;
}

#open-mobile-menu button {
  background-color: transparent;
  color: #fff;
  border: none;
}

#open-mobile-menu span {
  font-size: 40px;
}

#menu-mobile-mask {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

#menu-mobile {
  display: flex;
  position: fixed;
  left: -350px;
  flex-direction: column;
  background-color: #fff;
  width: 350px;
  height: 100%;
  z-index: 3;
  padding: 30px 10px;
  align-items: center;
  text-align: center;
  transition: 0.3s;
}

#close-mobile-menu {
  position: fixed;
  bottom: 0;
  height: 50px;
  width: 350px;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
}

#close-mobile-menu button {
  background-color: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
}

#close-mobile-menu button span {
  font-size: 35px;
}

header.mobile #menu-mobile {
  left: 0;
}

header.mobile #menu-mobile-mask {
  display: block;
}

#menu-mobile a {
  color: #38332e;
  list-style: none;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.7px;
  font-size: 1rem;
  padding: 25px 0;
  border-bottom: 1px solid #000;
  min-width: 70%;
  text-align: center;
  transition: 0.3s;
}

#menu-mobile a:hover {
  color: #4caf50;
}

#menu-mobile a:last-child {
  border-bottom: none;
}

.welcome {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: -3;
}

.welcome .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome img {
  height: 100vh;
}

.welcome .title {
  position: absolute;
  color: white;
  text-shadow: black 0.1em 0.1em 0.2em;
  padding: 50px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.welcome .title h1 {
  font-family: "Great vibes";
  font-size: 5rem;
  max-width: 100%;
}
.welcome .title p {
  font-family: "Rubik", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-align: center;
  max-width: 100%;
  margin-bottom: 30px;
}

.kayak {
  position: fixed;
  width: 150px;
  height: 150px;
  z-index: 20;
  bottom: 5px;
  right: 5px;
  cursor: pointer;
}

.kayak img {
  width: 150px;
  height: 150px;
}

.about {
  display: flex;
  padding: 50px;
  background-color: #fff;
}

.about .pic,
.about .text {
  max-width: 50%;
  padding: 30px;
}

.about .pic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .pic img {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.57;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #898574;
  text-transform: uppercase;
  margin: 0 0 20px;
}

h2 {
  font-style: normal;
  font-weight: 700;
  line-height: 1.22;
  font-family: "Josefin Sans", serif;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0 0 38px;
  font-size: 50px;
}

.about .text p {
  color: #38332e;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: 0em;
  text-align: justify;
  margin-bottom: 45px;
}
.welcome a {
  padding: 16px 38px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.57;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
  color: #000;
  background-color: #fff;
  border: 2px solid #fff;
  text-shadow: none;
}
.about .text a {
  padding: 16px 38px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.57;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
  color: #000;
  background-color: #fff;
  text-shadow: none;
  border: 2px solid var(--green-dark);
}

.about .text a:hover,
.welcome a:hover {
  color: #fff;
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.rooms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px 35px 50px;
  background-color: #e9e7e1;
}

.rooms .text {
  max-width: 900px;
  text-align: center;
  padding: 0 15px;
}

.rooms .text p,
#comodidades .title p {
  color: #777777;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 25px;
}

.rooms .container {
  width: 100%;
  overflow-x: scroll;
}

.rooms .wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
  flex: 1 1 0;
}

.rooms .wrapper .room {
  padding-left: 1.385rem;
  padding-right: 1.385rem;
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: #fff;
  padding: 24px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.rooms .wrapper .room .room-img {
  max-width: 372px;
  margin: 1em 0;
}

.room-img a {
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: 0.3s;
  max-width: none;
}

.room-img a::after {
  content: "";
  width: 100%;
  height: calc(100% + 1px);
  border: 15px solid #f7f7f7;
  position: absolute;
  top: 0;
  left: 0;
  transition: 333ms border-width;
  box-sizing: border-box;
}

.room-img a:hover::after {
  border-width: 5px;
}

.rooms .wrapper .room .room-img img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

.rooms .wrapper .room .room-title {
  position: relative;
  margin: 2px 0 0;
  font-style: normal;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.23;
  font-family: "Josefin Sans", serif;
  letter-spacing: 0.02em;
}

.rooms .wrapper .room .room-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
}

.rooms .wrapper .room .room-description p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.72;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0em;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: justify;
  min-height: 100px;
}

.rooms .wrapper .room .room-description a {
  padding: 16px 38px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.57;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
  color: #000;
  background-color: #fff;
  border: 2px solid var(--green-dark);
  display: inline-block;
  width: fit-content;
}

.rooms .wrapper .room .room-description a:hover {
  color: #fff;
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

#comodidades {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

#comodidades .title {
  max-width: 900px !important;
}

#comodidades .content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

#comodidades .content .material-symbols-outlined {
  font-size: 96px;
  color: #898574;
  transition: all 0.3s;
}

#comodidades .content h3 {
  font-weight: normal;
  text-transform: uppercase;
  color: #898574;
  transition: all 0.3s;
}

#comodidades .content .item {
  width: 280px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background-color: #e9e7e1;
  cursor: default;
}

#comodidades .content .item:hover .material-symbols-outlined {
  color: #38332e;
}

#comodidades .content .item:hover h3 {
  color: #38332e;
  transition: all 0.3s;
}

.footer {
  background-color: #1d1d1d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 130px 30px 60px 30px;
}

.footer .hotel,
.footer .contacts {
  width: 33.33%;
}

.footer p {
  font-size: 1em;
  line-height: 1.42;
  margin-top: 20px;
  color: #777;
  font-style: normal;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}

.footer .contacts h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer .contacts ul {
  list-style: none;
}

.footer .contacts ul li {
  font-size: 0.9em;
  line-height: 1.57;
  font-family: "Roboto", sans-serif;
  color: #777;
  font-weight: 300;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}

.footer .contacts ul li span {
  margin-right: 8px;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 1280px) {
  .welcome {
    height: auto;
  }
}

@media (min-width: 1280px) {
  .welcome img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1280px) {
  .menu-bar .btn {
    display: none;
  }

  .menu-bar {
    justify-content: space-between;
  }

  .about {
    flex-direction: column;
    padding: 10px;
  }

  .about .pic,
  .about .text {
    max-width: 100%;
  }

  .footer .hotel {
    display: none;
  }

  .footer .contacts {
    width: 100%;
  }

  .footer .hotel {
    text-align: center;
    margin-bottom: 50px;
  }
}

@media (max-width: 1024px) {
  .menu-bar {
    justify-content: space-between;
    height: 120px;
  }

  .menu-bar nav {
    display: none;
  }

  #open-mobile-menu {
    cursor: pointer;
    display: block;
  }

  .rooms .test {
    overflow: scroll;
    width: 100vw;
    height: 100%;
  }

  .rooms .wrapper .room {
    min-width: 300px;
  }
}

@media (max-width: 640px) {
  .menu-bar {
    height: 80px;
  }
}
