:root {
     --color-primary: #1E1D1A;
     --color-secondary: #cfe8d2;
     --color-footer: #1E1D1A;
     --color-hover: #517956;
     --color-body-bg: #fdfdfd;
     --color-heading: #1E1D1A;
     --color-desc: #434443;
     --color-link: #1E1D1A;
     --color-text: #fdfdfd;
     --color-border: rgb(62 62 62 / 20%);
    --font-family: "DM Sans", sans-serif;
    --secondary-font: "Awesome Serif", serif;
     --color-highlight: #ffff00;
}

 [data-theme="contrast"] {
     --color-secondary: #2a2a2a;
     --color-footer: #2a2a2a;
     --color-body-bg: #1a1a1a;
     --color-heading: #fdfdfd;
     --color-desc: #f1f1f1;
     --color-link: #f1f1f1;
     --color-text: #fdfdfd;
     --color-border: rgb(80 80 80 / 20%);
 }


@font-face {
    font-family: "Awesome Serif";
    src: url("../fonts/AwesomeSerif-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}

body {
    margin: 0;
    font-family: var(--font-family);
     background-color: var(--color-body-bg);
     color: var(--color-desc);
}

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;
}

body.menu-open {
    overflow: hidden;
}

/* GSAP ScrollSmoother wrapper styles */
.btn-primary {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
     border: 1px solid var(--color-body-bg);
     color: var(--color-body-bg);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
}

.btn-primary:hover {
     color: var(--color-body-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(148, 137, 121, 0.3);
}

 .book-btn .btn-primary {
    border-color: var(--color-text);
    color: var(--color-text);
 }

section,
footer {
    padding-top: 80px;
    padding-bottom: 80px;
}

img {
    max-width: 100%;
     object-fit: contain;
     border-radius: 6px;
}

ul {
    list-style: none;
}

p {
     color: var(--color-desc);
     font-size: 1em;
    line-height: 1.6;
}

a {
     color: var(--color-link);
    text-decoration: none;
     transition: all 0.3s ease-in-out;
}

 a:hover,
 .btn:hover {
     color: var(--color-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
     color: var(--color-heading);
    font-weight: 400;
     letter-spacing: 1px;
}

h1.heading-main {
    margin-bottom: 30px;
     font-size: 3em;
}

h2 {
     font-size: 2em;
    margin: 0;
}

h3 {
     font-size: 1.5em;
 }

 h4 {
    font-size: 1em;
}

.logo img {
    height: 50px;
}

header .hamburger-icon {
    display: inline-block;
    height: 20px;
    position: relative;
    width: 30px;
}

 #smooth-content {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 main {
     flex: 1;
     padding-top: 80px;
 }
 .page-home main {
    padding-top: 0;
}
/* Container fluid transition for max-width */
header .container-fluid {
    transition: max-width 0.5s ease-in-out;
}

.hamburger-icon .line {
    display: block;
    height: 1px;
    left: 0;
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
    width: 100%;
     background-color: var(--color-text);
    transition: transform .5s cubic-bezier(.77, 0, .175, 1),
        width .4s cubic-bezier(.77, 0, .175, 1),
        opacity .3s cubic-bezier(.77, 0, .175, 1),
        top .4s cubic-bezier(.77, 0, .175, 1);
}

.hamburger-icon .line-1 {
    top: 0;
}

.hamburger-icon .line-2 {
    right: auto;
    top: 8px;
    width: 75%;
}

.hamburger-icon .line-3 {
    top: 16px;
}

body.menu-open .hamburger-icon .line-1 {
    top: 9px;
    transform: rotate(45deg);
    width: 100%;
}

body.menu-open .hamburger-icon .line-2 {
    opacity: 0;
    width: 0;
}

body.menu-open .hamburger-icon .line-3 {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100%;
}

header .navbar-toggler span.menu {
     color: var(--color-link);
    font-size: 0.85em;
}

.hero-split-container {
    height: 100vh;
    margin-bottom: 60px;
}

.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 {
    border-radius: 0;
    cursor: pointer;
    z-index: 1001;
    outline: none;
    box-shadow: none;
    border: none;
    flex: 1;
}

.widget-container {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    left: 0;
    right: 0;
}

 .Configure-quickBook-Widget .MbsSearchWidget.dayUseSearch {
     margin: 0 auto;
 }

/* Desktop Menu Full Screen - Hidden by default */
.desktop-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
     background: var(--color-primary);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.read-more-link {
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
     color: var(--color-link);
     border: none;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    transform: translateY(-2px);
}

.header-right {
    flex: 1;
}

.lang-drop {
    position: relative;
}



.lang-wrapper .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10PX;
     color: var(--color-text);
}

.dropdown-toggle:after {
    content: none;
}

.lang-wrapper {
     border-left: 1px solid var(--color-text);
    margin-left: 20px;
    padding-left: 20px;
}

/* Show as grid only when dropdown is open */
.lang-drop .dropdown-menu.show {
    display: grid !important;
}

 .lang-drop .dropdown-menu {
    right: 0;
    left: auto;
    max-width: calc(100vw - 32px);
    display: none;
    position: absolute;
    top: 100%;
    z-index: 1;
    margin-top: 8px;
    text-align: left;
    transform: none;
}

.language_dropdown {
    box-sizing: border-box;
    grid-auto-flow: column;
    grid-template-rows: repeat(10, auto);
    grid-auto-columns: max-content;
     column-gap: 10px;
    max-height: 70vh;
    padding: 12px 16px;
    overflow: auto;
    min-width: 280px;
    width: max-content;
    max-width: calc(100vw - 32px);
     box-shadow: 0px 5px 20px 2px rgb(55 55 55 / 50%);
     background: var(--color-body-bg);
}

.language_dropdown .dropdown-item {
    white-space: nowrap;
     padding: 8px;
     font-size: 0.95em;
    border-radius: 4px;
     color: var(--color-desc);
     transition: all 0.3s ease-in-out;
}

.language_dropdown .dropdown-item:hover {
     background: var(--color-border);
     color: var(--color-desc);
}

.fac-list h2 {
    margin-bottom: 30px;
    font-weight: 400 !important;
}

/* Center Section: Menu and Book Now */
.desktop-menu-center {
    flex-direction: column;
    position: absolute;
}

 .desktop-menu-center,
 .dropdown-menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0;
    height: 100%;
    overflow-y: auto;
}

