@charset "UTF-8";
:root {
  --primary-brown: #ab8965;
  --light-brown: #A68B5B;
  --dark-text: #181818;
  --beige: #F5F1EB;
  --white: #FFFFFF;
  --boder-color:#FFFFFF40;
  --dark-meta:#606060;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-brown: #AB8965;
  --light-brown: #A68B5B;
  --dark-grey: #2C2C2C;
  --beige: #F5F1EB;
  --white: #FFFFFF;
  --text-dark: #333333;
  --bg-gl-footer:#181818;
  --e-global-color-primary: #AB8965;
  --e-global-color-secondary: #54595F;
  --e-global-color-text: #7A7A7A;
  --e-global-color-accent: #61CE70;
  --e-global-typography-primary-font-family: "Roboto";
  --e-global-typography-primary-font-weight: 600;
  --e-global-typography-secondary-font-family: "Roboto Slab";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Roboto";
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: "Roboto";
  --e-global-typography-accent-font-weight: 500;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  transition: all 0.3s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.site-header.header-solid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #181818;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.site-header.header-solid .top-bar {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
.site-header .top-bar {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid var(--boder-color);
  padding: 10px 0;
  background: transparent;
  transition: all 0.8s ease;
  height: 55px;
  display: flex;
  justify-content: space-between;
}
.site-header .top-left {
  margin-left: 55px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header span {
  font-size: 16px;
}
.site-header i {
  color: var(--white);
  font-size: 16px;
  position: relative;
  margin-right: 10px;
}

.top-right {
  display: flex;
  align-items: center;
  margin-right: 55px;
  gap: 20px;
}
.top-right a {
  color: #fff;
  font-size: 15px;
  transition: color 0.3s ease;
}

.menu-toggle,
.close-menu {
  display: none;
}

.navbar {
  background-color: transparent;
  padding: 0 15px;
  position: relative;
  z-index: 5;
  height: 75px;
  display: flex;
  justify-content: center;
}

.container-fluid {
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  padding: 0 45px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  flex-direction: row;
}

.navbar .nav-link,
.navbar .nav-link:visited {
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary-brown);
}

/* Logo */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--primary-brown);
}

.logo-header {
  display: flex;
  margin-top: 5px;
}

.logo-header img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.logo-header span {
  font-size: 30px;
  font-weight: 400;
  margin-left: 12px;
}

.btn-reservation {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

.btn-reservation:hover {
  background-color: var(--primary-brown);
  border-color: var(--primary-brown);
  color: var(--white);
  text-decoration: none;
}

/* --- Mũi tên chỉ xuống --- */
.nav-item i {
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

/* --- Khi hover thì xoay mũi tên lên --- */
.nav-item:hover i {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav-item .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #181a1b;
  border: none;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 180px;
  z-index: 10;
}

.nav-item:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 3s ease-in;
}

/* Các item trong dropdown */
.dropdown-menu .dropdown-item {
  color: #e0e0e0;
  padding: 10px 18px;
  font-size: 14px;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #2c2f30;
  color: #fff;
}

.single-room {
  margin-left: 17px;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease-in;
}

.dropdown-menu li:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Tạo hiệu ứng mũi tên chỉ qua phải cho item có submenu */
.dropdown-menu li > .nav-link i {
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.dropdown-menu li:hover > .nav-link i {
  transform: rotate(-90deg);
  opacity: 1;
}

/* --- Dropdown Dine --- */
.dine-dropdown {
  position: static;
  /* để dropdown có thể chiếm full chiều rộng */
}

.dine-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #16181a;
  border: none;
  border-radius: 0;
  padding: 25px 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Khi hover vào Dine thì dropdown xuất hiện */
.dine-dropdown:hover .dine-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Các item bên trong Dine --- */
.dine-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dine-item img {
  width: 100%;
  max-width: 250px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dine-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.dine-item span {
  margin-top: 10px;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 24px;
  color: var(--white);
}

.dine-item:hover span {
  color: #fff;
}

.dine-menu:hover {
  display: flex;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slider .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-section .hero-slider .hero-slide.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}
.hero-section .hero-slider .hero-slide.previous {
  transform: translateX(-100%);
  opacity: 1;
  z-index: 1;
}
.hero-section .hero-slider .hero-slide .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .hero-slider .hero-slide .hero-background img,
.hero-section .hero-slider .hero-slide .hero-background .hero-img-slide {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  filter: brightness(1.2);
}
.hero-section .hero-slider .hero-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.hero-section .hero-slider .hero-slide .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 2s ease, transform 2s ease;
}
.hero-section .hero-slider .hero-slide .hero-content h1.hero-title {
  font-size: 60px;
  color: var(--white);
  margin-bottom: 40px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  width: 900px;
}
.hero-section .hero-slider .hero-slide .hero-content .btn-find-rooms {
  background-color: var(--primary-brown);
  color: var(--white);
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.hero-section .hero-slider .hero-slide .hero-content .btn-find-rooms:hover {
  background-color: var(--light-brown);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(139, 111, 71, 0.4);
  color: var(--white);
  text-decoration: none;
}
.hero-section .hero-slider .hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-section .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--primary-brown);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  background: none;
  border: none;
  z-index: 2;
}
.hero-section .hero-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}
.hero-section .hero-arrow.hero-arrow-prev {
  left: 30px;
}
.hero-section .hero-arrow.hero-arrow-next {
  right: 30px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 2s ease, transform 2s ease;
}

