@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cookie&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
body {
  margin: 0px;
  padding: 0px;
}

.main-header {
  display: block;
}

.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .main-header {
    display: none;
  }
  .mobile-header {
    display: block;
  }
}
/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}
.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s;
}
.lightbox .lightbox-close:hover {
  color: #c1035b;
}
.lightbox .lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transition: color 0.3s;
}
.lightbox .lightbox-arrow.left {
  left: 40px;
}
.lightbox .lightbox-arrow.right {
  right: 40px;
}
.lightbox .lightbox-arrow:hover {
  color: #c1035b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-header {
  background: #260017;
  font-family: "Oswald", Arial, sans-serif;
  color: #d9bfcf;
  position: sticky;
  top: 0px;
  z-index: 99;
}
.main-header .header-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}
.main-header .header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.main-header .header-second-row {
  display: flex;
}
.main-header .header-left {
  width: 50%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 25px;
}
.main-header .header-left .logo {
  width: 290px;
  height: 70px;
  background: transparent;
  margin-right: 18px;
  border-radius: 6px;
}
.main-header .header-left .logo img {
  width: 100%;
}
.main-header .header-left .hotel-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -10px;
}
.main-header .header-left .hotel-title .hotel-name {
  font-size: 3.2rem;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.main-header .header-left .hotel-title .hotel-desc {
  font-size: 12px;
  color: #c79fb7;
  margin-top: 0.2rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.04em;
  font-weight: 100;
}
.main-header .header-right {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}
.main-header .header-right .social-icon {
  color: #9e9e9e;
  font-size: 1rem;
  margin-right: 32px;
  transition: color 0.2s;
}
.main-header .header-right .social-icon:hover {
  color: #e91e63;
}
.main-header .main-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
  padding-bottom: 10px;
  width: 50%;
}
.main-header .main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: flex-end;
  color: #e8cfde;
}
.main-header .main-nav li a {
  color: rgb(var(--txt, var(--color_15, color_15)));
  text-decoration: none;
  font-size: 12px;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.18s;
  padding: 2px 4px;
}
.main-header .main-nav li a:hover {
  color: white;
}

@media (max-width: 1200px) {
  .main-header .header-inner {
    padding: 0 16px;
  }
  .main-header .main-nav ul {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .main-header .header-row,
  .main-header .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-header .main-nav ul {
    gap: 16px;
    justify-content: flex-start;
  }
}
/* Mobile Header Styles */
.mobile-header {
  display: none;
}
@media (max-width: 768px) {
  .mobile-header {
    display: block;
    background-color: #3b0c2f;
    color: #fff;
    padding: 0.75rem 8px;
    position: relative;
    z-index: 1000;
  }
  .mobile-header .mobile-header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .mobile-header .mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-header .mobile-logo img {
    max-height: 70px;
  }
  .mobile-header .mobile-logo .hotel-subtitle {
    font-size: 0.8rem;
    color: #d38bbd;
    margin-top: 0.25rem;
    margin-left: 50px;
  }
  .mobile-header .mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ff0080;
  }
  .mobile-header .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff0080;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
  }
  .mobile-header .mobile-nav-overlay .mobile-menu-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
  }
  .mobile-header .mobile-nav-overlay .mobile-nav-list {
    list-style: none;
    font-family: nimbus-sans-tw01con, sans-serif;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 80px;
  }
  .mobile-header .mobile-nav-overlay .mobile-nav-list li {
    margin-bottom: 3rem;
  }
  .mobile-header .mobile-nav-overlay .mobile-nav-list li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 2px;
  }
  .mobile-header .mobile-nav-overlay .mobile-nav-list li a:hover {
    text-decoration: underline;
  }
  .mobile-header .mobile-nav-overlay.show {
    display: flex;
  }
}

.main-header {
  transition: all 0.3s ease;
}
.main-header.scrolled {
  opacity: 0.9;
}

