:root {
    --color-brand: #871c3c;
    --color-primary: #212529;
    --color-body: #fafafa;
    --color-secondary: #eeeeee;
    --color-link: #fafafa;
    --color-desc: #292929;
    --color-border: rgb(217 217 217 / 50%);
    --transition: all 0.3s ease-in-out;
    --font-family: Montserrat;
    --color-hightlink: #bcbf11;
}

[data-theme="contrast"] {
    --color-body: #181818;
    --color-secondary: #2b2b2b;
    --color-desc: #fafafa;
    --color-border: rgb(238 238 238 / 10%);
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--color-body);
    color: var(--color-desc);
    font-weight: 400;
    font-size: 1em;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.9;
    z-index: -1;
}

.large-font body {
    font-size: 1.1em;
}

header.position-fixed {
    background-color: var(--color-primary);
    transition: var(--transition);
}

.navbar-brand img,
.footer-logo img {
    height: 85px;
}

body.menu-open {
    overflow: hidden;
}

.btn {
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: var(--transition);
    text-transform: capitalize;
    border-radius: 50px;
    font-size: 0.9em;
    line-height: normal;
}

.btn-primary,
.btn-primary:active {
    background-color: var(--color-brand);
    color: var(--color-link);
}

.btn-primary:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: var(--color-brand);
    border-color: transparent;
}

.btn-secondary {
    border-color: var(--color-desc);
    color: var(--color-desc);
    background-color: var(--color-body);
}

.btn-secondary:hover,
.btn.btn-secondary:active {
    background: var(--color-body);
    color: var(--color-brand);
    border-color: var(--color-brand);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.form-control,
.form-select {
    height: 44px;
    background-color: var(--color-body);
    border-radius: 50px;
    font-size: 1em;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-brand);
    -webkit-box-shadow: none;
    box-shadow: none;
}

section,
footer {
    padding-top: 80px;
    padding-bottom: 80px;
}

img {
    max-width: 100%;
    object-fit: contain;
}

ul {
    list-style: none;
    padding: 0;
}

p {
    color: var(--color-desc);
    line-height: 22px;
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.highlight-link a,
.highlight-link button {
    color: var(--color-hightlink) !important;
}

main:has(.home) {
    padding-top: 0;
}

a:hover {
    color: var(--color-brand);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading) !important;
    position: relative;
    text-transform: uppercase;

}

h1:before,
h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    height: 2px;
    background: var(--color-brand);
}

h1.heading-main {
    font-size: 1.5em;
    margin-bottom: 40px;
    text-align: center !important;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center !important;
}

h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
}

h4 {
    font-size: 1em;
}

.logo img {
    height: 50px;
}

header .hamburger-icon {
    display: inline-block;
    height: 20px;
    position: relative;
    width: 30px;
}

main {
    padding-top: 100px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

section {
    flex: 1;
}

.swiper-slide {
    background-color: var(--color-body-bg);
}

.swiper .swiper-slide {
    text-align: center;
    background-color: var(--color-secondary);
}

.hero-about .swiper-slide img {
    height: 100%;
}

[class^="swiper-button"].show {
    opacity: 1;
    pointer-events: auto;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 24px;
    color: var(--color-link);
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.facilities-wrapper .swiper-slide {
    width: auto;
    background-color: transparent;
}

.home .overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 30%) 35%, rgb(0 0 0 / 40%) 75%, rgb(0 0 0 / 80%) 100%);
    z-index: 28;
}

.navbar .navbar-toggler {
    color: var(--color-link);
    background-color: var(--color-primary);
    width: 38px;
    height: 38px;
    font-size: 22px;
    border-radius: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar .navbar-toggler[aria-expanded="true"] {
    position: fixed;
    z-index: 1;
}

.hero-slider .hero-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    font-weight: 300;
    font-size: 1.2em;
    text-transform: uppercase;
    justify-content: center;
}

.test-slide-cnt .v-div img {
    border-radius: 0;
}

.hero-slider .hero-nav li:not(:last-child) {
    padding-right: 16px;
    border-right: 1px solid;
}

.widget-container {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    left: 0;
    right: 0;
}

.Configure-quickBook-Widget .MbsSearchWidget.dayUseSearch {
    margin: 0 auto;
}

.lang-wrapper .dropdown-toggle {
    color: var(--color-desc);
}

.position-fixed .lang-wrapper .dropdown-toggle {
    color: var(--color-link);
}