.booking-form-container {
  position: absolute;
  bottom: 15px;
  z-index: 4;
  background-color: rgba(245, 241, 235, 0.95);
  border-top: 1px solid rgba(139, 111, 71, 0.1);
  height: 80px;
}

.booking-form {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-direction: row;
  margin-top: -1px;
}

.booking-form .form-group {
  flex: 1;
  min-width: 150px;
  display: block;
  text-align: center;
  color: #000;
  background: transparent;
  border: none;
  font-size: 15px;
}

.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 100;
  color: var(--primary-brown);
  margin-bottom: 8px;
}

.booking-form .form-control:focus {
  outline: none;
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

/* Counter Control */
.counter-control {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.btn-counter {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(139, 111, 71, 0.2);
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 600;
  background: var(--primary-brown);
  align-items: center;
}

.btn-counter:hover {
  background-color: var(--primary-brown);
  color: var(--white);
  border-color: var(--primary-brown);
}

.counter-input {
  flex: 1;
  text-align: center;
  max-width: 45px;
  border: none;
  background: transparent;
  color: #000;
}

.btn-check-availability {
  background-color: var(--primary-brown);
  color: var(--white);
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 80px;
  margin-right: -12px;
}

.btn-check-availability:hover {
  background-color: black;
}

.btn-booking {
  height: 100%;
  display: block;
}

.form-group input[type=text] {
  text-align: center;
  color: #000;
  background: transparent;
  border: none;
  font-size: 18px;
}

.accommodation-section {
  background: #fff5ed;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  /* Smooth transitions for AOS animations */
}
.accommodation-section .section-header {
  text-align: center;
  padding-bottom: 30px;
  will-change: transform, opacity;
}
.accommodation-section .section-header .section-kicker {
  color: var(--light-brown);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.accommodation-section .section-header .section-title {
  font-size: 52px;
  color: var(--dark-text);
  margin-bottom: 40px;
}
.accommodation-section .rooms-grid .pagination-ajax {
  grid-column: 1/-1;
  align-self: end;
}
.accommodation-section .rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: auto;
  grid-auto-flow: row;
  transition: transform 1s ease-out;
}
.accommodation-section .rooms-grid .room-card {
  background: #fff5ed;
  overflow: hidden;
  margin-bottom: 20px;
  will-change: transform, opacity;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.accommodation-section .rooms-grid .room-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.accommodation-section .rooms-grid .room-card:hover img {
  transform: scale(1.1);
}
.accommodation-section .rooms-grid .room-card .room-image {
  position: relative;
  height: 385px;
  width: 385;
  overflow: hidden;
}
.accommodation-section .rooms-grid .room-card .room-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.accommodation-section .rooms-grid .room-card .room-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.accommodation-section .rooms-grid .room-card .room-body .room-title {
  font-size: 22px;
  margin: 15px 0 5px;
  font-weight: 600;
  color: black;
  transition: color 0.3s ease;
}
.accommodation-section .rooms-grid .room-card .room-body .room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  list-style: none;
  color: var(--dark-meta);
  margin: 0 8px;
  padding: 0 -32px;
}
.accommodation-section .rooms-grid .room-card .room-body ul {
  padding: 0;
}
.accommodation-section .rooms-grid .room-card .room-body .room-link {
  display: block;
  width: 100%;
  margin: 20px auto 0;
  padding: 10px 0;
  background-color: #ab8965;
  color: white;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}
.accommodation-section .rooms-grid .room-card .room-body .room-link:hover {
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  background-color: #9a7a55;
}
.accommodation-section [data-aos] {
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Testimonial: fixed background with overlay text */
.testimonial-section {
  position: relative;
  background-image: url("https://themewant.com/luxera/wp-content/uploads/2025/03/45.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-section .testimonial-mask {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.testimonial-section .testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.testimonial-section .testimonial-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  min-height: 100px;
  margin: 0 auto;
  padding: 20vh 24px;
  /* generous vertical padding to enable smooth scroll reading */
  color: #fff;
  line-height: 1.8;
  text-align: center;
}

.testimonial-section .testimonial-quote-mark {
  font-size: 72px;
  line-height: 1;
  opacity: 0.7;
}

.testimonial-section .testimonial-quote {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 36px;
  margin: 16px 0 24px;
}

.testimonial-section .testimonial-author {
  font-weight: 500;
  opacity: 0.9;
}

.change-text-btn {
  display: inline-flex;
  gap: 10px;
  font-size: 28px;
  color: #a58260;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.change-text-btn span {
  transition: all 0.3s ease;
}

/* Khi hover nhẹ sáng hơn */
.change-text-btn span:hover {
  transform: scale(1.2);
  color: #d8b892;
}

/* Khi được click (active) — sáng đèn */
.change-text-btn span.active {
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #a58260;
}

.facilities-section {
  background: #fff;
  padding-top: 110px;
  margin: 0 auto;
}
.facilities-section .facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 10px;
}
.facilities-section .facilities-grid .facility-card:nth-child(2),
.facilities-section .facilities-grid .facility-card:nth-child(5) {
  margin-top: 30px;
}
.facilities-section .facilities-grid .facility-card {
  position: relative;
  overflow: hidden;
  height: 550px;
  width: 360px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.facilities-section .facilities-grid .facility-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.facilities-section .facilities-grid .facility-card .facilities-overlay {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #fff5ed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  transition: bottom 0.3s ease-in-out;
  z-index: 2;
}
.facilities-section .facilities-grid .facility-card .facilities-overlay .facility-caption {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0 0 10px;
  z-index: 11;
}
.facilities-section .facilities-grid .facility-card .facilities-overlay .hover {
  color: var(--dark-text);
}
.facilities-section .facilities-grid .facility-card .facilities-overlay .facility-desc {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark-text);
}
.facilities-section .facilities-grid .facility-card .facilities-overlay .facility-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark-meta);
}
.facilities-section .facilities-grid .facility-card .facilities-overlay .read-more {
  color: #fff;
  background: var(--primary-brown);
  padding: 8px 25px;
  text-decoration: none;
}
.facilities-section .facilities-grid .facility-card:hover .facilities-overlay {
  bottom: 0;
}

.facilities-header {
  display: flex;
}

.facilities-heading {
  flex: 1;
}

.facilities-kicker {
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin: 0 0 20px;
}

.facilities-title {
  font-size: 52px;
  color: var(--dark-text);
}

.facilities-desc {
  font-size: 16px;
  color: var(--dark-meta);
  max-width: 750px;
  flex: 2/3;
  padding: 0 0 0 50px;
  margin: 0 0 26px;
}

.facilities-section .container {
  max-width: 1200px;
  margin-bottom: 50px;
  padding: 0 24px;
}

.facility-caption-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #eee7e7;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
  text-align: center;
}