.site-footer {
  background: #260017;
  text-align: center;
  padding: 54px 0 30px 0;
  color: #bfa5bc;
}
.site-footer .back-to-top {
  display: inline-block;
  margin-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
}
.site-footer .back-to-top .arrow-up {
  display: inline-block;
  width: 23px;
  height: 23px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
  margin-bottom: 10px;
  margin-top: 0;
}
.site-footer .back-to-top:hover .arrow-up {
  border-color: #e41e81;
  transition: border-color 0.2s;
}
.site-footer .footer-top-text {
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #A38297;
  margin-bottom: 18px;
}
.site-footer .footer-bottom-text {
  font-family: "Georgia", serif;
  font-size: 13px;
  color: #8A697C;
  margin-top: 8px;
}
.site-footer .footer-bottom-text a {
  color: #8A697C;
  text-decoration: underline;
}
.site-footer .footer-bottom-text a:hover {
  color: #e41e81;
}

@media (max-width: 600px) {
  .site-footer {
    height: 200px;
    padding: 32px 20px 18px 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .site-footer .footer-top-text {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 20px;
  }
  .site-footer .footer-bottom-text {
    font-size: 1.1rem;
    line-height: 2rem;
    width: 250px;
  }
  .site-footer .back-to-top .arrow-up {
    width: 28px;
    height: 28px;
  }
}
.hero-slider {
  background: #260017;
  display: flex;
  justify-content: center;
}
.hero-slider .swiper,
.hero-slider .swiper-slide {
  width: 1300px;
  max-width: 1600px;
  height: 550px;
  /* border-radius: 8px; */
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.17);
}
.hero-slider .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  position: relative;
}
.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(228, 30, 129, 0.34) 0%, rgba(39, 0, 26, 0.1) 60%, rgba(39, 0, 26, 0) 100%);
  pointer-events: none;
}
.hero-slider .hero-content {
  position: absolute;
  top: 0;
  right: 60px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
  text-align: right;
  min-width: 480px;
  max-width: 570px;
  padding-right: 18px;
}
.hero-slider .hero-title {
  font-family: "Cookie", cursive;
  font-size: 4.5rem;
  font-weight: 400;
  color: #fff;
  margin: 0px;
  line-height: 0.8;
  text-shadow: 0 2px 16px rgba(39, 0, 26, 0.1);
  margin-right: 70px;
}
.hero-slider .hero-desc {
  font-size: 20px;
  color: #fff;
  margin: 0px;
  text-align: left;
  font-weight: 100;
  margin-right: 30px;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(39, 0, 26, 0.18);
}
.hero-slider .hero-desc p {
  margin: 0px;
}
.hero-slider .hero-btn {
  display: inline-block;
  background: #e41e81;
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 2px;
  font-weight: 500;
  margin-right: 110px;
  letter-spacing: 0.04em;
  margin-top: 8px;
  box-shadow: 0 2px 8px 0 rgba(39, 0, 26, 0.14);
  transition: background 0.2s;
}
.hero-slider .hero-btn:hover {
  background: #be1567;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: #fff;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  opacity: 0.73;
  transition: color 0.2s, opacity 0.2s;
  z-index: 30;
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  color: #e41e81;
  opacity: 1;
}
.hero-slider .swiper-pagination {
  position: absolute;
  width: unset !important;
  bottom: 26px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 40;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  opacity: 1;
  transition: background 0.18s, box-shadow 0.16s;
  cursor: pointer;
  margin: 0 4px !important;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: 0 0 0 2px #e41e81;
}

