:root{
  --light: #fff;
  --dark: #090909; 
  --light-gray: #f8f9fa;
  --gray: #a2a2a2;
  --main: #a0d3ce;
  --auxiliar: #a45a18;
  --support: #ddbf3f;
  --light-sand: #eeeada;
  --dark-sand: #baa382;
  --olive: #a7a02c;
  --mint: #d0e8d0;
  --marine: #233449;
}

@font-face{
  font-family: 'Belleza';
  font-weight: normal;
  src: url(fonts/Belleza/Belleza-Regular.woff2);
}

@font-face{
  font-family: 'Average';
  font-weight: normal;
  src: url(fonts/Average/AverageSans-Regular.woff2);
}


*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Average';
  color: var(--dark);
}

html{
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body{
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Belleza';
}

a{
  text-decoration: none;
}

/*Modal Landing*/
.modal-landing{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 20px;
  background-color: transparent;
}

.modal-landing .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--light);
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 30px;
}

.modal-landing::backdrop{
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-landing .container a{
  border: 0;
  border-radius: 5px;
  background-color: var(--main);
  color: var(--light);
  text-align: center;
  font-family: 'Belleza';
  padding: 10px;
  margin-top: 10px;
}

.modal-landing .container a:focus{
  border: 0;
}

.modal-landing .container .btn-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background-color: var(--light);
  color: var(--dark);
  font-size: 16px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  top: -15px;
  right: -15px;
  z-index: 1000;
}

/*Main Menu*/
.main-menu{
  position: fixed;
  display: block;
  background-color: rgb(0 0 0 / 0%);
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease-in-out;
}

.main-menu .top-header{
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 40px;
  background-color: rgba(0 0 0 / 20%);
  padding-left: 50px;
  padding-right: 50px;
}

.main-menu .top-header a{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 15px;
  margin-right: 8px;
  height: 80%;
  padding: 3px 8px 3px 8px;
}

.main-menu .top-header a:nth-child(1){
  border-right: 1px solid var(--light);
}

.main-menu .top-header a i{
  color: var(--light);
}

.main-menu-bg-show{
  background-color: rgb(255 255 255 / 100%);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 50%);
  transition: background-color 0.3s ease-in-out;
}

.main-menu .logo-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  height: 80px;
  margin: 0 auto 0 auto;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.main-menu .logo-container .logo{
  display: block;
  height: 70%;
}

.main-menu .logo-container .logo img{
  display: block;
  height: 70%;
  filter: drop-shadow(0 0 5px rgb(0 0 0 / 75%));
}

.menu-options{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 100%;
}

.menu-options .logo{
  display: none;
  width: 200px;
  height: 70%;
  border-right: 1px solid var(--auxiliar);
}

.menu-options .logo img{
  display: block;
  height: 70%;
}

.menu-options .logo.invert-color img,
section .invert-color{
  filter: invert(100%);
}

.menu-options a{
  display: block;
  color: var(--light);
  font-family: 'Belleza';
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px 10px 20px;
  transition: color 0.2s ease-in-out;
  text-shadow: 0 0 4px rgba(0 0 0 / 50%);
}

.menu-options a:hover{
  color: var(--gray) !important;
  transition: color 0.3s ease-in-out;
}

.menu-options a.alter-buttons{
  color: var(--auxiliar);
  font-size: 20px;
  font-weight: normal;
  text-decoration: none;
  padding: 10px 20px 10px 20px;
  text-shadow: 0 0 4px rgba(0 0 0 / 0);
  transition: color 0.2s ease-in-out;
}

.menu-mobile{
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--dark);
  color: var(--light);
  z-index: 100;
}

.menu-mobile .logo{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 20px;
}

.menu-mobile .logo img{
  display: block;
  height: 70%;
}

.menu-mobile .menu-options{
  display: block;
  width: 100%;
}

.menu-mobile .menu-options a{
  display: block;
  color: var(--light);
  font-family: 'Belleza';
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px 20px 10px;
  transition: color 0.2s ease-in-out;
}