.facility-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ab8965 100%);
  pointer-events: none;
  z-index: 1;
}

.intro-section {
  background: #fff;
  padding: 100px 0 0;
}

.intro-container {
  display: flex;
  gap: 10px;
  width: 1200px;
  height: 750px;
}

.intro-left {
  width: 580px;
}

.intro-stars {
  color: yellow;
  margin-bottom: 11px;
  letter-spacing: 4px;
  font-size: 11px;
}

.intro-kicker {
  color: var(--light-brown);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 18px 0;
  font-size: 13px;
}

.intro-title {
  font-size: 52px;
  line-height: 1.1;
  color: var(--dark-text);
  max-width: 580px;
  margin-bottom: 22px;
}

.intro-copy {
  color: var(--dark-meta);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 36px;
}

.intro-reservation {
  display: flex;
}

.intro-reservation-icon {
  font-size: 29px;
  display: flex;
  background: var(--primary-brown);
  color: #fff;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  justify-content: center;
  align-items: center;
}

.intro-reservation-text .label {
  font-size: 30px;
  color: var(--dark-text);
  padding-left: 20px;
}

.intro-reservation-text .phone {
  color: var(--dark-meta);
  text-decoration: none;
  padding-left: 20px;
  font-size: 16px;
}

.intro-photo {
  position: absolute;
  height: 435px;
  width: 290px;
  background-size: 22% 100%;
  background-position: 65%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: all 0.5s ease-out;
}