@media (max-width: 1100px) {
  .hero-slider {
    padding: 0px;
  }
  .hero-slider .swiper,
  .hero-slider .swiper-slide {
    min-height: 440px;
    height: 440px;
  }
  .hero-slider .hero-content {
    min-width: 300px;
    padding-right: 6px;
  }
  .hero-slider .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 700px) {
  .hero-slider .swiper,
  .hero-slider .swiper-slide {
    width: 98vw;
    height: 500px;
    border-radius: 4px;
    min-height: unset;
  }
  .hero-slider .hero-content {
    min-width: unset;
    max-width: unset;
    left: 0;
    right: 0;
    top: auto;
    bottom: 50px; /* adjust as needed */
    padding: 0 20px;
    min-width: auto;
    max-width: 100%;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
  }
  .hero-slider .hero-title {
    font-size: 1.4rem;
    display: none;
  }
  .hero-slider .hero-desc {
    font-size: 1.4rem;
  }
  .hero-slider .hero-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
  }
  .hero-slider .swiper-pagination {
    gap: 8px;
    bottom: 8px !important;
  }
}
.location-info {
  background: #260017;
  color: #fff;
  padding: 10px 0 52px 0;
  text-align: center;
}
.location-info .location-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 30px;
}
.location-info .location-title {
  font-size: 2.1rem;
  font-weight: 400;
  margin-bottom: 42px;
  color: #e8cfde;
  letter-spacing: 0.01em;
}
.location-info .location-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.location-info .location-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  max-width: 175px;
  flex: 1 1 180px;
  margin: 0 6px;
}
.location-info .location-col .icon {
  margin-bottom: 16px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-info .location-col .icon img {
  width: 75px !important;
}
.location-info .location-col .train img {
  width: 45px !important;
}
.location-info .location-col .location-caption {
  font-size: 14px;
  color: #e41e81;
  margin-top: 2px;
  line-height: 1.3;
  font-weight: 400;
}

@media (max-width: 1000px) {
  .location-info .location-row {
    gap: 32px;
  }
  .location-info .location-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 700px) {
  .location-info .location-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 24px;
  }
  .location-info .location-col {
    min-width: unset;
    max-width: 320px;
    margin: 0 auto;
  }
}
.facility-section {
  background: rgb(81, 3, 51);
  padding: 56px 0 64px 0;
  color: #fff;
}
.facility-section .facility-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 40px;
}
.facility-section .facility-row {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.facility-section .facility-col {
  background: transparent;
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
}
.facility-section .facility-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #e8cfde;
  margin-bottom: 16px;
  position: relative;
}
.facility-section .facility-title span {
  position: relative;
  z-index: 2;
}
.facility-section .facility-title .facility-underline {
  height: 3px;
  width: 46px;
  background: #e41e81;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 38px;
  z-index: 1;
  margin-top: -50px;
}
.facility-section .facility-img {
  width: 100%;
  height: 330px;
  aspect-ratio: 4/3;
  background: #fff;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 10px;
}
.facility-section .facility-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-section .facility-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.facility-section .facility-desc {
  font-size: 12px;
  font-weight: 100;
  color: #e8cfde;
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}
.facility-section .facility-btn {
  background: #e41e81;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 2px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(39, 0, 26, 0.14);
  transition: background 0.2s;
  align-self: flex-end;
  margin-left: 8px;
  white-space: nowrap;
}
.facility-section .facility-btn:hover {
  background: #be1567;
}

