@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overscroll-behavior: none;
  font-family: 'Nunito', sans-serif;
}

body {
  background: var(--light);
  color: var(--red);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.2;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

img, svg, video {
  display: block;
  max-width: 100%;
  width: 100%;
}

section {
  overflow: hidden;
}

input,
button {
  -webkit-tap-highlight-color: transparent;
}
input:focus-within, input:hover,
button:focus-within,
button:hover {
  outline: none;
}
input:focus-visible,
button:focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

button {
  user-select: none;
}

/*input {
  -webkit-appearance: none;
}*/

ul {
  list-style: none;
}

.img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mainPadding {
  padding-left: var(--paddingX);
  padding-right: var(--paddingX);
}

html {
  --k2: 2560px;
  --desktop: 1920px;
  --laptopXL: 1680px;
  --laptopL: 1640px;
  --laptopM: 1440px;
  --laptopS: 1280px;
  --tabletL: 1024px;
  --tablet: 992px;
  --tabletS: 600px;
  --mobileL: 480px;
  --mobileM: 375px;
  --mobileS: 320px;
  --paddingX: 65px;
  --headerHeight: 80px;
  --basicTransition: 0.4s;
  --mediumTransition: 0.7s;
  --longTransition: 1s;
  --basicEase: cubic-bezier(0.33, 0, 0.13, 1);
  --secondaryEase: cubic-bezier(0.33, 0, 0.67, 1);
  --mainTransition: var(--basicTransition) var(--basicEase);
  --fadeTransition: var(--longTransition) var(--basicEase);
  --white: #fff;
  --black: #1e1e1e;
  --dark: #222222;
  --red: #6b0504;
  --red-shade: #6b060421;
  --light: #d2d4c8;
  --grey: #787878;
}

.container {
  width: 100%;
  padding-left: var(--paddingX);
  padding-right: var(--paddingX);
}

.header {
    background: 0 0;
    --color: var(--light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--headerHeight);
    z-index: 90;
    color: var(--color);
    transition: 0.5s ease-in-out;
    text-shadow:0 0 3px var(--red);
}

.header-transition {
  background: var(--light);
  height: 120px;
  text-shadow:unset;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  height: 100%;
}

.header-nav {
  position: relative;
  align-items: center;
  width: max-content;
  gap: 10%;
}

a {
  text-decoration: none;
  color : var(--light);
  font-size: 18px;
}

.header-menu {
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
  transform: translate(0 ,-50%);
  top: 50%;
}

.header-menu li{
  padding: 0 15px 0 15px;
}

.menu-under-line {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 70%;
  left: 0;

}

.menu-active-line {
  position: absolute;
  top: 70%;
  background: var(--light);
  height: 1px;
  width: 89px;
  transform : translate(0px);
  transition: 0.5s;
  left: 0;

}

.header-logo {
  position: relative;
  width: 65px;
  display: flex;
  align-items: center;
  align-self: center;
  transition: transform var(--mainTransition);
  color: currentColor;
}

.header-logo path {
  fill: var(--light);
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  color: var(--color);
}

.header-cta svg {
  fill:var(--light);
  height: 30px;
  width: 30px;
}

.header-cta svg:hover {
  /*height: 35px;
  width: 35px;*/
  opacity: 0.6;
  transition: 0.2s ease-in-out;
}

.hero-wrapp {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  user-select: none;
}

.hero-shader {
  background: linear-gradient(90deg, rgba(107,5,4,0.18813462885154064) 0%, rgba(107,5,4,0.19) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-msg {
  position: absolute;
  text-align: center;
  top:45vh;
  left:50%;
  width: 17%;
  transform: translate(-50%,-50%);
}

.obj-cover {
  position: relative;
  width: 100%;
  height: 100%;
}

.obj-cover img, .obj-cover video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.footer {
  height: 300px;
  position: relative;
  background: var(--red);
}

.footer-wrapp {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.footer-wrapp section{
  color: var(--light);
  position: relative;
  width: 30%;
}

.footer-wrapp svg{
  padding: 5px 15px 5px 15px;
  fill: var(--light);
}

/*.footer-menu {
  text-align: left;
  padding: 20px;
}

.footer-menu li {
  padding: 0.2em;
}

#footer-left {
  min-width: 200px;
}*/

#footer-up{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-up svg {
  width: 30px;
  padding: 0;
  margin: 5px;
}

.footer-up div {
  display: flex;
  align-items: center;
}

#footer-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-cta {
  display: flex;
}

.header-transition .menu-active-line{
  background: var(--red);
}
.header-transition a{
  transition: 0.5s ease-in-out;
  color: var(--red);
}

.header-transition svg{
  transition: 0.5s ease-in-out;
  fill:var(--red);
}

.header-transition path{
  transition: 0.5s ease-in-out;
  fill:var(--red);
}

/* burger menu*/
.burger-menu {
  position: fixed;
  top:20px;
  left:20px;
  width: 50px;
  transform : translate(0px);
  transition: 0.5s;
  display: none;
}

.burger-menu span {
  display: inline-block;
  vertical-align: middle;
  color: white;
}

.burger-menu ul {
  display: block;
  list-style-type: none;
  text-align: center;
}

.burger-menu a {
  position: relative;
  text-align: center;
  color: #FFF;
  top:10px;
}

.burger-menu a:hover {
  opacity: 0.7;
}

#header-burger-menu {
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  text-align: right;
}

#menu-close {
  transition: 0.5s ease-in-out;
  font-size: 0em;
  opacity: 0;
  text-align: center;
  font-weight: bold;

  -webkit-transition: 0.2s;
          transition: 0.2s;
}