.intro-photo1 {
  position: absolute;
  height: 435px;
  width: 290px;
  margin-left: 315px;
}

.intro-center {
  position: relative;
  top: 150px;
  left: -6%;
}

.intro-center .intro-photo.primary {
  left: 75px;
}

.intro-photo.secondary {
  right: -40px;
  top: 50px;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Smooth scroll animations for intro section */
.intro-section {
  overflow: hidden;
  position: relative;
}

.intro-left,
.intro-center,
.intro-right {
  will-change: transform, opacity;
}

/* Smooth transitions for AOS animations */
.intro-section [data-aos] {
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Parallax effect for photos on scroll - subtle hover effect */
@media (min-width: 992px) {
  .intro-photo.primary,
  .intro-photo1.secondary {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .intro-section:hover .intro-photo.primary {
    transform: translateY(-8px) scale(1.01);
  }
  .intro-section:hover .intro-photo1.secondary img {
    transform: translateY(8px) scale(1.01);
  }
  .intro-photo1.secondary img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
/* Smooth text animations with AOS */
.intro-left [data-aos] {
  transition-duration: 0.8s;
}

/* Enhanced smoothness for reservation box */
.intro-reservation {
  transition: all 0.3s ease;
}

.intro-reservation:hover {
  transform: translateX(5px);
}

.intro-reservation-icon {
  transition: all 0.3s ease;
}

.intro-reservation:hover .intro-reservation-icon {
  transform: rotate(5deg) scale(1.05);
}

.site-footer {
  background: #181818;
  color: #d7d7d7;
  position: relative;
  z-index: 1;
}

.footer-container {
  margin: 0 auto;
  padding: 300px 10px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  width: 1200px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-left img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-left h3 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-left a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-left a:hover {
  color: #c5a06e;
  display: flex;
}

.footer-cl {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 20px;
  color: #ffffff;
}

.footer-link {
  color: #ffffff;
  font-size: 16px;
}

/* Form subscribe */
.footer-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-container input[type=text] {
  background: transparent;
  border: 1px solid #555;
  padding: 10px 15px;
  color: #fff;
  outline: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 45px;
  height: auto;
  display: block;
}

.footer-logo h3 {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 35px;
  margin-left: 10px;
}

.footer-container input::-moz-placeholder {
  color: #aaa;
}

.footer-container input::placeholder {
  color: #aaa;
}

.footer-container button {
  background: #b49367;
  border: none;
  padding: 10px 15px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-container button:hover {
  background: #d1ad7b;
}

.footer-bottom {
  border-top: 1px solid rgba(180, 173, 173, 0.911);
  padding: 20px 0 20px;
  text-align: center;
  background: var(--bg-gl-footer);
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.payment-icons svg {
  width: 35px;
  height: 25px;
  fill: #fff;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-copy {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-top: 10px;
}

.map-section {
  width: 1200px;
  margin: 0 auto;
  height: 500px;
  z-index: 2;
  position: relative;
  padding-top: 170px;
}

.map-grid {
  display: flex;
}

.contact-info-box {
  background-color: #f9f3ec;
  display: flex;
  flex-direction: column;
  width: 540px;
  padding: 90px 60px;
}

.contact-kicker {
  color: var(--primary-brown);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-text);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  height: 108px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  gap: 20px;
}

.contact-icon {
  background-color: var(--primary-brown);
  color: #fff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
}

.contact-item p {
  font-size: 22px;
  color: var(--dark-meta);
  font-weight: 400;
}

.map-container {
  width: 693px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: grayscale(100%) brightness(95%);
  border: none;
  display: block;
}

@media (max-width: 1200px) {
  .site-header .top-bar {
    justify-content: center !important;
  }
  .site-header .top-left {
    display: none !important;
  }
  .site-header .top-right {
    justify-content: center !important;
    margin-right: 0 !important;
    gap: 15px;
  }
  .site-header .top-bar {
    height: auto;
    padding: 8px 0;
  }
}
@media (max-width: 1200px) {
  .navbar {
    height: 65px;
  }
  .menu-toggle {
    display: block !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
  }
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 10;
    overflow-y: auto;
  }
  .navbar-nav.active {
    right: 0;
  }
  .navbar-nav .nav-item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px 0;
    display: block;
    color: #000 !important;
  }
  .close-menu {
    display: flex !important;
    justify-content: center;
    position: absolute;
    top: 0 !important;
    left: 0;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    z-index: 1002;
    padding: 6px 6px;
    background: var(--primary-brown);
    width: 40px;
    height: 40px;
  }
  .navbar-brand {
    position: relative;
    left: 3%;
  }
  .logo-header img {
    width: 28px;
    height: 28px;
    margin-top: 0px;
  }
  .logo-header span {
    font-size: 24px;
    margin-left: 8px;
  }
  .btn-reservation {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .nav-item .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 10px 0 10px 20px;
    margin-top: 10px;
  }
  .dropdown-menu .dropdown-item:hover {
    color: red !important;
    background: transparent;
  }
  .nav-item.active .dropdown-menu {
    display: block;
  }
  .dropdown-menu .dropdown-item {
    padding: 8px 0;
    color: var(--dark-text) !important;
  }
  .dine-dropdown {
    position: static;
  }
  .dine-menu {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dine-dropdown.active .dine-menu {
    display: flex;
  }
  .dine-item {
    margin-bottom: 20px;
  }
  .dine-item img {
    max-width: 100%;
    height: auto;
  }
  .btn-reservation {
    display: none;
  }
}
@media (max-width: 768px) {
  .site-header {
    position: fixed;
    background: rgba(0, 0, 0, 0.65);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
  .site-header::after {
    display: none;
  }
  .site-header .top-bar {
    display: none;
  }
  .navbar {
    justify-content: space-between;
    padding: 0 18px;
    height: auto;
  }
  .navbar .container-fluid {
    width: 100%;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  .navbar-brand {
    position: static;
    transform: none;
    margin: 0;
  }
  .logo-header img {
    margin-top: 0;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 1100;
  }
  .menu-toggle i {
    font-size: 20px;
  }
  .navbar-nav {
    padding-top: 80px;
  }
}
@media (max-width: 992px) {
  .hero-content h1.hero-title {
    font-size: 42px;
    width: 100%;
    margin-bottom: 30px;
  }
  .hero-arrow {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .hero-arrow.hero-arrow-prev {
    left: 20px;
  }
  .hero-arrow.hero-arrow-next {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  .hero-slider {
    height: 100vh !important;
    width: 100%;
    flex-shrink: 0;
  }
  .hero-slide {
    width: 100%;
  }
  .hero-content {
    padding: 0 15px;
  }
  .hero-content h1.hero-title {
    font-size: 33px !important;
    width: 327px !important;
  }
  .hero-content .btn-find-rooms {
    padding: 10px;
    font-size: 8px !important;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .hero-arrow.hero-arrow-prev,
  .hero-arrow.hero-arrow-next {
    display: none;
  }
  .dropdown-menu .dropdown-item:hover {
    color: red;
  }
  .nav-link:hover {
    color: red !important;
  }
}
@media (max-width: 992px) {
  .booking-form-container {
    flex-direction: column;
    width: auto;
  }
  .booking-form {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .booking-form-container {
    display: flex;
    position: static !important;
    bottom: auto !important;
    width: 100%;
    align-items: center;
    height: auto;
    margin-top: 0;
    padding: 20px 0;
    background-color: rgba(245, 241, 235, 0.95);
    border-top: 1px solid rgba(139, 111, 71, 0.1);
  }
  .booking-form {
    padding: 20px 15px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .booking-form label {
    font-size: 12px;
    display: flex;
    justify-content: center;
  }
  .booking-form .form-group input[type=text] {
    font-size: 16px;
  }
  .counter-control {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .accommodation-section {
    padding: 80px 0;
  }
  .accommodation-section .section-title {
    font-size: 42px;
  }
  .accommodation-section .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .accommodation-section {
    padding: 60px 0;
  }
  .accommodation-section .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .accommodation-section .rooms-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .room-card {
    height: auto;
    max-width: 500px;
    margin: 0 auto;
  }
  .room-card .room-image {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .section-header .section-title {
    font-size: auto;
  }
  .accommodation-section {
    height: 100%;
    width: 100%;
  }
  .rooms-grid {
    margin: 0 0 !important;
  }
  .room-card .room-image {
    width: 100%;
    height: 100%;
  }
  .room-card .room-body .room-title {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .intro-container {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 15px;
  }
  .intro-left {
    max-width: 100%;
  }
  .intro-title {
    font-size: 46px;
  }
  .intro-center {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .intro-section {
    padding: 80px 0;
  }
  .intro-container {
    grid-template-columns: 1fr;
    height: auto;
    gap: 30px;
  }
  .intro-left {
    margin-top: 0;
    order: 1;
  }
  .intro-center .intro-photo.primary {
    position: relative;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: 500px;
    background-attachment: scroll;
  }
  .intro-right {
    order: 3;
    display: flex;
    justify-content: center;
  }
  .intro-photo.secondary {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 500px;
  }
  .intro-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .intro-section {
    padding: 60px 0;
  }
  .intro-title {
    font-size: 32px;
  }
  .intro-copy {
    font-size: 15px;
  }
  .intro-reservation-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .intro-reservation-text .label {
    font-size: 24px;
  }
  .intro-center .intro-photo.primary,
  .intro-photo.secondary {
    max-width: 100%;
    height: 400px;
  }
  .intro-center {
    display: none !important;
  }
  .intro-photo.secondary {
    height: 500px !important;
  }
  .intro-reservation {
    display: flex !important;
  }
}
@media (max-width: 576px) {
  .intro-title {
    font-size: 26px;
  }
  .intro-copy {
    font-size: 14px;
    line-height: 1.7;
  }
  .intro-reservation {
    gap: 15px;
  }
  .intro-reservation-text .label,
  .intro-reservation-text .phone {
    padding-left: 0;
  }
  .intro-center .intro-photo.primary,
  .intro-photo.secondary {
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .facilities-section {
    padding: 90px 0;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    justify-items: center;
  }
  .facility-card {
    width: 100% !important;
    height: 100% !important;
  }
  .facilities-section .facilities-grid .facility-card:nth-child(2),
  .facilities-section .facilities-grid .facility-card:nth-child(5) {
    margin-top: 0px !important;
  }
}
@media (max-width: 992px) {
  .facilities-section {
    padding: 70px 0;
  }
  .facilities-header {
    flex-direction: column;
  }
  .facilities-title {
    font-size: 42px;
  }
  .facilities-desc {
    padding: 0;
    margin-top: 20px;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .facility-card {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .facilities-title {
    font-size: 36px;
  }
  .facilities-card {
    width: 700px !important;
    height: 700px !important;
  }
  .facility-card img {
    width: 100% !important;
    height: 100% !important;
  }
  .facilities-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 576px) {
  .facilities-title {
    font-size: 42px;
  }
  .facilities-desc {
    font-size: 16px;
  }
  .facilities-overlay .facility-caption {
    font-size: 22px;
  }
  .facilities-overlay .facility-desc {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .testimonial-section .testimonial-content {
    padding: 15vh 20px;
  }
  .testimonial-section .testimonial-quote {
    font-size: 30px;
  }
  .testimonial-section .testimonial-quote-mark {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .testimonial-section .testimonial-mask {
    min-height: 500px;
  }
  .testimonial-section .testimonial-content {
    padding: 10vh 15px;
  }
  .testimonial-section .testimonial-quote {
    font-size: 24px;
    margin: 12px 0 20px;
  }
  .testimonial-section .testimonial-quote-mark {
    font-size: 50px;
  }
  .change-text-btn {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .testimonial-section .testimonial-quote {
    font-size: 20px;
  }
  .testimonial-section .testimonial-quote-mark {
    font-size: 40px;
  }
  .change-text-btn {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .map-section {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0 !important;
  }
  .map-grid {
    padding: 0px 5px 0 5px;
  }
  .contact-info-box {
    width: 50%;
  }
  .footer-cl {
    margin: 0 auto;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .map-section {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0 !important;
  }
  .map-grid {
    display: flex;
    flex-direction: column;
  }
  .contact-info-box {
    width: 100%;
    position: relative;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
  }
  .map-container {
    width: 100%;
    margin-top: 350px !important;
  }
  .footer-cl {
    margin: 0 auto;
    width: 200px;
  }
}
@media (max-width: 1200px) {
  .footer-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px;
    text-align: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-cl {
    align-items: center;
  }
  .footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .footer-link {
    font-size: 14px;
  }
  .footer-logo h3 {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .hero-section-page {
    min-height: 600px;
    height: auto;
  }
  .hero-section-page .hero-background-page {
    height: 100%;
  }
  .intro-section-detail {
    padding: 80px 0;
  }
  .intro-container-detail {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }
  .intro-left-detail,
  .intro-right-detail {
    width: 100%;
  }
  .intro-right-detail {
    height: auto;
  }
  .intro-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .form-group-detail {
    flex-direction: column;
    gap: 15px;
  }
  .form-group-half {
    width: 100%;
  }
  .form-control-detail {
    width: 100%;
  }
  .intro-right-detail {
    padding: 30px 24px 40px;
  }
  .booking-form-detail {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .hero-section-page {
    min-height: 480px;
  }
  .intro-container-detail {
    padding: 0 20px;
  }
  .intro-title-detail {
    font-size: 36px;
    line-height: 1.2;
  }
  .intro-stars-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .intro-details {
    grid-template-columns: 1fr;
  }
  .extra-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .total-cost {
    flex-direction: column;
    gap: 8px;
  }
  .facilities-grid-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
  }
  .facilities-grid-detail .facility-card-detail {
    width: 100% !important;
    height: 320px;
  }
}
@media (max-width: 576px) {
  .hero-section-page {
    min-height: 420px;
  }
  .intro-section-detail {
    padding: 50px 0;
  }
  .intro-title-detail {
    font-size: 30px;
  }
  .intro-stars-detail span {
    font-size: 14px;
  }
  .counter-control-detail {
    justify-content: space-between;
  }
  .facilities-heading-detail h3 {
    font-size: 32px;
  }
  .facilities-grid-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .facilities-grid-detail .facility-card-detail {
    height: 250px;
  }
  .facilities-grid-detail .facility-card-detail img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=main.css.map */