@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  background-color: #242830;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --primary-color: #CA984A;
  --dark-color: #242830;
  --text-color: #7a7a7a;
  --white: #ffffff;
}

body {
  font-family: "EB Garamond", sans-serif;
}

.navbar {
  position: fixed;
  left: 0px;
  right: 0px;
  background: #242830;
  backdrop-filter: blur(12px);
  padding: 10px 0;
  z-index: 999;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
}

.navbar.shadow {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 35px;
}

.navbar-brand img {
  max-width: 100px;
  height: auto;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  padding: 10px 0;
}

.dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 12px;
  margin-top: 18px;
  background: #242830;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 15px 45px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  color: var(--white);
  row-gap: 10px;
  column-gap: 10px;
}

.dropdown-item img {
  width: 25px;
  height: 25px;
}

.dropdown-item:hover {
  background: rgba(176,141,87,.12);
  color: var(--primary-color);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(176, 141, 87, 0.12);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: rgb(255, 255, 255) !important;
  padding: 14px 38px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  box-shadow: rgba(202, 152, 74, 0.25) 0px 12px 30px;
}

.book-btn:hover {
  background: transparent;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: rgba(202, 152, 74, 0.35) 0px 15px 35px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 28px;
  height: 28px;
}

.home-carousel {
  position: relative;
}

.home-carousel .carousel-item {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.home-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1) saturate(0.85) sepia(0.08);
}

.home-carousel .carousel-caption {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  max-width: 90%;
  text-align: center;
  z-index: 3;
}

.home-carousel .carousel-caption p {
  color: var(--primary-color);
  font-family: "EB Garamond", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.home-carousel .carousel-caption h6 {
  color: var(--white);
  font-family: "Plus Jacarta", serif;
  font-size: 72px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.home-carousel .book-btn {
  padding: 16px 42px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  background-size: 22px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--primary-color);
}

.about-section {
  background: #242830;
  color: rgb(255, 255, 255);
  overflow: hidden;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
  overflow-x: hidden;
  overflow-y: hidden;
}

.about-images {
  position: relative;
  min-height: 620px;
}

.about-img-main {
  width: 85%;
  height: 560px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 60px;
  filter: brightness(0.82) contrast(1.05);
}

.about-img-small {
  position: absolute;
  right: 0px;
  bottom: 35px;
  width: 48%;
  height: 270px;
  object-fit: cover;
  border-radius: 18px;
  border: 8px solid #242830;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 20px 45px;
  filter: brightness(0.88);
}

.about-images img:hover {
  transform: translateY(-8px);
}

.section-heading span {
  font-family: Outfit, sans-serif;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--white);
}

.about-section p {
  font-family: Outfit, sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-section .book-btn {
  margin-top: 10px;
  font-family: Outfit, sans-serif;
}

.section-heading span::after {
  content: "";
  display: inline-block;
  width: 55px;
  height: 2px;
  background: var(--primary-color);
  margin-left: 14px;
  vertical-align: middle;
}

.facilities-section {
  background: #1F2229;
  color: var(--white);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(31, 34, 41);
}

.facilities-section .section-heading span {
  font-family: Outfit, sans-serif;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 15px;
}

.facilities-section .section-heading h2 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.facilities-section .section-heading p {
  max-width: 650px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
}

.facility-card {
  background: #242830;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(202,152,74,.08);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
}

.facility-card:hover {
  transform: translateY(-10px);
  border-color: rgba(202,152,74,.4);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 20px 45px;
}

.facility-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: rgba(202,152,74,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(202, 152, 74, 0.12);
}

.facility-card:hover .facility-icon {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
  transform: rotate(8deg);
}

.facility-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
}