.dropdown-toggle:after {
    content: none;
}

/* Show as grid only when dropdown is open */
.lang-drop .dropdown-menu {
    right: 0;
    left: auto;
    position: absolute;
    top: 100%;
    z-index: 1;
    margin-top: 5px;
    max-height: 400px;
    padding: 10px 10px;
    overflow: auto;
    box-shadow: 0 0 15px 0 rgb(136 136 136 / 40%);
    background: var(--color-body);
    border-radius: 6px;
    border: none;
}

.language_dropdown .dropdown-item {
    white-space: nowrap;
    padding: 8px;
    font-size: 0.95em;
    color: var(--color-desc);
    transition: all 0.3s ease-in-out;
}

.language_dropdown .dropdown-item:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.fac-list h2 {
    margin-bottom: 30px;
    font-weight: 400 !important;
}

.widget-container .Configure-quickBook-Widget .MbsSearchWidget {
    max-width: fit-content;
}

.hero-slider {
    position: relative;
    cursor: pointer;
    height: 100vh;
}

.swiper {
    height: 100%;
}

[class^="swiper-button"] {
    z-index: 1;
    width: 45px;
    height: 45px;
    border: none;
    transition: var(--transition);
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.logo {
    outline: none;
    flex-shrink: 0;
}

.hero-slider .swiper-slide img,
.additional-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-about.hero-slider .swiper-slide img {
    object-fit: contain;
}

.dining-section .heading-main {
    font-size: 4em;
    margin-bottom: 20px;
}

/* About Section Styles */
.about .about-lead {
    max-width: 90%;
    margin: 0 auto 30px;
    text-align: center;
}

header {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 4;
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* header - background & box-shadow only on inner pages, not on home */
nav.navbar {
    padding: 14px 20px;
    width: 100%;
    transition: var(--transition);
}

nav.navbar li a {
    color: var(--color-desc);
    display: inline-block;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
}

nav.navbar li a:hover,
nav.navbar li a:focus {
    color: var(--color-brand);
}

.offcanvas-body {
    background: var(--color-body);
    position: fixed;
    transform: translateX(100%);
    inset: 0;
    width: 100%;
    transition: var(--transition);
    overflow-x: hidden;
}

.offcanvas-body.show,
.accommodation-panel.show {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.nav-menu, .accommodation-panel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    padding: 50px;
    left: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.accommodation-panel {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background: var(--color-body);
}

/* Footer Styles */
footer.footer {
    padding-bottom: 0;
    background-color: var(--color-secondary);
}

/* Footer Brand Section */
footer.footer .footer-logo {
    display: inline-block;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

footer.footer .footer-logo img {
    display: block;
}

/* Footer Social */
footer.footer .footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

footer.footer .footer-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(199, 185, 165, 0.3);
    color: var(--color-body);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

footer.footer .footer-social .social-link i {
    font-size: 1.1em;
}

footer.footer .footer-social .social-link:hover {
    transform: translateY(-3px);
}

footer.footer .footer-bottom {
    padding: 30px 0;
}

footer.footer .footer-contact-bar .footer-contact-item a {
    color: var(--color-desc);
    text-decoration: none;
}

footer.footer .footer-join-title {
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-desc);
}

footer.footer .footer-social-icons a {
    color: var(--color-desc);
    font-size: 1.5em;
    transition: var(--transition);
}

footer.footer .footer-main-nav {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

footer.footer .footer-main-nav ul {
    justify-content: center;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
}

footer.footer .footer-main-nav a,
footer.footer .copyright a {
    color: var(--color-desc);
}

footer.footer .footer-main-nav a:hover,
footer.footer .copyright a:hover,
footer.footer .footer-social-icons a:hover,
footer.footer .footer-contact-bar .footer-contact-item a:hover {
    color: var(--color-brand);
}

footer.footer .copyright {
    margin: 0;
    color: var(--color-desc);
    text-align: center;
    font-size: 0.9em;
}


footer.footer .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Accommodation Header */
.hero-about [class^="swiper-button"] {
    width: 40px;
    height: 40px;
}
.hero-about .swiper-button-prev {
    left: 10px;
}
.hero-about .swiper-button-next {
    right: 10px;
}
.about+.accommodation-wrapper {
    background-color: var(--color-secondary);
}

.accommodation-details, .wedding-content {
    padding: 20px;
    background: var(--color-body);
}

.accommodation-details .flex-1 {
    flex: 1;
}

.submenu-toggle, .submenu-toggle:hover {
    color: var(--color-desc);
}

.accommodation-details h3,
.accommodation-details p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accommodation-details h3 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.accommodation-details p {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 30px;
    min-height: 48px;
}

.details-page h2 {
    text-align: left !important;
}

.details-page h2:before {
    margin: 0;
}

.accommodation-wrapper .accommodation-card {
    position: relative;
    overflow: hidden;
}

.accommodation-wrapper .accommodation-card img.card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-wrapper .accommodation-card:hover img.card-image {
    transform: scale(1.05);
}

.accommodation-wrapper .accommodation-card .accommodation-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 220px;
    background-color: var(--color-border);
}

.accommodation-wrapper .accommodation-card img.card-image {
    will-change: transform;
    transform-origin: center center;
}

.hero-about,
.additional-image {
    position: relative;
    height: 300px;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
    background-color: var(--color-border);
}

.hero-about .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
}

.hero-about .hero-image {
    width: 100%;
    height: 100%;
    object-position: center center;
    will-change: transform;
    transform-origin: center center;
}

/* Accommodation Detail Page Styling */
.breadcrumb-section {
    padding: 30px 0;
}

.breadcrumb .breadcrumb-item {
    font-size: 0.9em;
}

.breadcrumb .breadcrumb-item a {
    color: var(--color-heading);
    transition: var(--transition);
    opacity: 0.7;
}

.breadcrumb .breadcrumb-item a:hover {
    opacity: 1;
    color: var(--color-hover);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--color-hover);
    font-weight: 500;
}

.breadcrumb-separator,
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-heading);
    margin: 0 4px;
}