@media (max-width: 1200px) {
  .facility-section .facility-row {
    gap: 16px;
  }
  .facility-section .facility-col {
    width: 92vw;
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .facility-section .facility-row {
    flex-direction: column;
    align-items: center;
  }
  .facility-section .facility-col {
    width: 90vw;
    max-width: 440px;
  }
  .facility-section .facility-inner {
    padding: 0 10px;
  }
  .facility-section .facility-inner .facility-title {
    font-size: 1.8rem;
    align-self: center;
    position: unset;
    margin-bottom: 25px;
  }
  .facility-section .facility-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center !important;
  }
  .facility-section .facility-btn {
    align-self: center;
    font-size: 16px;
    text-decoration: none;
    padding: 9px 16px;
  }
  .facility-section .facility-desc {
    text-align: center;
    font-size: 18px;
    padding: 3px;
  }
}
.facilities-section {
  position: relative;
  padding: 40px 0 80px 0;
  background: url(../images/Facilitiesbg.jpg);
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.facilities-section .facilities-overlay {
  position: absolute;
  inset: 0;
  background: rgba(54, 6, 39, 0.1);
  z-index: 1;
  pointer-events: none;
}
.facilities-section .facilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.facilities-section .facilities-title {
  font-size: 2.3rem;
  color: #e8cfde;
  font-weight: 400;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.facilities-section .facilities-underline {
  width: 70px;
  height: 3px;
  background: #e41e81;
  margin: 16px auto 0 auto;
  border-radius: 2px;
}
.facilities-section .facilities-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.facilities-section .facilities-col {
  flex: 1 1 280px;
  max-width: 320px;
  min-width: 240px;
  text-align: left;
  padding: 0 10px;
}
.facilities-section .facilities-col li {
  /* font-family: "Georgia", serif; */
  color: #e8cfde;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
  list-style: none;
  text-align: center;
}

@media (max-width: 900px) {
  .facilities-section {
    background: url(../images/Facilitiesbg-mobile.avif);
    background-repeat: no-repeat;
    background-attachment: scroll; /* better for mobile */
    background-size: cover;
  }
  .facilities-section .facilities-inner {
    padding: 0 10px;
  }
  .facilities-section .facilities-row {
    flex-direction: column;
    gap: 0px;
    align-items: center;
  }
  .facilities-section .facilities-col {
    max-width: 100vw;
    text-align: center;
    padding: 0;
    margin-top: -20px;
  }
  .facilities-section .facilities-title {
    font-size: 2rem;
  }
}
.rooms-hero {
  background: url("/assets/images/rooms/bg.jpg") no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  position: relative;
}
.rooms-hero .hero-overlay {
  background-color: rgba(114, 5, 58, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.rooms-hero .hero-overlay .container {
  margin: 0 auto;
  padding: 0 20px;
  width: 1110px;
}
.rooms-hero .hero-overlay .container h2 {
  font-family: nimbus-sans-tw01con, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}
.rooms-hero .hero-overlay .container h2 span {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #ff007e;
}
@media (max-width: 576px) {
  .rooms-hero .container {
    text-align: center;
  }
  .rooms-hero .container h2 {
    margin-bottom: 100px !important;
  }
  .rooms-hero .container h2 span {
    bottom: -20px !important;
    left: 50px !important;
  }
}

.rooms-section {
  position: relative;
  padding: 30px 0;
  background: #fff;
}
.rooms-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.rooms-section .rooms-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
.rooms-section .rooms-content .text-content {
  width: 550px;
  font-family: "EB Garamond", serif;
}
.rooms-section .rooms-content .text-content h3 {
  font-size: 30px;
  color: #56042c;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 100;
}
.rooms-section .rooms-content .text-content p {
  font-size: 18px;
  color: #56042c;
  line-height: 1.7em;
}
.rooms-section .rooms-content .image-content {
  flex: 1;
  position: absolute;
  left: 55%;
  top: -200px;
}
.rooms-section .rooms-content .image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .rooms-section {
    padding: 10px 0px;
  }
  .rooms-section .rooms-content img {
    display: none;
  }
  .rooms-section .rooms-content .text-content {
    padding: 0px 25px;
  }
  .rooms-section .container {
    padding: 0px;
  }
  .rooms-section .container h2 {
    margin-bottom: 100px;
  }
}

.amenities-box {
  background: #E0D5DC;
  padding: 20px 20px;
  margin-top: 60px;
  text-align: center;
  border-radius: 4px;
}
.amenities-box h4 {
  font-size: 24px;
  font-weight: 400;
  color: #56042c;
  margin-bottom: 30px;
  position: relative;
  font-family: avenir-lt-w01_35-light1475496, sans-serif;
  display: inline-block;
}
.amenities-box h4 span {
  display: block;
  width: 50px;
  height: 3px;
  background: #ff007e;
  margin: 8px auto 0;
}
.amenities-box .amenities-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-right: 75px;
  flex-wrap: wrap;
}
.amenities-box .amenities-list ul {
  list-style: none;
  padding: 0;
  margin: 0 20px;
}
.amenities-box .amenities-list ul li {
  font-size: 18px;
  color: #56042c;
  margin-bottom: 16px;
  font-family: "EB Garamond", serif;
}
@media (max-width: 576px) {
  .amenities-box {
    padding: 20px 0px;
  }
  .amenities-box .amenities-list {
    padding-right: 0px !important;
    gap: 0px;
  }
  .amenities-box .amenities-list li {
    font-size: 20px !important;
    margin-bottom: 25px !important;
  }
  .amenities-box h4 {
    font-size: 30px;
  }
  .amenities-box h4 span {
    background-color: transparent;
  }
}

.deluxe-rooms-section {
  padding: 30px 0;
  background: #fff;
}
.deluxe-rooms-section .room-heading {
  text-align: center;
  margin-bottom: 40px;
}
.deluxe-rooms-section .room-heading h2 {
  font-size: 42px;
  color: #56042c;
  font-family: avenir-lt-w01_35-light1475496, sans-serif;
  margin-bottom: 10px;
  font-weight: 100;
  position: relative;
  display: inline-block; /* Ensures underline is only as wide as the text */
}
.deluxe-rooms-section .room-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px; /* Distance between text and underline */
  width: 60px;
  height: 3px;
  background-color: #ff007e; /* Pink underline */
  border-radius: 2px;
}
.deluxe-rooms-section .room-heading .price {
  font-size: 18px;
  font-weight: 500;
  color: #80053d;
  font-family: eb garamond, serif;
}
.deluxe-rooms-section .room-heading .price span {
  padding: 0 10px;
  color: #56042c;
}
.deluxe-rooms-section .room-heading .note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  font-family: eb garamond, serif;
}
.deluxe-rooms-section .slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deluxe-rooms-section .slider-wrapper .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 24px;
  color: #c1035b;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.deluxe-rooms-section .slider-wrapper .slider-arrow:hover {
  background: #c1035b;
  color: white;
}
.deluxe-rooms-section .slider-wrapper .slider-arrow.left {
  left: 0;
}
.deluxe-rooms-section .slider-wrapper .slider-arrow.right {
  right: 0;
}
.deluxe-rooms-section .slider-wrapper .slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px 20px;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.deluxe-rooms-section .slider-wrapper .slider-track::-webkit-scrollbar {
  display: none;
}
.deluxe-rooms-section .slider-wrapper .slider-track img {
  width: 533px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
}
.deluxe-rooms-section br {
  display: none;
}
@media (max-width: 576px) {
  .deluxe-rooms-section {
    padding: 0px;
  }
  .deluxe-rooms-section br {
    display: block;
  }
  .deluxe-rooms-section .room-heading {
    padding: 0px 20px;
  }
  .deluxe-rooms-section .room-heading .price {
    font-size: 26px;
    line-height: 1.3em;
  }
  .deluxe-rooms-section .room-heading .note {
    font-size: 18px;
  }
  .deluxe-rooms-section .slider-wrapper .slider-track img {
    height: 250px;
    width: 100%;
  }
}