#menu-close.menu-close-visible {
  transition: 0.5s ease-in-out;
  font-size: 4em;
  opacity: 1;
  height: 50px;
  transform: translate(0, -11px);
  -webkit-transition: 0.2s 0.4s;
          transition: 0.2s 0.4s;
}

#menu-button {
  top:40px;
  position: fixed; 
  width: 60px;
  height: 60px;
}

.menu-global {
  z-index: -1;
  position: absolute;
  left: 0;
  height: 4px; 
  width: 100%;
  background-color: var(--light);

  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 0.2s;
          transition: 0.2s;
}

.menu-global:hover {
  left: 20px;
  -webkit-transition: all 0.2s;
          transition: all 0.2s;
}

#menu-top {
  top: 0;
}
#menu-middle {
  top: 18px;
}
#menu-bottom {
  top: 36px;
}
#menu-bottom-last {
  top: 36px;
}

.menu-text{
  opacity: 0;
  font-size: 0em;
  top:10px;
  -webkit-transition: 0.1s;
          transition: 0.1s;
}

.expand {
  box-shadow: rgba(0, 0, 0, 0.1) -2.5px 5px 7.5px, rgba(0, 0, 0, 0.1) 2.5px 5px 7.5px;
  width: 200px;
  height: 50px;
  transform: translate(-65px, 0);

  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#menu-top.menu-top-expand {
  top: 80px;
  background: #b4978e;

  -webkit-transition: all 0.5s 0.2s, left 0.1s;
          transition: all 0.5s 0.2s, left 0.1s;
}

#menu-middle.menu-middle-expand {
  top: 130px;
  background: #985f59;

  -webkit-transition: all 0.5s 0.1s, left 0.1s;
          transition: all 0.5s 0.1s, left 0.1s;
}
#menu-bottom.menu-bottom-expand {
  top: 180px;
  height: 50px;
  background: #7f2c29;

  -webkit-transition: all 0.5s, left 0.1s;
          transition: all 0.5s, left 0.1s;
}
#menu-bottom-last.menu-bottom-last-expand {
  top: 230px;
  height: 50px;
  background: #6b0504;

  -webkit-transition: all 0.5s, left 0.1s;
          transition: all 0.5s, left 0.1s;
}

.menu-text-expand{
  color: #ffffff;
  opacity: 0.8;
  padding: 13px 30px;
  font-size: 1.3em;
  -webkit-transition: all 0.2s 0.5s, font-size 0.1s;
          transition: all 0.2s 0.5s, font-size 0.1s;
}

.menu-transition {
  transition: 0.5s ease-in-out;
  background-color: var(--red);
}

.header-transition .burger-menu {
  transform : translate(0px);
  transition: 0.5s;
  top : 42px;
}