.dropdown-menu-wrapper {
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu-wrapper.active {
    transform: translateX(0);
}

.desktop-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.desktop-menu .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.desktop-menu.open .nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.desktop-menu.open .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.desktop-menu.open .nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.desktop-menu.open .nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.desktop-menu.open .nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.desktop-menu.open .nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.desktop-menu .nav-links li a,
.desktop-menu .nav-links li button,
.more-menu-list .dropdown-item {
     color: var(--color-text);
    font-size: 1.6em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 20px;
    position: relative;
    line-height: normal;
    font-family: var(--secondary-font);
    letter-spacing: 2px;
}

.desktop-menu .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
     background-color: var(--color-text);
    transition: width 0.3s ease;
}

.desktop-menu .nav-links a:hover::after,
.desktop-menu .nav-links li.active a::after {
    width: 80%;
}

.widget-container .Configure-quickBook-Widget .MbsSearchWidget {
    max-width: fit-content;
    border-radius: 8px;
}

/* More Dropdown Styles */
.more-dropdown {
    position: relative;
}

.back-to-main-menu {
    position: fixed;
    top: 20px;
    right: 40px;
     color: var(--color-text);
    font-family: var(--secondary-font);
    font-size: 1.2em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    background: rgba(21, 21, 21, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.back-to-main-menu i {
    font-size: 1.2em;
}

.more-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
    width: 100%;
}

.more-menu-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.dropdown-menu-wrapper.active .more-menu-list li {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(2) {
    transition-delay: 0.15s;
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(4) {
    transition-delay: 0.25s;
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(5) {
    transition-delay: 0.3s;
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(6) {
    transition-delay: 0.35s;
}

.dropdown-menu-wrapper.active .more-menu-list li:nth-child(7) {
    transition-delay: 0.4s;
}


.more-menu-list .dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
     background-color: var(--color-body-bg);
    transition: width 0.3s ease;
}

.more-menu-list .dropdown-item:hover::after,
.more-menu-list li.active .dropdown-item::after {
    width: 80%;
}

/* Main menu slide out when dropdown opens */
section.about:after {
    content: "";
    background: url("../img/about-bg.png");
    position: absolute;
    right: 0;
    bottom: -7px;
    z-index: 1;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 150px;
    width: 150px;
    height: 150px;
}

.desktop-menu-center {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.desktop-menu-center.slide-left {
    transform: translateX(-100%);
}

.desktop-menu-center .book-btn-right {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.35s;
}

.desktop-menu.open .desktop-menu-center .book-btn-right {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider {
    position: relative;
    cursor: pointer;
    height: 100vh;
}

 .swiper {
    height: 100%;
}

 [class^="swiper-button"] {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 15%);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease-out, left 0.2s ease-out, right 0.2s ease-out;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.logo {
    outline: none;
    flex-shrink: 0;
}

 .page-home .hero-slider .swiper-slide img {
    object-fit: cover;
}
.swiper-slide {
    background-color: var(--color-body-bg);
}
 .swiper-slide img {
    height: 100%;
    width: 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-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


.dining-section .heading-main {
    font-size: 4em;
    margin-bottom: 20px;
}

/* About Section Styles */
.about .about-media {
    position: relative;
    overflow: hidden;
}

.about .about-media img {
    display: block;
     height: 350px;
    margin: 0 auto;
    max-width: 460px;
    width: 100%;
    will-change: transform;
    transform-origin: center center;
}

.about .about-lead {
    margin-bottom: 30px;
}

.page-badge {
    display: inline-block;
    font-size: 1em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B87C4C;
    margin-bottom: 1rem;
    font-weight: 500;
    padding-left: 40px;
    padding-right: 40px;
}

.page-badge::before,
.page-badge::after {
    content: "";
    position: absolute;
    background-size: 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 100%;
    top: 6px;
}

.page-badge::before {
    left: 0;
    background-image: url('../img/decorative-heading.svg');
}

.page-badge::after {
    right: 0;
    background-image: url('../img/decorative-heading-r.svg');
}

.more-btn {
    position: relative;
}

.more-btn::after,
.more-btn::before {
    content: "";
    position: absolute;
    border-bottom: 1px dashed #B87C4C;
    height: 0.1px;
}

.more-btn:after {
    bottom: 50%;
    width: 100%;
}

.more-btn:before {
    bottom: 38%;
    width: 80%;
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(184, 124, 76, 0.3);
    transform: translateY(-2px);
}

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);
}

.hero-split-container .hero-slider {
    width: 60%;
}

/* header - background & box-shadow only on inner pages, not on home */
nav.navbar {
    padding: 8px 20px;
     border-radius: 6px;
}

 body:not(.page-home) nav.navbar,
 body.page-home .position-fixed nav.navbar {
     background-color: var(--color-primary);
    box-shadow: 0px 5px 20px 2px rgb(55 55 55 / 50%);
}

/* header */
/* Footer Styles */
footer.footer {
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
     background-color: var(--color-footer);
}

/* Footer Brand Section */
footer.footer .footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer.footer .footer-logo {
    display: inline-block;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

footer.footer .footer-logo:hover {
    opacity: 0.8;
}

footer.footer .footer-logo img {
    max-height: 70px;
    width: auto;
    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);
    border-radius: 50%;
     color: var(--color-text);
    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 Title */
footer.footer .footer-title {
     color: var(--color-text);
    font-family: var(--font-family);
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Menu */
footer.footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer .footer-menu li {
    margin-bottom: 12px;
}

footer.footer .footer-menu li:last-child {
    margin-bottom: 0;
}

footer.footer .footer-menu a {
     color: var(--color-text);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

footer.footer .footer-menu a:hover,
footer.footer .footer-contact-block a:hover,
footer.footer .footer-social .serif-link:hover {
     color: var(--color-hover);
}

/* Footer layout tweaks */
footer.footer .footer-photo img {
     height: 50px;
}

footer.footer .footer-quicklinks .footer-menu li {
    margin-bottom: 8px;
}

/* Footer layout tweaks */
footer.footer .footer-quicklinks .footer-menu li {
    margin-bottom: 8px;
}

 footer.footer .footer-contact-block p,
footer.footer .footer-contact-block a {
     color: var(--color-text);
}

footer.footer .footer-contact-block .footer-heading {
    font-size: 0.85em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgb(253 253 253 / 70%);
}

footer.footer .footer-social .serif-link {
    font-family: "Awesome Serif", serif;
    border: none;
    width: auto;
    height: auto;
    padding: 0;
     color: var(--color-text);
}

/* Footer Contact Info */
footer.footer .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer.footer .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
     color: var(--color-text);
    font-family: var(--font-family);
    font-size: 0.95em;
    line-height: 1.7;
}

footer.footer .contact-info-item i {
     color: var(--color-text);
    font-size: 1.1em;
}

footer.footer .contact-info-item address {
    font-style: normal;
    margin: 0;
     color: var(--color-text);
}

footer.footer .contact-info-item a {
     color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.footer .contact-info-item a:hover {
     color: var(--color-hover);
}

/* Footer Newsletter */
footer.footer .footer-newsletter-desc {
     color: var(--color-text);
    font-size: 0.9em;
    line-height: 1.7;
    margin-bottom: 20px;
}

footer.footer .newsletter-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
     border: 1px solid var(--color-text);
     color: var(--color-text);
    font-size: 0.9em;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

footer.footer .newsletter-btn:hover {
     background: var(--color-text);
     color: var(--color-hover);
    transform: translateY(-2px);
}

/* Footer Bottom */
footer.footer .footer-bottom {
    padding: 30px 0;
    margin-top: 60px;
     border-top: 1px solid var(--color-border);
}

footer.footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer.footer .copyright {
    margin: 0;
     color: var(--color-text);
}

footer.footer .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

 footer.footer .footer-links span, footer.footer .footer-link {
     color: var(--color-text);
     transition: color 0.3s ease;
}

footer.footer .footer-links a {
     color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

 footer.footer .footer-links a:hover,
 footer.footer .footer-link:hover {
     color: var(--color-hover);
 }

/* Accommodation Header */
.about + .accommodation-wrapper {
     background-color: var(--color-secondary);
}

section.accommodation-wrapper .accommodation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

section.accommodation-wrapper .accommodation-section-title {
    font-size: 2.5em;
    font-weight: 300;
    margin: 0;
}

.accommodation-card .accommodation-title {
    margin: 0;
     transition: all 0.3s ease;
}


.accommodation-card .accommodation-title:hover {
     color: var(--color-hover);
}

.accommodation-card .accommodation-title a {
     color: var(--color-primary);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Bootstrap grid is used instead of CSS grid */
section.accommodation-wrapper .accommodation-card {
    position: relative;
    overflow: hidden;
}

section.accommodation-wrapper .accommodation-card img.card-image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

section.accommodation-wrapper .accommodation-card:hover img.card-image {
    transform: scale(1.05);
}

section.accommodation-wrapper .accommodation-card .accommodation-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    height: 250px;
    border-radius: 6px;
     background-color: var(--color-border);
}

section.accommodation-wrapper .accommodation-card img.card-image {
    will-change: transform;
    transform-origin: center center;
}

/* Dining Wrapper - Same as Accommodation */
.dining-wrapper .accommodation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.dining-wrapper .swiper-slide {
    height: auto;
    display: flex;
}

.dining-wrapper .swiper-wrapper {
    align-items: stretch;
}

.dining-wrapper .accommodation-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dining-wrapper .accommodation-card img.card-image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.dining-wrapper .accommodation-card:hover img.card-image {
    transform: scale(1.05);
}

.dining-wrapper .accommodation-card .accommodation-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
     border-radius: 6px;
     height: 250px;
     background-color: var(--color-border);
}

.dining-wrapper .accommodation-card .accommodation-title {
    margin: 0;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.dining-wrapper .accommodation-card .accommodation-title a {
     color: var(--color-primary);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.gallery-parallax-section {
    position: relative;
}

section.gallery-parallax-section .gallery-image-item {
    width: 50%;
    height: 100%;
    overflow: hidden;
     background-color: var(--color-border);
}

section.gallery-parallax-section .gallery-parallax-img {
    width: 100%;
    height: 100%;
    display: block;
    will-change: transform;
    transform-origin: center center;
}

.hero-about {
    position: relative;
     height: 360px;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
     border-radius: 6px;
}

.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 {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb .breadcrumb-item a {
     color: var(--color-heading);
    text-decoration: none;
    transition: color 0.3s ease;
    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;
}

/* Room Gallery Section */
.room-gallery-section {
    padding: 0;
    margin-bottom: 60px;
}

.room-gallery-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.room-image-swiper {
    height: 100%;
}

.room-image-swiper .swiper-wrapper {
    height: 100%;
}

.room-gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    will-change: transform;
    transform-origin: center center;
}

/* Room Details Section */
.booking-widget-title {
     color: var(--color-primary);
    margin-bottom: 20px;
}

.wedding-content h3 {
    margin-bottom: 30px;
}

section.gallery-parallax-section .gallery-parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    margin: 0 auto;
    padding: 30px;
     background: var(--color-secondary);
    width: 450px;
     border-radius: 6px;
}

section.gallery-parallax-section .btn-view-more-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: transparent;
     border: 2px solid var(--color-primary);
     color: var(--color-primary);
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

section.gallery-parallax-section .btn-view-more-center:hover {
     background-color: var(--color-primary);
     color: var(--color-body-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(148, 137, 121, 0.4);
}








/* accomationpage */

section.accommodation-wrapper.accomodationpage .accommodation-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

section.accommodation-wrapper.accomodationpage .accommodation-grid .accommodation-card {
    width: calc(50% - 50px);
}

section.accommodation-wrapper.accomodationpage .accommodation-grid .accommodation-card img.card-image {
    height: 250px;
}


/* accomationpage-details */
section.room-details .swiper.image-slider .swiper-wrapper .swiper-slide {
    width: 25%;
}

section.room-details .swiper.image-slider .swiper-wrapper .swiper-slide img.slider-image {
    height: 500px;
}

section.room-details .swiper.image-slider {
    margin: 50px 0;
}

/* Facilities Section */
.fac-list {
    display: flex;
    flex-wrap: wrap;
}

 section .fac-list ul,
 .facilities-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
}

.facilities-features-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

 .fac-list ul li,
 .facilities-features-grid .facility-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
     padding: 15px 20px;
    transition: all 0.3s ease;
    position: relative;
}

 .fac-list ul li::before,
 .facility-feature-card::before {
    content: "";
    position: absolute;
     left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
     background: var(--color-heading);
    border-radius: 50px;
}

/* Contact Section */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-info-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
     border-top: 1px solid var(--color-border);
     border-left: 1px solid var(--color-border);
}

.contact-info-item {
    padding: 50px 40px;
     border-right: 1px solid var(--color-border);
     border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
     background: var(--color-border);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.contact-info-item:hover::before {
    transform: scaleX(1);
}

.contact-info-label {
    font-size: 0.9em;
     color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.contact-info-value {
    font-size: 1.1em;
     color: var(--color-desc);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    word-break: break-word;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-info-item address {
    font-style: normal;
    margin: 0;
     color: var(--color-desc);
}

/* Map Section */
.map-canvas {
    width: 100%;
    height: 500px;
    border: none;
}

section.content-wrapper .dining-title .dining-main .dining-body .description {
    margin-bottom: 20px;
}

section.content-wrapper .dining-title .dining-main .dining-body p#textContainer {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

section.content-wrapper .dining-title .dining-main .dining-body p#textContainer.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

section.content-wrapper .dining-title .dining-main .dining-body .dining-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}


/* gallery */
/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-header {
    text-align: center;
     margin-bottom: 30px;
}

.gallery-filters {
    margin-bottom: 50px;
}

.gallery-filter-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    margin: 0 auto;
}

.gallery-filter-list li {
    margin: 0;
}

.gallery-filter-btn {
    display: inline-block;
     padding: 10px 24px;
     color: var(--color-desc);
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: transparent;
     border-radius: 6px;
    position: relative;
    font-family: var(--font-family);
    cursor: pointer;
    white-space: nowrap;
}

.gallery-filter-btn:hover {
     color: var(--color-desc);
    background: rgba(30, 29, 26, 0.05);
}

.gallery-filter-btn.active {
     color: var(--color-heading);
    font-weight: 500;
     background: var(--color-border);
    box-shadow: 0 4px 12px rgba(30, 29, 26, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
     border-radius: 6px;
     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-text);
    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);
}

.gallery-parallax-copy {
    padding: 30px;
    background: rgba(255, 248, 223, 0.95);
    width: 450px;
    height: 80%;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-thumb {
    background: #4e4e4e;
    border-radius: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}
 .modal-content {
    background-color: var(--color-body-bg);
 }
 .modal-header {
    border-bottom-color: var(--color-border);
 }
 .modal-header .close {
    color: var(--color-desc);
 }