.breadcrumb-section+.accommodation-wrapper,
.breadcrumb-section+.content-wrapper {
    padding-top: 0;
}

/* Facilities Section */
.fac-list ul li::before,
.facility-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    background: var(--color-desc);
}

.facilities-inter-wrapper .facility-feature-title {
    padding-left: 20px;
    margin-block: 10px;
    display: inline-block;
}

/* Contact Section */
.contact-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.2em;
    color: var(--color-brand);
    margin-top: 4px;
}

.contact-content h3 {
    font-size: 0.9em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.7;
}

.contact-content a,
.contact-content address {
    font-style: normal;
    color: var(--color-desc);
    margin-bottom: 0;
    line-height: normal;
}

.contact-content a:hover {
    color: var(--color-brand);
}

.contact-divider {
    height: 1px;
    background: var(--color-border);
}

/* Map Section */
.map-canvas {
    width: 100%;
    height: 500px;
    border: none;
}

/* Gallery Section */
.gallery-filters {
    margin-bottom: 50px;
}

.gallery-filter-btn {
    padding: 4px 10px;
    color: var(--color-desc);
    transition: var(--transition);
    border: none;
    background: transparent;
    position: relative;
    border-bottom: 1px solid transparent;
}

.gallery-filter-btn:hover {
    color: var(--color-brand);
}

.gallery-filter-btn.active {
    color: var(--color-brand);
    font-weight: 500;
    border-bottom-color: var(--color-brand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-border);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-origin: center center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 29, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 3em;
    color: var(--color-link);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.1);
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-thumb {
    background: #4e4e4e;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content {
    background-color: var(--color-body);
}

.modal-header {
    border-bottom-color: var(--color-border);
}

.modal-header .close {
    color: var(--color-desc);
}

 /* review page style */
 .ReviewConteiner .reviewSlideerWrap {
    background: var(--color-body);
    box-shadow: 0 6px 20px rgb(159 159 159 / 15%);
}

.reviewSlideerWrap .reviewtabs li a {
    color: var(--color-desc);
    border-bottom-color: var(--color-border);
    background: var(--color-body);
}

.reviewSlideerWrap .reviewtabs .active {
    background: var(--color-border);
}

.reviewSlideerWrap .reviewTitle,
.reviewSlideerWrap .reviewCnt,
.reviewSlideerWrap .reviewMmore,
.reviewSlideerWrap .guestName,
.reviewSlideerWrap .sourceWrap span {
    color: var(--color-desc);
}

.reviewSlideerWrap .w3-button.w3-black {
    color: var(--color-desc);
    background: var(--color-body);
}
/* hide room filter list */

#room-filter-list {
    display: none !important;
}

#room-filter-list.room-filters-visible {
    display: flex !important;
}