.header-transition #menu-close {
  transition: 0.5s ease-in-out;
  color: var(--red);
}

/* home */

.global-section {
  padding: 65px 0;
  --maxWidth: 425px;
}

.container {
  width: 100%;
  padding-left: var(--paddingX);
  padding-right: var(--paddingX);
}

.global-wrapp {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 25px;
}

.global-info {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.h2 {
  font-size: clamp(2rem,1.4655rem + .8621vw,2.5rem);
}

.fade-overflow {
  display: block;
  text-align: start;
  position: relative;
}

.global-text {
  margin-top: 30px;
}

.global-link {
 display: block;
  margin-top: 65px;
}

.link-box {
  width: 150px;
  height: 50px;
  background-color: var(--light);
  color: var(--red);
  border: 2px solid;
  border-radius: 25px;
  border-color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-link:hover {
  opacity: 0.6;
}

.global-img-wrapp {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.spa-wrapp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px; 
}

.spa-info {
  grid-area: 1 / 1 / 2 / 2;
}

.spa-img-wrapp {
  grid-area: 1 / 2 / 2 / 5;
}

.spa-img2-wrapp {
  grid-area: 2 / 3 / 3 / 6;
}

.spa-img3-wrapp {
  grid-area: 2 / 1 / 3 / 3;
}
/* room */


.room-double-wrapp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px; 
}

.room-spec {
  color: var(--light);
  background: var(--red);
  position: relative;
  height: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.room-spec div {
  border-color: var(--light);
}

.room-up {
  display: flex;
  height: 30%;
  width: 100%;
  border-bottom: 1px dotted;
}

.room-bed {
  align-items: center;
  width: 40%;
  height: 100%;
  border-right: 1px dotted;
}
.room-bed, .room-people, .room-size {

  display:flex;
  flex-direction: column;
  justify-content: center;
  fill: var(--light);
}
.room-people {
  align-items: center;
  width: 35%;
  height: 100%;
  border-right: 1px dotted;
}

.room-size {
  align-items: center;
  width: 25%;
  height: 100%;
}

.room-bed div {
  padding: 20px;
}

.room-bed span {
  justify-content: flex-end;
}
.room-bed svg {
  justify-content: flex-start;
  width: 50px;
}
/*
.room-ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 20px;
}*/
.room-down {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  height: 70%;
}
.suite1, .suite2, .suite3, .suite4, .suite5, .suite6{
  display:flex;
  justify-content:center;
  align-items:center;
}

.suite1 {grid-area: 1 / 1 / 2 / 2;}
.suite2 { grid-area: 1 / 2 / 2 / 3; }
.suite3 { grid-area: 2 / 1 / 3 / 2; }
.suite4 { grid-area: 2 / 2 / 3 / 3; }
.suite5 { grid-area: 3 / 1 / 4 / 2; }
.suite6 { grid-area: 3 / 2 / 4 / 3; } 

.room-ul-left {
  padding-right: 10%;
}

.midline {
  background: var(--light);
  height: 1px;
  width: 250px;
}

.room-info {
  position: relative;
  width: 50%;
  text-align: center;
  top:2%;
}
.room-info span {
  font-size: 30px;
  color: var(--red);
}

.description-bg {
  display: flex;
  justify-content: center;
  grid-area: 1 / 4 / 2 / 6;
}
.room-double-img-wrapp {
  grid-area: 1 / 2 / 2 / 4;
}

.room-double-info {
  grid-area:  1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.suite-bg {
  display: flex;
  justify-content: center;
  grid-area: 1 / 2 / 2 / 4;
}
.suite-img-wrapp {
  grid-area: 1 / 4 / 2 / 6;
}

.suite-info {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.padding {
  height: 100%;
  width: 100%;
  padding-bottom: 60%;
}

/*contact*/

.global-map-wrapp {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 30px;
}
.map-wrapp {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 25px;
}
.map-box {
  width: 200px;
}

.map-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 65px;
  font-size: clamp(1.5rem,1rem + .8621vw,2.5rem);
}

.map-contact div {
  padding: 10px;
}
.map-contact svg {
  width: 50px;
  fill: var(--red);
}

.map-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-scale {
  width: 100%;
}
/* responsive */

@media (max-width: 1441px) {
  html {
    --paddingX: 55px;
  }
  .expand {
    transform: translate(-55px, 0);
  }

  .room-double-wrapp {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr); 
  }

  .description-bg {
    grid-area: 2 / 3 / 4 / 5;
  }
  .room-double-img-wrapp {
    grid-area: 2 / 1 / 4 / 3;
  }
  
  .room-double-info {
    grid-area: 1 / 2 / 2 / 4;
    justify-content: flex-start;
  }

  .suite-bg {
    grid-area: 2 / 1 / 4 / 3;
  }
  .suite-img-wrapp {
    grid-area: 2 / 3 / 4 / 5;
  }
  
  .suite-info {
    grid-area: 1 / 2 / 2 / 4;
    justify-content: flex-start;
  }

  .hero-msg{
    width: 30%;
  }

}
@media (max-width: 1281px) {
  html {
    --paddingX: 45px;
  }
  .expand {
    transform: translate(-45px, 0);
  }
  .map-wrapp {
    grid-template-columns: 100%;
  }
  .global-map-wrapp {
    align-items: center;
  }
}
@media (max-width: 1025px) {
  html {
    --paddingX: 30px;
  }
  .header-menu {
    display: none;
  }
  .menu-under-line {
    display: none;
  }
  .expand {
    transform: translate(-30px, 0);
  }
  .burger-menu{
    display: flex;
  }

  /* home */
  .global-section {
    --maxWidth: 340px;
  }

  .global-wrapp {
    grid-template-columns: 100%;
    grid-gap: 45px;
  }

  .global-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .global-title {
    text-align: center;
  }

  .global-table, .global-text {
    max-width: 90%;
    width: 60%;
  }

  .spa-wrapp {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr); 
    grid-row-gap: 25px; 
  }

  .spa-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-area: 1 / 1 / 2 / 2;
  }

  .spa-img-wrapp {
    grid-area: 2 / 1 / 4 / 2;
  }

  .spa-img2-wrapp {
    grid-area: 4 / 1 / 6 / 2; 
  }
  .spa-img3-wrapp {
    display: none;
  }
  /*room*/
  .room-double-wrapp{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }

  .room-double-info{
    grid-area: 1 / 1 / 2 / 2;
    align-items: center;
  }

  .description-bg {
    grid-area: 2 / 1 / 4 / 2;
  }

  .room-double-img-wrapp {
    grid-area: 4 / 1 / 6 / 2;
  }

  .suite-info{
    grid-area: 1 / 1 / 2 / 2;
    align-items: center;
  }

  .suite-bg {
    grid-area: 2 / 1 / 4 / 2;
  }

  .suite-img-wrapp {
    grid-area: 4 / 1 / 6 / 2;
  }

  .hero-msg{
    width: 50%;
  }
}
@media (max-width: 601px) {
  html {
    --paddingX: 20px;
    --headerHeight: 80px;
  }

  .header-cta {
    display: none;
  }

  .expand {
    transform: translate(-20px, 0);
  }

  .burger-menu{
    display: flex;
  }

  .global-info {
    align-items: flex-start;
    text-align: left;
  }

  .global-title {
    text-align: left;
  }

  .global-table, .global-text {
    max-width: 100%;
    width: 100%;
  }

  .spa-wrapp {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);  
  }

  .spa-info {
    align-items: flex-start;
    text-align: left;
    grid-area: 1 / 1 / 2 / 2;
  }

  .spa-img-wrapp {
    grid-area: 2 / 1 / 3 / 2;
  }

  .spa-img2-wrapp {
     grid-area: 3 / 1 / 4 / 2;
  }
  .room-double-info, .suite-info{
    align-items: flex-start;
  }
}
@media(max-width: 414px) {
  #footer-up{
    align-items: flex-start;
  } 
  #footer-up div {
    margin-left: 20px;
    margin-right: 20px;
  }   
}

/**/

.scroll-down svg {
  width: 13px;
}


.color-light {
  color: var(--white);
}

.scroll-down {
  background: 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.hero-scroll-down {
  position: absolute;
  left: 50%;
  top: calc(100vh - 30px);
  transform: translate(-50%,-100%);
}