.facility-card p {
  font-family: Outfit, sans-serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.rooms-section {
  background: #242830;
  padding: 70px 0;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
}

.rooms-section .section-heading span {
  font-family: Outfit, sans-serif;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.rooms-section .section-heading h2 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.rooms-section .section-heading p {
  font-family: Outfit, sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
}

.room-card {
  background: #1F2229;
  overflow: hidden;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 50px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(31, 34, 41);
  overflow-x: hidden;
  overflow-y: hidden;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-image {
  position: relative;
  overflow: hidden;
  height: 260px;
  overflow-x: hidden;
  overflow-y: hidden;
}

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

.room-card:hover .room-image img {
  transform: scale(1.03);
}

.room-content {
  padding: 35px 30px;
}

.room-content h4 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
}

.room-content p {
  font-family: Outfit, sans-serif;
  color: rgb(109, 114, 123);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 30px;
}

.room-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  row-gap: 25px;
  column-gap: 25px;
  padding-top: 25px;
  padding-right: 0px;
  padding-bottom: 25px;
  padding-left: 0px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(202, 152, 74, 0.25);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(202, 152, 74, 0.25);
}

.room-info span {
  color: rgb(85, 85, 85);
  font-size: 14px;
  position: relative;
  font-family: Outfit, sans-serif;
  font-weight: 500;
}

.room-info span:not(:last-child)::after {
  content: "•";
  color: rgba(255, 255, 255, 0.4);
  margin-left: 10px;
}

.room-content .book-btn {
  padding: 12px 28px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  margin-top: 25px;
}

.rooms-carousel .owl-stage {
  display: flex;
}

.rooms-carousel .owl-item {
  display: flex;
}

.rooms-carousel .item {
  width: 100%;
}

.rooms-carousel .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.rooms-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.3) !important;
  display: block;
  border-radius: 50%;
  margin: 5px;
  background-image: initial !important;
  background-position-x: initial !important;
  background-position-y: initial !important;
  background-size: initial !important;
  background-repeat: initial !important;
  background-attachment: initial !important;
  background-origin: initial !important;
  background-clip: initial !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.rooms-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 10px;
}

.section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.section-btn .book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: rgb(255, 255, 255) !important;
  padding: 14px 38px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  box-shadow: rgba(202, 152, 74, 0.25) 0px 12px 30px;
}

.section-btn .book-btn:hover {
  background: transparent;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: rgba(202, 152, 74, 0.35) 0px 15px 35px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.testimonial-section {
  background: #1F2229;
  padding: 90px 0;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(31, 34, 41);
}

.testimonial-card {
  background: #242830;
  padding: 50px 35px 35px;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(202,152,74,.15);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
  overflow-x: hidden;
  overflow-y: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202,152,74,.5);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 50px;
}

.testimonial-stamp {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: rgb(36, 40, 48);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: rgba(202, 152, 74, 0.25) 0px 15px 30px;
}

.testimonial-stamp i {
  line-height: 1;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.9;
  margin: 0 auto 30px;
  max-width: 420px;
}

.testimonial-author h5 {
  color: rgb(255, 255, 255);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-author span {
  color: var(--primary-color);
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.testimonial-carousel .item {
  padding: 15px;
}

.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-carousel .owl-item .item {
  width: 100%;
}

.testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 35px;
}

.testimonial-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.25);
  display: block;
  border-radius: 50%;
  margin: 5px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.25);
}

.testimonial-carousel .owl-dot.active span {
  width: 35px;
  border-radius: 20px;
  background: var(--primary-color);
}

.home-gallery {
  background: #242830;
  padding: 90px 0;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 40, 48);
}

.home-gallery .section-heading span {
  color: var(--primary-color);
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-gallery .section-heading h2 {
  color: rgb(255, 255, 255);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  margin: 15px 0;
}

.home-gallery .section-heading p {
  color: rgba(255, 255, 255, 0.65);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  max-width: 650px;
  margin: auto;
}

.home-gallery .gallery-card {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  filter: brightness(0.9);
}

.home-gallery .gallery-carousel .item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.home-gallery .gallery-carousel .item:hover .gallery-card {
  transform: scale(1.08);
  filter: brightness(0.75);
}

.home-gallery .gallery-carousel .item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(202,152,74,.5);
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.home-gallery .gallery-carousel .item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.home-gallery .gallery-carousel .owl-stage {
  display: flex;
}

.home-gallery .gallery-carousel .owl-item {
  display: flex;
}

.home-gallery .gallery-carousel .owl-item .item {
  width: 100%;
}

.home-gallery .gallery-carousel .owl-dots {
  text-align: center;
  margin-top: 35px;
}

.home-gallery .gallery-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.25);
  display: block;
  border-radius: 50%;
  margin: 5px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.25);
}

.home-gallery .gallery-carousel .owl-dot.active span {
  width: 35px;
  border-radius: 20px;
  background: var(--primary-color);
}

.home-gallery .section-btn {
  text-align: center;
  margin-top: 45px;
}

