@font-face {
  font-family: "metropolis";
  src: url(/res/Metropolis-Regular.otf);
}

@font-face {
  font-family: "playfair";
  src: url(/res/PlayfairDisplay-Regular.ttf);
}

* {
  font-family: "metropolis";
  margin: 0 auto;
}

.container {
  width: 100vw;
  /* height: 200vh; */
  overflow: hidden;
}

.header {
  position: fixed;
  display: grid;
  width: 100vw;
  background-color: rgba(193, 18, 31, 1);
  grid-template-columns: auto auto;
  padding: 14px 20px 14px 20px;
  align-items: center;
  z-index: 99;
  box-shadow: -2px 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.header-menu {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  gap: 30px;
}

.header-menu-button {
  display: none;
}

.showing {
  top: 0px !important;
}

.hiding {
  top: -44vh !important;
}

.header-top-menu {
  display: none;
  position: fixed;
  top: -44vh;
  right: 0px;
  z-index: 1000;
  height: 44vh;
  width: 100vw;
  box-shadow: -2px 2px 5px 2px rgba(0, 0, 0, 0.2);
  background-color: rgba(193, 18, 31, 1);
  transition: 0.6s ease;
}

.header-top-menu-container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.header-menu a {
  font-size: 1em;
  text-decoration: none;
  color: rgb(232, 232, 232);
}

.header-menu a:hover {
  color: rgba(60, 60, 60, 1);
  transition: 0.2s ease;
}

.header-top-menu-container a {
  font-size: 1em;
  text-decoration: none;
  color: rgb(232, 232, 232);
}

.header-top-menu-container a:hover {
  color: rgba(60, 60, 60, 1);
  transition: 0.2s ease;
}

.header-logo img {
  width: 180px;
}

.main-slider {
  position: relative;
  width: 100vw;
}

.about-us {
  width: 100vw;
  /* height: 50vh; */
  display: flex;
  flex-direction: row;
  /* background-color: rgba(245, 245, 245, 1); */
}

.about-us-child {
  width: 50vw;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-us-child-item {
  padding: 100px;
}

.about-us-img-selector {
  display: block;
}

.about-us-img {
  background-image: url(/res/atrium3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 90%;
  height: 70%;
  margin: 15% 0 15% 0;
  /* border-radius: 5px; */
  box-shadow: -30px 30px 0px 0px rgba(193, 18, 31, 1);
  display: block;
}

.footer {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 40px 30px;
  gap: 2vw;
  overflow: hidden;
}

.footer-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo {
  width: 200px;
}

.footer-child td {
  padding: 3px 6px;
  color: rgba(120, 120, 120, 1);
  vertical-align: top;
  font-size: 0.9em;
  line-height: 1.3em;
}

.footer-child td a {
  color: rgba(120, 120, 120, 1);
  text-decoration: none;
  font-size: 1em;
}

.footer-child .footer-20 {
  width: 20vw;
}

.copyright {
  padding: 15px;
  display: flex;
  justify-content: center;
  background-color: rgba(60, 60, 60, 1);
  color: rgb(184, 182, 182);
  font-size: 0.9em;
}

.map {
  width: 100vw;
  height: 40vh;
  overflow: hidden;
  padding: 40px 0px;
  background-color: rgba(193, 18, 31, 1);
  /* margin-top: 40px; */
}

.facility {
  /* width: 100vw; */
  background-color: rgba(250, 250, 250, 1);
  padding: 50px 100px;
}

.facility-item {
  display: grid;
  gap: 20px;
  grid-template-columns: auto auto auto;
}

.facility-item-child {
  color: rgba(60, 60, 60, 1);
  background-color: rgba(255, 255, 255, 1);
  width: 23vw;
  padding: 30px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transform: translateY(0px);
  transition: 0.3s ease;
}

.facility-item-child:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.sub-header {
  width: 100vw;
  height: 50vh;
  overflow: hidden;
  background-size: cover;
}
.sub-header-blur {
  position: absolute;
  z-index: 30;
  width: 100vw;
  height: 50vh;
  background-color: rgba(178, 15, 26, 0.8);
}
.sub-header-content {
  width: 100vw;
  padding-top: 9vh;
  height: 40vh;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sub-header-content p {
  color: rgba(230, 230, 230, 1);
  font-family: "playfair";
  font-size: 3em;
}

.room-container {
  /* width: 100vw; */
  padding: 4rem;
  display: grid;
  grid-template-columns: auto auto;
}
.room-white {
  width: 42vw;
  height: 70vh;
  display: grid;
  grid-template-rows: auto auto;
  box-shadow: -2px 2px 5px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.room-white-img {
  width: 42vw;
  height: 50vh;
  overflow: hidden;
}

.white-bg-img {
  width: 42vw;
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s ease;
}

.white-bg-img:hover {
  transform: scale(1.02);
}

.room-white-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42vw;
  height: 20vh;
  background-color: rgba(255, 255, 255, 1);
  /* padding: 3rem; */
}

.room-book-btn {
  padding: 14px 40px;
  background-color: rgba(193, 18, 31, 1);
  color: rgba(250, 250, 250, 1);
  transition: 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.room-book-btn:hover {
  background-color: rgb(168, 19, 29);
}

.serapator {
  width: 100vw;
  height: 2rem;
  background-color: rgba(193, 18, 31, 1);
}

.show-img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: none;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
}

.hide-img {
  display: grid !important;
}

.show-img div {
  width: 70vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(/res/promo1.png);
}

@media (max-width: 768px) {
  .room-container {
    padding: 1rem;
    grid-template-columns: auto;
  }
  .header {
    gap: 8rem;
    padding: 14px 0px;
  }
  .header-top-menu {
    display: block;
  }
  .header-menu-button {
    display: block;
  }
  .header-logo img {
    width: 130px;
  }
  .header-menu {
    display: none;
  }
  .about-us-child {
    width: 100vw;
  }
  .about-us-child-item {
    padding: 40px;
  }
  .about-us-img-selector {
    display: none;
  }
  .facility {
    padding: 2rem 2rem;
  }
  .facility-item {
    line-height: 1.3em;
    grid-template-columns: auto auto;
  }
  .map {
    padding: 1rem 0px;
  }
  .footer {
    grid-template-columns: auto;
    padding: 2rem;
    gap: 1.5rem;
  }

  .footer-child .footer-20 {
    width: 80vw;
  }

  .room-white {
    width: 90vw;
    height: 50vh;
    margin-bottom: 1.5rem;
  }

  .room-white-img {
    width: 90vw;
    height: 30vh;
  }

  .white-bg-img {
    width: 90vw;
    height: 30vh;
  }

  .white-bg-img:hover {
    transform: scale(1.02);
  }

  .room-white-content {
    width: 90vw;
    height: 20vh;
  }

  .sub-header {
    height: 40vh;
  }
  .sub-header-blur {
    height: 40vh;
  }
  .sub-header-content {
    padding-top: 8vh;
    height: 30vh;
  }

  .show-img div {
    width: 94vw;
  }
}