.menu-mobile .menu-options a:hover{
  color: var(--gray);
  transition: color 0.3s ease-in-out;
}

.btn-close-menu-mobile{
  cursor: pointer;
}

.btn-menu-mobile{
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 1px solid var(--light);
  border-radius: 5px;
}

.btn-menu-mobile i{
  color: var(--light);
}

.btn-menu-mobile-dark{
  border: 1px solid var(--dark);
}

.btn-menu-mobile-dark i{
  color: var(--dark);
}

@media only screen and (max-width: 1199px) {

  .main-menu .logo-container{
    align-items: center;
    justify-content: space-between;
  }

  .main-menu .logo-container .btn-menu-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-options{
    align-items: center;
    justify-content: space-between;
    width: 95%;
    height: 70px;
  }

  .menu-options .logo{
    align-items: center;
    justify-content: center;
    height: 60%;
  }

  .menu-options a{
    display: none;
  }

  .menu-options .btn-menu-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

/*Main Container*/
.container-full{
  width: 100%;
}

/*Header*/
.header{
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
}

.header-full{
  height: 100vh;
}

.header-mid{
  height: 50vh;
}

.header .background{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.header .logo{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.header .logo img{
  display: block;
  width: 20%;
  margin-top: 150px;
  filter: drop-shadow(0 0 5px rgb(0 0 0 / 75%));
}

@media only screen and (max-width: 1760px) {

  .header .background img{
    width: auto;
    height: 100%;
  }

}

@media only screen and (max-width: 1280px) {

  .header .logo img{
    width: 30%;
  }

}

@media only screen and (max-width: 720px) {

  .header .logo img{
    width: 40%;
  }

}

@media only screen and (max-width: 375px) {

  .header .logo img{
    width: 60%;
  }

}

/*Footer*/
.footer{
  position: relative;
}

.footer > div:first-child > div:nth-child(2){
  border-left: 1px solid var(--light);
  padding-left: 20px;
}

/*Section*/
.section-full{
  position: relative;
  width: 100%;
  padding: 20px 0 20px 0;
}

/*Forms*/
.frm{
  width: 100%
}

.frm input,
.frm select{
  display: block;
  width: 100%;
  height: 50px;
  background-color: var(--bs-gray-100);
  border: 1px solid var(--bs-gray);
  border-radius: 5px;
  font-family: 'Average';
  font-size: 18px;
  margin-bottom: 6px;
  padding: 6px;
  outline: 0;
}

.frm textarea{
  display: block;
  width: 100%;
  height: 200px;
  background-color: var(--bs-gray-100);
  border: 1px solid var(--bs-gray);
  border-radius: 5px;
  font-family: 'Average';
  font-size: 18px;
  margin-bottom: 6px;
  padding: 6px;
}

.frm input:focus,
.frm select:focus,
.frm textarea:focus{
  outline: var(--main) solid 2px;
}

.frm button{
  border: 0;
  border-radius: 5px;
  background-color: var(--main);
  color: var(--light);
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: bold;
  height: 40px;
  width: 100px;
}

/*Notification*/
.message-notification{
  display: none;
  background-color: var(--bs-gray-500);
  border-radius: 5px;
  display: none;
  color: var(--bs-white);
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  text-align: center;
}

.success{
  color: var(--bs-white);
  background-color: var(--main);
}

.error{
  color: var(--bs-white);
  background-color: var(--bs-red);
}

.show{
  display: block;
}

/*Map*/
.map{
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 25%);
  margin: 0 auto 0 auto;
}

/*Masonry Grid*/
.grid .item{
  display: block;
  border: 0;
  width: 400px;
}

.grid .item img{
  display: block;
  width: 100%;
}

/*General*/
.text-main{
  color: var(--main);
}

.text-auxiliar{
  color: var(--auxiliar);
}

.text-support{
  color: var(--auxiliar);
}

.text-olive{
  color: var(--olive);
}

.text-marine{
  color: var(--marine);
}

.bg-main{
  background-color: var(--main);
}

.bg-main-50{
  background-color: rgb(160 211 206 / 50%);
}

.bg-light-gray{
  background-color: var(--light-gray);
}

.bg-mint{
  background-color: var(--mint);
}


.bg-auxiliar{
  background-color: var(--auxiliar);
}

.bg-support{
  background-color: var(--auxiliar);
}

.bg-light-sand{
  background-color: var(--light-sand);
}

.bg-dark-sand{
  background-color: var(--dark-sand);
}

.border-main{
  border-color: var(--main);
}

.border-auxiliar{
  border-color: var(--auxiliar);
}

.border-support{
  border-color: var(--auxiliar);
}

.fill-main{
  fill: var(--main);
}

.btn{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  height: 40px;
  padding: 4px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
}

.btn-social-networks{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  background-color: var(--light);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.2s ease-in-out;
}

.btn-social-networks:hover{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--light);
  background-color: var(--main);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.2s ease-in-out;
}

.btn-social-networks img{
  display: block;
  width: 80%;
}

.btn-scroll-top{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 50%);
  color: var(--light);
  border-radius: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.link{
  text-decoration: none;
}

.link:hover{
  text-decoration: underline;
}

.header-container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.header-special{
  display: block !important;
  font-family: 'Belleza';
  font-size: 30px;
  font-weight: bold;
}

.header-special-before,
.header-special-after{
  display: block;
  height: 1px;
}

.header-special-before{
  margin-right: 15px;
}

.header-special-after{
  margin-left: 15px;
}

.list{
  list-style-type: none;
}

.list li{
  position: relative;
  padding-left: 30px;
}

.list li::before{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px; 
  transform: translateY(5px);
  background-image: url('../../assets/img/icons/bullet.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: var(--olive);
}

.list-services{
  list-style-type: none;
  margin-left: 50px;
}

.list-services li:before{
  font-family: 'FontAwesome';
  font-weight: bold;
  content: '\f005';
  margin-right: 5px;
  color: var(--olive);
}

.list-number{
  list-style-position: outside;
  margin-left: 30px;
}

.list-number li{
  margin-bottom: 6px;
}

/*Rooms Numbers*/
.room-number-container{
  width: calc(100% / 8);
  margin-bottom: 60px;
}

.room-number-container .image{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
}

.room-number-container .image img{
  display: block;
  width: 80%;
}

.room-number-container .description{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 40px;
}

.room-number-container .description div:nth-child(1){
  color: var(--auxiliar);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.room-number-container .description div:nth-child(2){
  color: var(--auxiliar);
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {

  .room-number-container{
    width: calc(100% / 3);
  }

}



/*Rooms card*/
.room-card{
  background-color: var(--light);
}

.room-card .image{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1.81;
  background-color: var(--gray);
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 50%);
}

.room-card .image img{
  display: block;
  width: 100%;
}

.room-card .specs{
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  padding: 10px;
}

.room-card .specs .title{
  color: var(--olive);
  font-family: 'Belleza';
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 50px;
  margin-bottom: 4px;
}

.room-card .specs .description{
  display: flex;
  align-items: start;
  justify-content: center;
  color: var(--dark);
  font-family: 'Average';
  font-size: 16px;
  text-align: justify;
  width: 100%;
  height: 120px;
}

.room-card .details{
  width: 100%;
  padding: 10px;
}

.room-card .details .info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.room-card .details .info .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.room-card .details .info .icon img{
  display: block;
  width: 100%;
}

.room-card .details .info .data{
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: left;
  width: calc(100% - 44px);
  height: 40px;
}

/*Extras*/
.image-container{
  display: block;
  border: 3px solid var(--support);
  border-radius: 50px 0 50px 0;
  overflow: hidden;
}

.image-horizontal{
  aspect-ratio: 1.7;
}

.w-95{
  width: 95%;
}

.w-90{
  width: 90%;
}

.w-85{
  width: 85%;
}

.w-80{
  width: 80%;
}

.w-40{
  width: 40%;
}

.w-35{
  width: 35%;
}

.splide-border-white{
  border: 10px solid var(--light);
}

.splide-border-gray{
  border: 10px solid var(--gray);
}

.text-justify{
  text-align: justify;
}