@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:400,400i,600,600i");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Marcellus+SC&display=swap");

:root {
  --maincolor: #222;
  --black: #222;
  --light-gold: #beaa71;
  --white: #ffffff;

  --border: 0.1rem solid var(--black);
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --text-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1);
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: "Inter", sans-serif;
  /* font-family: "Josefin Sans", sans-serif; */
}

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 50%;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background-color: var(--white);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.header,
.second-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-shadow: var(--box-shadow);
  align-items: center;
  justify-content: center;
}

.header {
  background-color: transparent;
}

.second-header {
  scroll-snap-type: start;
  background-color: white;
}

.nav-logo {
  width: 5rem;
}
.line {
  width: 100px;
  height: 0;
  color: var(--black);
  border: 2.5px solid black;
  margin: 5px;
  display: inline-block;
}

.main-header {
  /* font-family: "Inter", sans-serif; */
  font-family: "Marcellus SC", serif;
  font-size: 10rem;
  color: #beaa71;
  font-weight: 700;
}

.header2,
.header3 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  height: 80vh;
  min-height: 400px;
  max-height: 600px;
  min-width: 300px;
  color: #eee;
  scroll-snap-align: start;
}

.header2:after,
.header3:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 40%,
    rgba(27, 32, 48, 1) 100%
  );
}
.header2:before,
.header3:before {
  content: "";
  width: 100%;
  height: 300%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  scale: (1, 1);
  transform: translateZ(0);
  background-size: 100%;
  background-attachment: fixed;
  animation: grow 360s linear 10ms infinite;
  transition: all 0.4s ease-in-out;
  z-index: -2;
}
.header2:before {
  background: #1b2030 url(/assets/building.png) 50% 0 no-repeat;
}

.header3:before {
  background: #1b2030 url(/assets/building.png) 50% 0 no-repeat;
}
.header .nav-a {
  color: #eee;
}

.explore-header {
  padding-top: 20rem;
  font-family: "Marcellus SC", serif;
  font-size: 8rem;
  font-weight: 500;
}

.facility-container {
  width: 50%;
  margin-top: 4rem;
  margin-left: 3rem;
}

/* .menu {
  display: block;
  width: 40px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 3px;
  position: absolute;
  right: 20px;
  top: 20px;
  text-decoration: none;
}
.menu:after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  margin: 0 auto;
  top: 5px;
  left: 0;
  right: 0;
  box-shadow: 0 8px, 0 16px;
} */

.info {
  width: 100%;
  /* padding: 15% 10% 0 10%; */
  padding-top: 5rem;
  text-align: center;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  font-weight: 300;
}

.logo-image {
  width: 20%;
  margin-bottom: 1rem;
}

.info h4 {
  font-size: 0.7em;
}

@keyframes grow {
  0% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1.2) translateY(-400px);
  }
}
.content {
  padding: 5% 10%;
  text-align: justify;
}
.btn {
  color: #333;
  border: 2px solid;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px;
  font-weight: 600;
}

.big-container {
  overflow: scroll;
  height: 100vh;
  scroll-snap-points-y: repeat(100vh);
  scroll-snap-type: y mandatory;
}

.room-div {
  display: flex;
  margin-left: 15rem;
  margin-right: 15rem;
  justify-content: space-between;
  margin-bottom: 15rem;
  height: 100vh;
  scroll-snap-align: start;
}

.main-caption {
  font-size: 1.8rem;
  padding: 3rem;
  margin-right: 5rem;
  font-family: "Roboto", sans-serif;
}

.room-elements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  padding-right: 10rem;
}
/* .header .logo {
  font-size: 2.5rem;
  color: var(--black);
} */

.room-container {
  width: 40%;
  /* height: 50rem;
  width: 100rem; */
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-div {
  display: flex;
  margin-left: 15rem;
  margin-right: 15rem;
  justify-content: space-between;
  scroll-snap-align: start;
  height: 100vh;
  /* margin: 0 auto; */
  margin-bottom: 15rem;
}

.dining-container {
  width: 50%;
}

.dining-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-elements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding-left: 10rem;
}

.header .navbar .nav-a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  color: var(--white);
  opacity: 0.75;
}