.cover {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.cover img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1) saturate(0.85);
  position: relative;
}

.cover-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.cover-title {
  color: rgb(255, 255, 255);
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: capitalize;
  text-shadow: rgba(0, 0, 0, 0.45) 0px 8px 25px;
  position: relative;
}

.cover-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--primary-color);
  margin: 25px auto 0;
}

.footer {
  background: #1c2028;
  color: rgb(199, 204, 211);
  padding: 80px 0 10px;
  overflow: hidden;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(28, 32, 40);
  overflow-x: hidden;
  overflow-y: hidden;
}

.footer .row {
  align-items: flex-start;
}

.footer .row > div {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  background: #242933;
  height: 100%;
  padding: 50px 35px;
  text-align: center;
  border-top: 3px solid var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 20px 45px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(36, 41, 51);
}

.footer-logo {
  width: 110px;
  margin: 0 auto 25px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.65);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 30px;
}

.footer-title {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

.footer-title::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: var(--primary-color);
  margin: 12px auto 0;
}

.footer-link {
  color: rgb(199, 204, 211);
  text-decoration: none;
  font-family: Outfit, sans-serif;
  font-size: 15px;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  row-gap: 12px;
  column-gap: 12px;
}

.footer-list i {
  color: var(--primary-color);
  margin-top: 5px;
  min-width: 18px;
}

.footer .col-lg-2 .footer-list {
  text-align: center;
}

.footer .col-lg-2 .footer-list a {
  display: block;
  margin-bottom: 12px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  row-gap: 12px;
  column-gap: 12px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(202,152,74,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.footer-socials a:hover {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
  transform: translateY(-5px);
}

.footer iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 12px;
  filter: saturate(0.8);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(202,152,74,.35);
  margin: 45px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 15px;
  column-gap: 15px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: Outfit, sans-serif;
  font-size: 14px;
}

.powered img {
  width: 100px;
  height: auto;
  opacity: 0.8;
}

.powered img:hover {
  opacity: 1;
}

.top-cover {
  margin: 0px;
  padding: 0px;
  position: relative;
}

.top-cover-img {
  height: 50vh;
  width: 100% !important;
  filter: brightness(0.5);
  object-fit: cover;
  position: relative;
}

.top-cover .container {
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  row-gap: clamp(20px, 4vw, 50px);
  column-gap: clamp(20px, 4vw, 50px);
}

.top-cover-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  font-size: 1rem;
}

.breadcrumb-item a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: rgb(255, 193, 7);
}

.breadcrumb-item.active {
  color: rgb(255, 193, 7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgb(255, 255, 255);
}

.room-section {
  background: #f8f6f1;
  padding: 100px 0;
  overflow: hidden;
}

.room-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-family: "Outfit",sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.room-subtitle::before,
.room-subtitle::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--primary-color);
  margin: 0 15px;
  vertical-align: middle;
}

.room-title {
  color: #242830;
  font-family: "Playfair Display",serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 600;
}

.room-section .row.align-items-center {
  background: #fff;
  overflow: hidden;
  margin-bottom: 70px !important;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 25px 70px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
  overflow-y: hidden;
}

.room-section .row.align-items-center:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.14) 0px 35px 90px;
}

.room-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.col-lg-6:has(.room-img) {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.room-section .row:hover .room-img {
  transform: scale(1.05);
}

.room-content {
  padding: 55px;
}

.room-content h3 {
  color: rgb(36, 40, 48);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.room-content h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  margin-top: 15px;
}

.room-content p {
  color: #6d727b;
  font-family: "Outfit",sans-serif;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.room-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px solid rgba(202,152,74,.25);
  border-bottom: 1px solid rgba(202,152,74,.25);
}

.room-info div {
  min-width: 75px;
  text-align: center;
}

.room-info h5 {
  margin: 0 0 8px;
}

.room-info i {
  color: var(--primary-color);
  font-size: 23px;
}

.room-info div:hover i {
  transform: translateY(-5px);
}

.room-info span {
  color: #555;
  font-family: "Outfit",sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.room-content .book-btn {
  margin-top: 25px;
}

.gallery-section {
  background: #faf8f4;
  padding: 100px 0;
}

.gallery-section .room-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gallery-section .room-subtitle::before,
.gallery-section .room-subtitle::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 1px;
  background: var(--primary-color);
  vertical-align: middle;
  margin: 0 12px;
}

.gallery-section .room-title {
  color: var(--dark-color);
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
}

.gallery-section .row.g-4 {
  margin-top: 20px;
}

.gallery-section .col-lg-4 {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.gallery-section a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 350px;
  background: var(--dark-color);
  overflow-x: hidden;
  overflow-y: hidden;
}

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

.gallery-section a::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(202,152,74,.8);
  transform: scale(0.85);
  opacity: 0;
  z-index: 2;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.gallery-section a:hover .gallery-img {
  transform: scale(1.12);
}

.gallery-section a:hover::before {
  opacity: 1;
}

.gallery-section a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.contact-section {
  background: #faf8f4;
  padding: 100px 0;
}

.contact-box {
  background: var(--white);
  padding: 50px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(36,40,48,.08);
}

.contact-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.contact-box p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 35px;
}

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