.conference-section {
  background-color: #fff;
}
.conference-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.conference-section .section-title {
  color: rgb(139, 0, 0);
  font-family: nimbus-sans-tw01con, sans-serif;
  font-size: 54px;
  font-weight: 100;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  width: fit-content;
  position: relative;
}
.conference-section .section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* 🔸 Set your desired border width */
  height: 4px; /* Thickness of the border */
  background-color: #e91e63; /* Pink */
}
.conference-section .conference-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.conference-section .conference-text {
  max-width: 400px;
  padding: 0px 16px;
}
.conference-section .conference-text h3 {
  font-size: 28px;
  color: #8B0000;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.conference-section .conference-text p {
  color: #8B0000;
  font-size: 18px;
  line-height: 1.6;
}
.conference-section .conference-image img {
  width: 100%;
  border-radius: 4px;
}
.conference-section .conference-footer {
  background-color: #fff6e9;
  margin-top: 60px;
  padding: 40px 20px;
}
.conference-section .conference-footer p {
  font-size: 24px;
  color: #57002F;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}
.conference-section .more-info {
  color: #57002F;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 576px) {
  .conference-section .section-title {
    font-size: 34px;
  }
  .conference-section .section-title::before {
    top: 70px;
  }
  .conference-section .container {
    padding: 0px;
  }
  .conference-section .container .conference-footer {
    margin-top: 0px;
  }
  .conference-section .conference-footer p {
    line-height: 1.5 !important;
  }
}

.contact-info {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-info p,
.contact-info a {
  font-family: avenir-lt-w01_35-light1475496, sans-serif;
  text-align: center;
  color: #8B0000;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.orchid-section {
  background-color: #fff;
  padding: 60px 0;
}
.orchid-section .flex-wrap {
  display: flex;
  gap: 15px;
}
.orchid-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.orchid-section .title {
  color: #8B0000;
  font-family: nimbus-sans-tw01con, sans-serif;
  font-size: 54px;
  font-weight: 100;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  width: fit-content;
  position: relative;
}
.orchid-section .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* 🔸 Set your desired border width */
  height: 4px; /* Thickness of the border */
  background-color: #e91e63; /* Pink */
}
.orchid-section .orchid-top {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: flex-start;
}
.orchid-section .orchid-description {
  width: 40%;
  justify-content: end;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.orchid-section .orchid-description .highlight {
  font-size: 28px;
  color: #57002F;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  width: 430px;
}
.orchid-section .orchid-description p {
  color: #57002F;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  width: 430px;
}
.orchid-section .orchid-description img {
  width: 405px;
  margin-bottom: 10px;
  height: 300px;
}
.orchid-section .orchid-img-large {
  width: 50%;
  text-align: center;
}
.orchid-section .orchid-img-large img {
  width: 100%;
  border-radius: 4px;
}
.orchid-section .orchid-img-large .caption {
  font-size: 28px;
  color: #57002F;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.orchid-section .orchid-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.orchid-section .orchid-gallery img {
  width: 100%;
  max-width: 360px;
  height: 300px;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .orchid-section .orchid-description {
    width: 100%;
  }
  .orchid-section .orchid-description img {
    width: 100%;
  }
  .orchid-section .orchid-description p {
    width: unset !important;
  }
  .orchid-section .orchid-gallery img {
    height: 250px;
  }
  .orchid-section .orchid-img-large {
    width: 100%;
  }
  .orchid-section .title {
    font-size: 34px;
  }
  .orchid-section .title::before {
    top: 70px;
  }
  .orchid-section .flex-wrap {
    flex-direction: column;
  }
}

.payment-section {
  padding: 2rem 1rem;
  background-color: #fff;
}
.payment-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.payment-section .payment-header {
  background-color: #f9f0f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.payment-section .payment-header p {
  font-size: 1.4rem;
  color: #650029;
  margin: 0;
}
.payment-section .payment-header .payment-button {
  background-color: #87d989;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
}
.payment-section .payment-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.payment-section .payment-content .left-column,
.payment-section .payment-content .right-column {
  flex: 1;
  min-width: 300px;
}
.payment-section .payment-content .left-column .location {
  text-align: center;
  margin-bottom: 2rem;
}
.payment-section .payment-content .left-column .location h3 {
  font-size: 1.6rem;
  color: #650029;
  margin-bottom: 0.5rem;
}
.payment-section .payment-content .left-column .location p,
.payment-section .payment-content .left-column .location a {
  font-size: 1.1rem;
  color: #650029;
  margin: 0.25rem 0;
  line-height: 1.7;
  text-decoration: none;
}
.payment-section .payment-content .left-column .location .call {
  font-weight: bold;
  font-size: 1.2rem;
}
.payment-section .payment-content .left-column .inquiry-form h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #650029;
  font-size: 1.5rem;
}
.payment-section .payment-content .left-column .inquiry-form form {
  display: flex;
  gap: 1rem;
}
.payment-section .payment-content .left-column .inquiry-form form .form-left,
.payment-section .payment-content .left-column .inquiry-form form .form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.payment-section .payment-content .left-column .inquiry-form form input,
.payment-section .payment-content .left-column .inquiry-form form textarea {
  padding: 0.75rem;
  border: 1px solid #c8004c;
  border-radius: 4px;
  font-size: 1.05rem;
}
.payment-section .payment-content .left-column .inquiry-form form textarea {
  min-height: 120px;
  resize: vertical;
}
.payment-section .payment-content .left-column .inquiry-form form button {
  align-self: flex-end;
  background-color: #ff0080;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}
.payment-section .payment-content .right-column {
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-section .payment-content .right-column img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .payment-section .payment-header {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 1rem;
  }
  .payment-section .payment-header p {
    font-size: 1.2rem;
  }
  .payment-section .payment-header .payment-button {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    display: inline-block;
    border-radius: 30px;
    margin-top: 0.5rem;
  }
  .payment-section .location h3,
  .payment-section .inquiry-form h3 {
    font-size: 1.3rem;
  }
  .payment-section .location p {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .payment-section .call {
    font-size: 1.1rem;
  }
  .payment-section input,
  .payment-section textarea {
    font-size: 1rem;
  }
  .payment-section .payment-content .inquiry-form form {
    flex-direction: column;
  }
  .payment-section .payment-content .inquiry-form form .form-left,
  .payment-section .payment-content .inquiry-form form .form-right {
    width: 100%;
  }
  .payment-section .payment-content .inquiry-form form button {
    align-self: flex-start;
  }
}

.map-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.map-section .map-container {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
  overflow: hidden;
  border-radius: 8px;
  height: auto;
}
.map-section .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .map-section {
    padding: 10px;
  }
  .map-section .map-container {
    padding-bottom: 65%;
  }
}

/*# sourceMappingURL=main.css.map */