.header .navbar .nav-a:hover {
  color: var(--white);
  opacity: 1;
}

.second-header .second-navbar,
.nav-b {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  color: var(--black);
}
/* 
#menu-btn {
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
  float: right;
  display: none;
} */

.read-more-btn {
  background: #343435;
  border-radius: 999px;
  box-shadow: #000000 0 10px 20px -10px;
  box-sizing: border-box;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  word-break: break-word;
  border: 0;
  width: 35%;
  height: 5rem;
  margin-top: 3rem;
}
.a-button {
  width: 50%;
  margin-top: 3rem;
  /* margin-left: 25rem; */
}

.center {
  text-align: center;
}
.price-mother {
  margin-top: 5rem;
  margin-bottom: 3rem;
}
.facility-list {
  margin-left: 7rem;
  margin-bottom: 5rem;
}

.price-text {
  font-size: 2rem;
  padding: 0rem;
  font-family: "Roboto", sans-serif;
}

ul,
li {
  font-size: 1.8rem;
  padding: 0rem;
  font-family: "Roboto", sans-serif;
}
.price-container {
  width: 40%;
  display: flex;
  justify-content: space-between;
}
/* 
footer {
  width: 100%;
  display: flex;
  justify-content: center;
} */

.footer {
  position: relative;
  width: 100%;
  height: 40%;
  background: #ede7cf;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  scroll-snap-align: start;
}

.foot-box {
  margin-top: 5rem;
  margin-bottom: 3.5rem;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.social-box {
  width: 30%;
  display: block;
}

.info-box {
  width: 70%;
  display: block;
}

.foot-header {
  font-family: "Marcellus SC", serif;
  font-size: 3.5rem;
  font-weight: 400;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  /* justify-content: center;
  align-items: center; */
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 3rem;
  color: black;
  margin-right: 3rem;
  margin-top: 1rem;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  color: black;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  padding: 1rem;
}

.menu__link:hover {
  opacity: 1;
}

.foot-p {
  color: black;
  margin: 15px 0 10px 0;
  font-size: 1.5rem;
  font-family: "Marcellus SC", serif;
  font-weight: 400;
}

footer p {
  font-weight: 500;
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  section {
    padding: 3rem 5%;
  }
}

/* @media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: transparent;
    border-top: var(--border);
    padding: 2rem;
  }

  .header .navbar .nav-a {
    display: block;
    margin: 2rem;
    text-align: center;
  }
} */

@media (max-width: 991px) {
  html {
    font-size: 40%;
  }

  .info {
    height: 100%;
  }

  .logo-image {
    width: 70%;
  }

  .main-header {
    font-size: 6rem;
  }

  .line {
    border: 1.7px solid black;
  }

  .room-div,
  .dining-div {
    width: 100%;
    height: fit-content;
    /* margin: 0; */
    margin: 1rem;
    margin-bottom: 8rem;
    margin-top: 3rem;
    padding: 1rem;
  }

  /* .room-img {
    height: 30%;
  } */

  .room-elements,
  .dining-elements {
    width: 90%;
    padding: 0;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .read-more-btn {
    width: 85%;
    margin: 1rem;
    line-height: 0;
  }

  .price-mother,
  .price-container {
    width: 90%;
  }

  .footer {
    width: 100%;
    height: 50%;
    padding: 20px 5px;
  }

  .foot-box {
    width: 95%;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .social-box {
    width: 100%;
  }

  .info-box {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  /* .info-box {
    padding-left: 1rem;
    padding-right: 1rem;
  } */
  /* .main-caption {
    font-size: 30%;
  } */

  /* .room-div,
  .dining-div {
    display: flex;
    flex-direction: column-reverse;
    width: 80%;
    margin: 1rem;
    padding: 0;
    justify-content: center;
    justify-self: center;
  }

  .room-elements,
  .main-caption,
  .read-more-btn {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 1rem;
    padding: 0;
    justify-self: center;
    justify-items: center;
  }

  .room-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 1rem;
    padding: 0;
    justify-self: center;
  } */

  @media (max-width: 430px) {
    .price-text {
      font-size: 1.8rem;
    }
  }
}