.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--dark-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item:hover .contact-icon {
  background: var(--primary-color);
  color: var(--white);
}

.contact-item h5 {
  margin-bottom: 6px;
  color: var(--dark-color);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item a,
.contact-item span {
  color: var(--text-color);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-map {
  height: 100%;
  min-height: 550px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(36,40,48,.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  filter: grayscale(20%);
}

html, body {
  width: 100%;
  height: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  background-color: rgb(36, 40, 48);
  overflow-x: hidden !important;
}

.carousel-control-prev {
  width: 70px;
  opacity: 1;
}

.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.carousel-control-prev-icon {
  width: 55px;
  height: 55px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  background-size: 22px auto;
}

.carousel-control-next-icon {
  width: 55px;
  height: 55px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  background-size: 22px auto;
}

.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}

.carousel-control-next-icon:hover {
  background-color: var(--primary-color);
}

.gallery-section .room-subtitle::before, .gallery-section .room-subtitle::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 1px;
  vertical-align: middle;
  margin-top: 0px;
  margin-right: 12px;
  margin-bottom: 0px;
  margin-left: 12px;
}

.contact-item a, .contact-item span {
  color: var(--text-color);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

@media (max-width: 991px) {
  .d-lg-flex {
    justify-content: center;
    width: 100%;
  }
  .book-btn {
    display: inline-flex;
    width: auto;
    max-width: fit-content;
    padding: 14px 38px;
  }
  .navbar {
    padding: 10px 0;
  }
  .navbar-brand img {
    width: 90px;
  }
  .navbar-toggler {
    border: 1px solid rgba(202,152,74,.5);
    padding: 7px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler-icon {
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(202,152,74,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-collapse {
    background: #242830;
    margin-top: 20px;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 20px 50px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(36, 40, 48);
  }
  .navbar-nav {
    width: 100%;
    gap: 0 !important;
    align-items: center;
    row-gap: 0px !important;
    column-gap: 0px !important;
  }
  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }
  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 15px;
    color: rgb(255, 255, 255);
  }
  .navbar-nav .nav-link:hover {
    color: rgb(202, 152, 74);
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 8px 0 0;
    background: rgba(255,255,255,.05);
    border-radius: 12px;
    box-shadow: none;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(255, 255, 255, 0.05);
  }
  .dropdown-item {
    justify-content: center;
    color: rgb(255, 255, 255);
    padding: 10px;
  }
  .dropdown-item:hover {
    background: rgba(202,152,74,.15);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(202, 152, 74, 0.15);
  }
  .navbar-collapse .d-lg-flex {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 25px;
  }
  .navbar-collapse .book-btn {
    display: inline-flex;
    width: auto;
    max-width: max-content;
    margin: auto;
    padding: 13px 35px;
  }
  .home-carousel .carousel-item {
    height: 70vh;
    min-height: 550px;
  }
  .home-carousel .carousel-caption h6 {
    font-size: 52px;
  }
  .home-carousel .carousel-caption p {
    font-size: 13px;
  }
  .contact-map, .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .d-lg-flex {
    justify-content: center;
    width: 100%;
  }
  .book-btn {
    display: inline-flex;
    width: auto;
    padding: 12px 32px;
    font-size: 14px;
  }
  .top-cover {
    height: 250px;
  }
  .top-cover-title {
    font-size: 1.8rem;
  }
  .navbar-collapse {
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
    margin-top: 15px;
  }
  .navbar-collapse .book-btn {
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-size: 13px;
  }
}

@media (max-width:576px) {
  .navbar {
    padding: 10px 0;
  }
  .navbar-brand img {
    width: 90px;
  }
  .navbar-collapse {
    padding: 20px 15px;
    margin-top: 15px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
  }
  .dropdown-item {
    font-size: 13px;
  }
  .navbar-collapse .book-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  .home-carousel .carousel-item {
    height: 55vh;
    min-height: 480px;
  }
  .home-carousel .carousel-caption h6 {
    font-size: 34px;
  }
  .home-carousel .carousel-caption p {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .home-carousel .book-btn {
    padding: 12px 30px;
  }
  .about-section {
    text-align: center;
  }
  .about-images {
    min-height: 420px;
  }
  .about-img-main {
    width: 90%;
    height: 380px;
  }
  .about-img-small {
    width: 48%;
    height: 170px;
    bottom: 20px;
  }
  .section-heading span {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .section-heading h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .about-section p {
    font-size: 15px;
    line-height: 1.8;
  }
  .facilities-section .section-heading h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .facilities-section .section-heading span {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .facilities-section .section-heading p {
    font-size: 15px;
    line-height: 1.8;
  }
  .facility-card {
    padding: 35px 25px;
    border-radius: 18px;
  }
  .facility-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
    margin-bottom: 22px;
  }
  .facility-card h4 {
    font-size: 1.25rem;
  }
  .facility-card p {
    font-size: 15px;
    line-height: 1.7;
  }
  .rooms-section {
    padding: 50px 0;
  }
  .rooms-section .section-heading span {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .rooms-section .section-heading h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .rooms-section .section-heading p {
    font-size: 15px;
    line-height: 1.8;
  }
  .room-image {
    height: 210px;
  }
  .room-content {
    padding: 25px 22px;
  }
  .room-content h4 {
    font-size: 21px;
  }
  .room-content p {
    font-size: 14px;
  }
  .room-info {
    gap: 8px;
    margin-bottom: 25px;
  }
  .room-info span {
    font-size: 13px;
  }
  .room-content .book-btn {
    padding: 11px 24px;
    font-size: 13px;
  }
  .testimonial-section {
    padding: 50px 0;
  }
  .testimonial-card {
    min-height: 260px;
    padding: 35px 20px 25px;
  }
  .testimonial-stamp {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  .testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
  }
  .testimonial-author h5 {
    font-size: 18px;
  }
  .testimonial-author span {
    font-size: 13px;
  }
  .testimonial-carousel .item {
    padding: 10px;
  }
  .home-gallery {
    padding: 55px 0;
  }
  .home-gallery .section-heading h2 {
    font-size: 30px;
  }
  .home-gallery .section-heading p {
    font-size: 14px;
  }
  .home-gallery .gallery-card {
    height: 260px;
    border-radius: 14px;
  }
  .home-gallery .gallery-carousel .item {
    border-radius: 14px;
  }
  .home-gallery .gallery-carousel .item::after {
    inset: 8px;
  }
  .cover {
    height: 35vh;
    min-height: 260px;
  }
  .cover-title {
    font-size: 2.2rem;
  }
  .cover-title::after {
    width: 50px;
    margin-top: 18px;
  }
  .footer {
    padding: 50px 0 15px;
  }
  .footer-logo {
    width: 95px;
  }
  .footer-description {
    font-size: 14px;
  }
  .footer-title {
    font-size: 18px;
  }
  .footer-list li {
    font-size: 14px;
  }
  .footer iframe {
    height: 220px;
  }
  .footer-socials a {
    width: 40px;
    height: 40px;
  }
  .gallery-section .room-title {
    font-size: 30px;
  }
  .gallery-section a {
    height: 260px;
  }
  .gallery-section a::after {
    inset: 15px;
  }
  .contact-box h3 {
    font-size: 26px;
  }
  .contact-box {
    padding: 25px;
  }
}

@media (max-width:360px) {
  .navbar-brand img {
    width: 100px;
  }
  .navbar-collapse {
    padding: 15px 10px;
  }
  .navbar-nav .nav-link {
    font-size: 13px;
  }
  .navbar-collapse .book-btn {
    padding: 10px 24px;
  }
}

@media (max-width:375px) {
  .home-carousel .carousel-item {
    height: 45vh;
    min-height: 430px;
  }
  .home-carousel .carousel-caption h6 {
    font-size: 28px;
  }
  .home-carousel .carousel-caption p {
    font-size: 10px;
  }
  .about-images {
    min-height: 380px;
  }
  .about-img-main {
    height: 340px;
  }
  .about-img-small {
    height: 145px;
  }
  .section-heading h2 {
    font-size: 1.8rem;
  }
  .rooms-section .section-heading h2 {
    font-size: 25px;
  }
  .room-image {
    height: 190px;
  }
  .room-content {
    padding: 22px 18px;
  }
}

@media (max-width:991px) {
  .about-images {
    min-height: 520px;
  }
  .about-img-main {
    height: 480px;
  }
  .about-img-small {
    height: 220px;
  }
  .section-heading h2 {
    font-size: 2.6rem;
  }
  .about-section p {
    font-size: 16px;
  }
  .facilities-section .section-heading h2 {
    font-size: 2.6rem;
  }
  .facilities-section .section-heading p {
    font-size: 16px;
  }
  .facility-card {
    padding: 40px 30px;
  }
  .facility-icon {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .facility-card h4 {
    font-size: 1.35rem;
  }
  .rooms-section {
    padding: 60px 0;
  }
  .rooms-section .section-heading h2 {
    font-size: 34px;
  }
  .rooms-section .section-heading p {
    font-size: 16px;
  }
  .room-image {
    height: 230px;
  }
  .room-content {
    padding: 30px 25px;
  }
  .room-content h4 {
    font-size: 22px;
  }
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-card {
    min-height: 280px;
    padding: 45px 30px 30px;
  }
  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
  }
  .testimonial-author h5 {
    font-size: 20px;
  }
  .home-gallery {
    padding: 70px 0;
  }
  .home-gallery .section-heading h2 {
    font-size: 36px;
  }
  .home-gallery .gallery-card {
    height: 300px;
  }
  .cover {
    height: 45vh;
  }
  .cover-title {
    font-size: 3rem;
  }
  .footer {
    padding: 65px 0 10px;
  }
  .footer-brand {
    padding: 40px 30px;
  }
  .footer-title {
    margin-top: 25px;
  }
  .footer iframe {
    height: 230px;
  }
  .room-title {
    font-size: 38px;
  }
  .room-img {
    height: 380px;
  }
  .room-content {
    padding: 40px;
  }
  .room-content h3 {
    font-size: 28px;
  }
  .gallery-section {
    padding: 80px 0;
  }
  .gallery-section .room-title {
    font-size: 38px;
  }
  .gallery-section a {
    height: 300px;
  }
  .contact-box {
    padding: 35px;
  }
  .contact-map,
    .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width:768px) {
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-card {
    padding: 40px 25px 30px;
  }
  .testimonial-stamp {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-bottom: 20px;
  }
  .testimonial-card p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .gallery-card {
    height: 280px;
  }
  .footer .row {
    text-align: center;
  }
  .footer-list li {
    justify-content: center;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top-cover {
    height: 300px;
  }
  .top-cover-title {
    font-size: 2.2rem;
  }
  .breadcrumb-item {
    font-size: 0.9rem;
  }
  .gallery-card {
    height: 280px;
  }
}

@media (max-width:767px) {
  .room-section {
    padding: 70px 0;
  }
  .room-title {
    font-size: 30px;
  }
  .room-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .room-subtitle::before,
    .room-subtitle::after {
    width: 25px;
    margin: 0 8px;
  }
  .room-img {
    height: 300px;
  }
  .room-content {
    padding: 30px 25px;
  }
  .room-content h3 {
    font-size: 25px;
  }
  .room-content p {
    font-size: 15px;
    line-height: 1.8;
  }
  .room-info {
    gap: 18px;
    justify-content: center;
  }
  .room-info div {
    min-width: 65px;
  }
}

@media (max-width:480px) {
  .room-title {
    font-size: 26px;
  }
  .room-img {
    height: 260px;
  }
  .room-content {
    padding: 25px 20px;
  }
  .room-info {
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .navbar-collapse {
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
  }
  .navbar-collapse .book-btn {
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
  }
}

.cropped-image {
  object-fit: cover !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
}

.cropped-image-parent,
*:has(.cropped-image) {
  overflow: hidden !important;
  position: relative !important;
}