@font-face {
  font-family: 'utm-avo';
  src: url('../css/fonts/utm-avo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'utm-avo-bold';
  src: url('../css/fonts/utm-avo-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'utm-avo-italic';
  src: url('../css/fonts/utm-avo-italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'utm-avo-bold-italic';
  src: url('../css/fonts/utm-avo-bold-italic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'GeoSlab';
  src: url('../css/fonts/geoslabl.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


:root {
  --yellow: #fee795 --menu-bg: linear-gradient(to right, var(--red), var(--red-dark));
  --burger: #FFF;
  --menu-bg: #1d1d1d;
  --header: #ff8a01;
  --vang: #f9d256;
  --f-title:'GeoSlab';
}
html{
   background-color: black; 
}
body {
  font-family: 'utm-avo';
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  scroll-behavior: smooth;
  height: auto;
}

.body-main {
  background-image: url(../images/wood-bg.png);
}

.container .boundary {
  width: 100%;
  max-width: 1300px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

a {
  color: inherit;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* menu */
.main-menu {
  position: relative;
  color: #fff;
  height: 180px;
  font-family: "utm-avo-bold";
  font-size: .9em;
  z-index: 999;
  overflow: hidden;
}

.main-menu .boundary {
  position: relative;
  line-height: 60px;
  margin-top: 10px;
  text-align: center;
  padding: 20px 0px 10px 0px;
}

.main-menu .hamburger {
  float: right;
  position: relative;
  margin-right: 20px;
  width: 45px;
  height: 45px;
  background-color: #fef7c3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f7a603;
  box-shadow: 0 0 10px #f7a603;
  cursor: pointer;
  margin-top: 30px;
}

.main-menu .hamburger.is-active {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.main-menu .hamburger.is-active .hamburger-inner,
.main-menu .hamburger.is-active .hamburger-inner::before,
.main-menu .hamburger.is-active .hamburger-inner::after {
  background-color: #f7e939 !important;
  opacity: 1 !important;
  filter: brightness(1.5) !important;
}

.main-menu .hotline {
  position: absolute;
  right: -15px;
  top: 100px;
  background-color: #1d1d1d;
  border: 1px solid #f7a603;
  border-radius: 50px;
  justify-content: flex-start;
  padding: 1px 30px 5px 10px;
  height: 30px;
  box-shadow: 0 0 10px #f7a603;
  display: flex;
  align-items: center;
}

.hotline,
.hotline span {
  font-family: 'utm-avo-bold-italic';
  font-weight: normal;
  color: #fff6c2;
  text-decoration: none;
  font-size: 1.1em;
}

.main-menu .mm-logo img {
  width: 180px;
  height: auto;
  vertical-align: middle;
  float: left;
}

.closeMenu {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 50px;
  cursor: pointer;
  color: #f7e939;
  z-index: 10001;
  font-weight: 900;

}

.main-menu .mm-content {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 460px;
  height: 100%;
  z-index: 9999;
  background: var(--menu-bg);
  text-align: left;
  list-style-type: none;
  padding: 150px 0 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  overflow: 0;
}

.main-menu .mm-content .mmc-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
}

.main-menu .mm-content .mmc-logo img {
  width: 100%;
  height: auto;
}

.main-menu .mm-content.active {
  left: 0;
  transform: scale(1);
  overflow: 1;
}

.main-menu .mm-background {
  content: "";
  background-color: rgb(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
}

.main-menu .mm-content li {
  padding: 0 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  line-height: 40px;
}

.main-menu .mm-content li.mmc-logo a {
  border-bottom: 0;
}

.main-menu .mm-content li a {
  display: block;
  border-bottom: 1px solid #848484;
  line-height: 40px;
  padding: 5px 0;
}

.main-menu .mm-content li.anchor.stop a {
  pointer-events: none;
}

.main-menu .mm-content li i {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  float: right;
  line-height: 40px;
  font-size: .9em;
  transition: all .5s;
}

/* giới thiệu */
#gioithieu_slider {
  justify-content: center;
}

.container.gioithieu .room-items {
  width: 95%;
  margin: 0 auto;
}

.container.gioithieu .room-items .title-room {
  width: 200px;
  height: auto;
  margin-left: 15px;
  margin-bottom: -20px;
}

.container.gioithieu .room-items .title-room img {
  width: 100%;
  height: auto;
}

.container.gioithieu .room-items .title-room1 {
  width: 160px;
  height: auto;
  margin-left: 15px;
  margin-bottom: -23px;
}

.container.gioithieu .room-items .title-room1 img {
  width: 100%;
  height: auto;
}

.container.gioithieu .room-items .title-room2 {
  width: 260px;
  height: auto;
  margin-left: 15px;
  margin-bottom: -23px;
}

.container.gioithieu .room-items .title-room2 img {
  width: 100%;
  height: auto;
}

.container.gioithieu .room-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  background: #111;
  color: #fff;
  max-width: 95%;
  margin: 15px auto;
  border: 3px solid #ffcc00;
  border-radius: 10px;
  box-shadow: 0 0 10px #ffcc00, inset 0 0 10px #ffcc00;
  box-sizing: border-box;
  z-index: 0;
}

.container.gioithieu .room-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2.5px solid #f4e236;
  border-radius: 10px;
  z-index: 1;
  pointer-events:none;
}

.container.gioithieu .room-card::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid #fff6c2;
  border-radius: 10px;
  z-index: 1;
  pointer-events:none;
}

.container.gioithieu .room-card .room-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 70%;
  height: 400px;
  gap: 2px;
}

.container.gioithieu .room-card .room-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container.gioithieu .room-card .room-info {
  background: #111;
  width: 40%;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container.gioithieu .room-card.room-info .price {
  text-align: center;
}

.container.gioithieu .room-card .room-info .price span {
  display: inline-block;
  background: #f4e236;
  color: #1d1d1d;
  padding: 2px 15px;
  border-radius: 6px;
  margin-bottom: 5px;
  font-size: 1em;
  font-family: 'utm-avo-bold-italic' !important;
  box-shadow: 0 4px 10px rgba(247, 147, 30, 0.9);
}

.container.gioithieu .room-card .room-info .price p {
  margin: 4px 0 10px;
  font-size: 1em;
  line-height: 1.5;
  font-family: 'utm-avo';
}

.container.gioithieu .room-card .features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .7em;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  padding: 4px;
  width: 110px;
}

.container.gioithieu .room-card .features div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 6px 0px 6px 5px;
  border-radius: 3px;
  font-size: 1em;
  width: 110px;
  font-weight: bold;
  font-family: 'utm-avo';
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.container.gioithieu .room-card .features i {
  display: flex;
  align-items: center;
  margin-top: 3px;
  font-size: 12px;
  color: #7e7e7e;
}

.btn-book {
  background: #f7931e;
  color: #fff;
  border: none;
  padding: 5px 0;
  border-radius: 8px 0 8px 0;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'GeoSlab';
  text-align: center;
  margin-top: 10px;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(247, 147, 30, 0.9);
}
.btn-book:hover {
  background: #ffaa33;
}

/* nút na */
#gioithieu_slider .owl-prev {
  display: none !important;
}

#gioithieu_slider .owl-next {
  background-color: #fff6c2;
  color: #1d1d1d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 30px;
  border: 1px solid #f7a603;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(247, 147, 30, 0.9);
}

/* loại phòng */
.container.loaiphong {
  width: 100%;
  margin: 20px auto 0;
  padding: 0 10px 50px;
  box-sizing: border-box;
}
.container.loaiphong.freetime { background-color:hsl(0, 0%, 11%); padding:5px 10px 30px; border-bottom:2px solid #f4e236; }

.container.loaiphong .boundary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto;
}

.container.loaiphong .boundary .loaiphong-items {
  display: block;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container.loaiphong .boundary .loaiphong-items:hover {
  transform: scale(1.03);
  z-index: 10;
}

.container.loaiphong .boundary .loaiphong-items .img-loaiphong {
  width: 95%;
  aspect-ratio: 1 / .9;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #1d1d1d;
  box-shadow:
    0 0 10px rgba(244, 226, 54, 0.7),
    0 0 20px rgba(244, 226, 54, 0.5),
    0 0 30px rgba(244, 226, 54, 0.3);

}

.container.loaiphong .boundary .loaiphong-items .img-loaiphong img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container.loaiphong .boundary .loaiphong-items .content-loaiphong {
  text-align: center;
  margin-top: -35px;
  background-image: url('../images/neon-sign-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0px;
}

.container.loaiphong .boundary .loaiphong-items .content-loaiphong .main-loai {
  transform: translateY(22px);
  box-sizing: border-box;
}

.container.loaiphong .boundary .loaiphong-items .content-loaiphong h2 {
  font-size: 1em;
  margin: 0;
  font-family: 'GeoSlab';
  color: #f4e236;
  font-weight: normal;
}

.container.loaiphong .boundary .loaiphong-items .content-loaiphong .price-loai {
  background-color: #f4e236;
  color: #80350e;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  font-size: .8em;
  font-family: 'utm-avo-bold-italic';
  margin-top: 5px;
}

/* nội quy*/

.container.noiquy {
  background-color: hsl(0, 0%, 11%);
  overflow: hidden;

}

.container.noiquy .boundary .title-noiquy, .container.loaiphong .title-loaiphong {
  color: #f8e9a1;
  text-align: center;
  margin-top: 50px;
}
.container.loaiphong .title-loaiphong { margin-top:30px; margin-bottom:40px; }

.container.noiquy .boundary .title-noiquy h2, .container.loaiphong .title-loaiphong h2 {
  font-family: 'GeoSlab';
  font-size: 2em;
  font-weight: normal;
  margin: 0;
}

.container.noiquy .boundary .title-noiquy span {
  font-size: 2em;
  font-family: 'GeoSlab';
  font-weight: normal;
}

.container.noiquy .boundary .content-noiquy {
  color: #fff;
  border-radius: 10px;
  margin: 10px 15px 40px 15px;
  padding: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.container.noiquy .boundary .content-noiquy span {
  display: inline-block;
  font-size: 1em;
  line-height: 1.5;
  padding: 8px 0;
}

.icon-footer span {
  font-family: 'GeoSlab';
  font-weight: normal;
}
.icon-footer i{
  margin-right: 10px;
}
/* footer */

.container.footer {
  background-color: #333333;
  color: #fef7c3;
}

.container.footer .boundary {
  padding: 40px 10px 30px 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.container.footer .boundary .logo-footer {
  margin: 0 auto;
  width: 200px;
  height: auto;
}

.container.footer .boundary .logo-footer img {
  width: 100%;
  height: auto;
}

.container.footer .boundary .lienhe-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  justify-content: center;
  align-items: center;
  row-gap: 15px;
  margin-top: 30px;
}

.container.footer .boundary .lienhe-footer a {
  text-decoration: none;
  color: #d9c485;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  transition: color 0.3s ease;
  font-size: 1.1em;
}

.footer-bottom {
  background-color: #1d1d1d;
  color: #fef7c3;
  text-align: center;
  font-size: .7em;
  padding: 5px;
}

.footer-bottom div {
  opacity: .5;
}

@media (min-width:768px) {
  .main-menu .mm-content.active {
    left: calc((100% - 460px)/2);

  }
}

@media (min-width:996px) {
  .main-menu .mm-content.active {
    left: calc((100% - 460px)/2);
  }
}

@media (min-width:1200px) {
  .main-menu .mm-content.active {
    left: calc((100% - 460px)/2);

  }
}

@media (min-width:1500px) {
  .main-menu .mm-content.active {
    left: calc((100% - 460px)/2);
  }
}

@media (min-width:1800px) {
  .main-menu .mm-content.active {
    left: calc((100% - 460px)/2);
  }
}