/*============================================================================================*/
/* Rex and Rich Hotel Custom Styles */
/*============================================================================================*/

/*============================================================================================*/
/* Lenis Smooth Scroll Classes */
/*============================================================================================*/
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/*============================================================================================*/
/* Shared Media Skeleton Loading */
/*============================================================================================*/
.media-skeleton-shell {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 100%;
    background: #e8ddd0;
}

.media-skeleton-shell.media-skeleton-inline {
    display: inline-block;
    vertical-align: middle;
}

.media-skeleton-shell > .media-skeleton-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.16) 8%, rgba(255, 255, 255, 0.4) 18%, rgba(255, 255, 255, 0.16) 33%), linear-gradient(135deg, #e5d6c4 0%, #f7efe6 100%);
    background-size: 200% 100%, 100% 100%;
    animation: mediaSkeletonPulse 1.15s linear infinite;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.media-skeleton-shell > .media-skeleton-asset {
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.media-skeleton-shell.media-skeleton-loaded > .media-skeleton-placeholder {
    opacity: 0;
    visibility: hidden;
}

.media-skeleton-shell.media-skeleton-loaded > .media-skeleton-asset {
    opacity: 1;
}

@keyframes mediaSkeletonPulse {
    0% {
        background-position: 200% 0, 0 0;
    }
    100% {
        background-position: -200% 0, 0 0;
    }
}

/*============================================================================================*/
/* Floating Navigation Header - Kickstart Style */
/*============================================================================================*/
.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1280px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(200, 169, 126, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.floating-header.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Logo */
.floating-header .nav-logo {
    display: flex;
    align-items: center;
}

.floating-header .nav-logo img {
    height: 42px;
    width: auto;
    max-width: 180px;
    transition: opacity 0.3s ease;
}

/* Default: Show dark logo for inner pages */
.floating-header .nav-logo .logo-light {
    display: none;
}

.floating-header .nav-logo .logo-dark {
    display: block;
}

/* On scroll: Always show dark logo (for white background) */
.floating-header.scrolled .nav-logo .logo-light {
    display: none;
}

.floating-header.scrolled .nav-logo .logo-dark {
    display: block;
}

/* Desktop Navigation Menu */
.floating-header .nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

@media (min-width: 992px) {
    .floating-header .nav-menu {
        display: flex;
    }
}

.floating-header .nav-item {
    position: relative;
}

.floating-header .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.floating-header .nav-link:hover {
    color: #c8a97e;
    border-color: rgba(200, 169, 126, 0.3);
    background: rgba(200, 169, 126, 0.05);
}

.floating-header .nav-item.active .nav-link {
    color: #c8a97e;
}

.floating-header .dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.floating-header .nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.floating-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    padding: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.floating-header .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.floating-header .dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #555;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.floating-header .dropdown-item:hover {
    background: rgba(200, 169, 126, 0.1);
    color: #c8a97e;
}

/* Nav Actions */
.floating-header .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-header .nav-cta {
    display: none;
    padding: 10px 24px;
    background: linear-gradient(135deg, #c8a97e 0%, #b8956c 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .floating-header .nav-cta {
        display: block;
    }
}

.floating-header .nav-cta:hover {
    background: linear-gradient(135deg, #b8956c 0%, #a8855c 100%);
    transform: translateY(-2px);
    color: #fff;
}

/* Transparent Header for Homepage (over hero/video) */
.floating-header.header-transparent .nav-container {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.floating-header.header-transparent .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.floating-header.header-transparent .nav-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.floating-header.header-transparent .nav-item.active .nav-link {
    color: #c8a97e;
}

.floating-header.header-transparent .nav-logo .logo-light {
    display: block;
}

.floating-header.header-transparent .nav-logo .logo-dark {
    display: none;
}

.floating-header.header-transparent .nav-toggle {
    background: rgba(255, 255, 255, 0.15);
}

.floating-header.header-transparent .toggle-bar {
    background: #fff;
}

/* When scrolled, revert to solid header */
.floating-header.header-transparent.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(200, 169, 126, 0.2);
}

.floating-header.header-transparent.scrolled .nav-link {
    color: #333;
}

.floating-header.header-transparent.scrolled .nav-link:hover {
    color: #c8a97e;
    border-color: rgba(200, 169, 126, 0.3);
    background: rgba(200, 169, 126, 0.05);
}

.floating-header.header-transparent.scrolled .nav-logo .logo-light {
    display: none;
}

.floating-header.header-transparent.scrolled .nav-logo .logo-dark {
    display: block;
}

.floating-header.header-transparent.scrolled .nav-toggle {
    background: #f5f5f5;
}

.floating-header.header-transparent.scrolled .toggle-bar {
    background: #333;
}

/* Mobile Toggle Button */
.floating-header .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    gap: 5px;
    touch-action: manipulation;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .floating-header .nav-toggle {
        display: none;
    }
}

.floating-header .toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.floating-header .nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.floating-header .nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.floating-header .nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*============================================================================================*/
/* Inner Page Content Spacing (Account for fixed header) */
/*============================================================================================*/
/* Add top padding to inner pages to account for fixed floating header */
body:not(.home-page) main > .container:first-child,
body:not(.home-page) main > .container-fluid:first-child,
body:not(.home-page) main > section:first-child,
body:not(.home-page) main > div:first-child {
    padding-top: 120px;
}

/* Specific fix for margin_120_95 which is commonly used on inner pages */
body:not(.home-page) .margin_120_95 {
    padding-top: 120px;
}

/* Booking page specific - override margin class */
body:not(.home-page) .booking-card {
    margin-top: 0;
}

/* Mobile adjustment - need more space on smaller screens */
@media (max-width: 991px) {
    body:not(.home-page) main > .container:first-child,
    body:not(.home-page) main > .container-fluid:first-child,
    body:not(.home-page) main > section:first-child,
    body:not(.home-page) main > div:first-child {
        padding-top: 100px;
    }
    
    body:not(.home-page) .margin_120_95 {
        padding-top: 100px;
    }
}

/*============================================================================================*/
/* Mobile Navigation Sidebar */
/*============================================================================================*/
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.mobile-nav-open {
    overflow: hidden;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 1999;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 24px 0 0 24px;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-logo img {
    height: 38px;
    width: auto;
    max-width: 160px;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}

.mobile-nav-close:hover {
    background: #eee;
}

.mobile-nav-content {
    padding: 24px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item > a,
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-item > a:hover,
.mobile-submenu-toggle:hover {
    color: #c8a97e;
}

.mobile-nav-item.active > a {
    color: #c8a97e;
}

.mobile-submenu-toggle svg {
    width: 18px;
    height: 18px;
    stroke: #999;
    transition: transform 0.3s ease;
}

.mobile-nav-item.open .mobile-submenu-toggle svg {
    transform: rotate(90deg);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.open .mobile-submenu {
    max-height: 300px;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-submenu li a:hover {
    color: #c8a97e;
}

.mobile-nav-cta {
    margin-bottom: 24px;
}

.mobile-nav-cta .btn-book-now {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #c8a97e 0%, #b8956c 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-cta .btn-book-now:hover {
    background: linear-gradient(135deg, #b8956c 0%, #a8855c 100%);
}

.mobile-nav-info {
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.mobile-nav-info .info-block {
    margin-bottom: 16px;
}

.mobile-nav-info h6 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 8px;
}

.mobile-nav-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.mobile-nav-info p a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-info p a:hover {
    color: #c8a97e;
}

.mobile-nav-info .social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.mobile-nav-info .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    color: #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-info .social-links a:hover {
    background: #c8a97e;
    color: #fff;
}

/*============================================================================================*/
/* Simple Page Headers */
/*============================================================================================*/
.page-header-simple {
    position: relative;
}

.page-header-simple .breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s;
}

.page-header-simple .breadcrumb-item a:hover {
    color: #c8a97e !important;
}

.page-header-simple .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.quick-info-box {
    border-left: 4px solid #c8a97e;
}

.quick-info-box ul li {
    font-size: 0.95rem;
}

/*============================================================================================*/
/* Menu of the Day Styles */
/*============================================================================================*/
.menu_category_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu_category_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.menu_category_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8B4513;
    border-bottom: 2px solid #D2691E;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_item {
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.menu_item:last-child {
    border-bottom: none;
}

.menu_item_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.menu_item_name {
    font-weight: 500;
    color: #333;
}

.menu_item_price {
    font-weight: 600;
    color: #8B4513;
    white-space: nowrap;
}

.menu_item_desc {
    font-size: 0.85rem;
    color: #777;
    margin: 5px 0 0;
}

/* Cookie Bar Styles */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.cookie-bar p {
    font-size: 14px;
}

.cookie-bar .btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.cookie-bar .btn-primary {
    background: #D2691E;
    border-color: #D2691E;
}

.cookie-bar .btn-outline-light:hover {
    color: #D2691E;
}

/* Modal Advertisement Improvements */
#promoModal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

#promoModal .modal-header {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: #fff;
    border: none;
}

#promoModal .modal-header .btn-close {
    filter: invert(1);
}

#promoModal .modal-body {
    padding: 30px;
}

#promoModal .modal-footer {
    background: #f8f9fa;
    border: none;
    padding: 20px;
}

/* Room Grid Improvements */
.box_cat_rooms figure {
    height: 300px;
    overflow: hidden;
}

.box_cat_rooms figure .background-image {
    transition: transform 0.5s ease;
}

.box_cat_rooms:hover figure .background-image {
    transform: scale(1.1);
}

.box_cat_rooms .info h3 {
    font-size: 1.25rem;
}

/* GSAP Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

/* Smooth Scroll Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Facilities Section Improvements */
.box_facilities {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.box_facilities:hover {
    transform: translateY(-10px);
}

.box_facilities i {
    font-size: 3rem;
    color: #D2691E;
    margin-bottom: 20px;
}

/* Parallax Section Polish */
.parallax_section_1 .wrapper {
    padding: 120px 0;
}

body.home-page main {
    position: relative;
    z-index: 2;
    background: #fff; /* Solid background for footer reveal effect */
}

/* Ensure proper margin for footer reveal */
main {
    margin-bottom: 0;
}

footer .social ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

footer .social ul li a:hover {
    background: #D2691E;
    transform: translateY(-3px);
}

footer .copy .copy_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

footer .footer-powered-by {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff !important;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

footer .footer-powered-by:hover {
    transform: translateY(-2px);
    background: rgba(210, 105, 30, 0.18);
    border-color: rgba(210, 105, 30, 0.45);
    color: #fff !important;
}

footer .footer-powered-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.62);
}

footer .footer-powered-brand {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fff;
}

@media (max-width: 767px) {
    footer .copy .copy_inner {
        justify-content: center;
        text-align: center;
    }
}

/* Hero Section Enhancement */
.hero .wrapper h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero .wrapper h1 {
        font-size: 2rem;
    }
    
    .menu_category_card {
        margin-bottom: 20px;
    }
    
    .box_cat_rooms figure {
        height: 250px;
    }
}

/* Testimonials Enhancement */
.carousel_testimonials .comment {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

/* Button Hover Effects */
.btn_1 {
    transition: all 0.3s ease;
}

.btn_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Newsletter Section */
#newsletter .form-group {
    position: relative;
}

#newsletter input[type="email"] {
    padding-right: 50px;
}

#newsletter button[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    background: #D2691E;
    border: none;
    border-radius: 0 4px 4px 0;
}

#newsletter button[type="submit"]:hover {
    background: #8B4513;
}

/*============================================================================================*/
/* Animation Fallbacks - Ensure content is visible even if GSAP fails */
/*============================================================================================*/

/* Hero slide animations */
.hero .slide-animated,
.hero .slide-animated.one,
.hero .slide-animated.two,
.hero .slide-animated.three,
.hero .slide-animated.four {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Data-cue elements (template animations) */
[data-cue],
[data-cues] > * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Box category rooms */
.box_cat_rooms,
.box_cat_rooms figure,
.box_cat_rooms .info {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Facilities list */
.room_facilities_list ul li {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Parallax wrapper images */
.parallax_wrapper img,
.parallax_wrapper .img_over {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Row list rooms */
.row_list_version_2 .box_item_info {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Title animations */
.title small,
.title h2 {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Modern hero styles */
.hero-modern h1 {
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-modern .btn_1 {
    padding: 12px 30px;
    font-size: 0.9rem;
}

.hero-modern .btn_1.outline {
    border-color: #fff;
    color: #fff;
}

.hero-modern .btn_1.outline:hover {
    background: #fff;
    color: #333;
}

/*============================================================================================*/
/* Dynamic Room Cards Grid */
/*============================================================================================*/
.box_cat_rooms.room-card-tall figure {
    min-height: 380px;
}

.box_cat_rooms.room-card-equal figure {
    min-height: 320px;
}

.box_cat_rooms figure {
    min-height: 280px;
}

@media (max-width: 1199px) {
    .box_cat_rooms.room-card-tall figure,
    .box_cat_rooms.room-card-equal figure,
    .box_cat_rooms figure {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .box_cat_rooms.room-card-tall figure,
    .box_cat_rooms.room-card-equal figure,
    .box_cat_rooms figure {
        min-height: 220px;
    }
}

/*============================================================================================*/
/* Modern Minimal Page Headers */
/*============================================================================================*/
.page-header-minimal {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.page-header-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-overlay.png') repeat;
    opacity: 0.03;
}

.page-header-minimal .container {
    position: relative;
    z-index: 2;
}

.page-header-minimal small {
    color: #c8a97e;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.page-header-minimal h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-header-minimal .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header-minimal .breadcrumb-item {
    font-size: 0.9rem;
}

.page-header-minimal .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header-minimal .breadcrumb-item a:hover {
    color: #c8a97e;
}

.page-header-minimal .breadcrumb-item.active {
    color: rgba(255,255,255,0.5);
}

.page-header-minimal .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: "›";
}

@media (max-width: 767px) {
    .page-header-minimal {
        padding: 80px 0 40px;
    }
    
    .page-header-minimal h1 {
        font-size: 1.8rem;
    }
}
/*============================================================================================*/
/* Kickstart-Style Facilities Process Section */
/*============================================================================================*/
.facilities-process {
    padding: 90px 0 100px;
    background: #f9fafb; /* Light gray like kickstart bg-background-2 */
}

.facilities-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 992px) {
    .facilities-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 140px;
    }
}

/* Left Side - Intro Content */
.facilities-intro {
    flex: 1;
    max-width: 100%;
    text-align: center;
}

@media (min-width: 992px) {
    .facilities-intro {
        position: sticky;
        top: 112px;
        max-width: 520px;
        text-align: left;
    }
}

.facilities-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200, 169, 126, 0.15);
    color: #c8a97e;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.facilities-intro h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1c;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 529px;
}

@media (min-width: 768px) {
    .facilities-intro h2 {
        font-size: 3.25rem;
    }
}

.facilities-intro p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 620px;
}

.facilities-intro .btn_1 {
    display: inline-block;
}

/* Right Side - Stacking Cards (Kickstart style) */
.facilities-stack.stack-cards {
    --stack-cards-gap: 24px;
    flex: 1;
    max-width: 100%;
}

@media (min-width: 992px) {
    .facilities-stack.stack-cards {
        max-width: 483px;
    }
}

/* Stack Cards - Kickstart exact styling */
.stack-cards {
    --stack-cards-gap: 20px;
    position: relative;
}

.stack-cards__item {
    position: sticky;
    top: 120px; /* Space for floating header */
    transform-origin: top center;
    overflow: hidden;
    will-change: transform; /* Performance optimization for animations */
    /* No margin - JS handles spacing via translateY */
}

/* Z-index stacking - later cards on top */
.stack-cards__item:nth-child(1) { z-index: 1; }
.stack-cards__item:nth-child(2) { z-index: 2; }
.stack-cards__item:nth-child(3) { z-index: 3; }
.stack-cards__item:nth-child(4) { z-index: 4; }
.stack-cards__item:nth-child(5) { z-index: 5; }
.stack-cards__item:nth-child(6) { z-index: 6; }

/* Card wrapper with simple border */
.stack-card-wrapper {
    padding: 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(200, 169, 126, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Card Content */
.stack-card-content {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.stack-card-text {
    flex: 1;
}

.stack-card-text h5 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1c;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.stack-card-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}

.stack-card-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 126, 0.08);
    border-radius: 16px;
}

.stack-card-icon i {
    font-size: 36px;
    color: #c8a97e;
}

/* Booking Steps Indicator */
.booking-steps {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

.booking-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.booking-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(200, 169, 126, 0.15);
    color: #c8a97e;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Booking Section - Fix dropdown z-index */
#booking_section {
    position: relative;
    z-index: 10;
}

#booking_section .booking_wrapper {
    position: relative;
    z-index: 11;
}

#booking_section .custom_select {
    position: relative;
    z-index: 12;
}

#booking_section .nice-select {
    z-index: 13;
}

#booking_section .nice-select.open {
    z-index: 100;
}

#booking_section .nice-select .list {
    z-index: 101;
}

/* Mobile adjustments - stack cards still sticky on mobile */
@media (max-width: 991px) {
    .stack-cards__item {
        /* Keep sticky positioning for animation to work */
        position: sticky;
        top: 90px; /* Space for mobile header */
    }
    
    .facilities-stack.stack-cards {
        /* Give more height for scrolling effect */
        min-height: 50vh;
    }
    
    /* Ensure parent layout doesn't break sticky */
    .facilities-layout {
        overflow: visible;
    }
    
    .facilities-process {
        overflow: visible;
    }
}

@media (max-width: 767px) {
    .facilities-process {
        padding: 60px 0 80px;
        overflow: visible;
    }
    
    .facilities-layout {
        overflow: visible;
    }
    
    .facilities-intro h2 {
        font-size: 2rem;
    }
    
    .stack-card-content {
        padding: 24px;
        flex-direction: column;
        gap: 20px;
    }
    
    .stack-card-text p {
        max-width: 100%;
    }
    
    .stack-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .stack-card-icon i {
        font-size: 30px;
    }
    
    /* Mobile phone top offset */
    .stack-cards__item {
        top: 80px;
        position: sticky;
    }
}

/*============================================================================================*/
/* Fix: Layer blocking clicks when hidden */
/*============================================================================================*/
.layer {
    pointer-events: none;
}

.layer.layer-is-visible {
    pointer-events: auto;
}

/* Fix: Popup wrapper should not block clicks when hidden */
.popup_wrapper {
    pointer-events: none;
}

/*============================================================================================*/
/* Fix: Restaurant Menu Item on pattern_3 background */
/*============================================================================================*/
.pattern_3 .menu_item .menu_title h3,
.pattern_3 .menu_item .menu_title em {
    background-color: transparent;
}

.pattern_3 .menu_item .menu_title {
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed #d5d5d5;
    padding-bottom: 8px;
}

/*============================================================================================*/
/* Contact Page Clean Styles */
/*============================================================================================*/
.contact_info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact_info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_info ul li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact_info ul li:last-child {
    border-bottom: none;
}

.contact_info ul li i {
    font-size: 24px;
    color: #C8A97E;
    margin-bottom: 10px;
    display: block;
}

.contact_info ul li h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact_info ul li p,
.contact_info ul li div {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.contact_info ul li a {
    color: #C8A97E;
}

.map_contact {
    height: 450px;
    position: relative;
}

.map_contact iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Compact Contact Info */
.contact_info.compact {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-top: 50px;
}

.contact_info.compact .contact_row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact_info.compact .contact_row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact_info.compact .contact_row:first-child {
    padding-top: 0;
}

.contact_info.compact .contact_row i {
    font-size: 18px;
    color: #C8A97E;
    width: 20px;
    margin-top: 2px;
}

.contact_info.compact .contact_row strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.contact_info.compact .contact_row span,
.contact_info.compact .contact_row a {
    font-size: 14px;
    color: #666;
}

.contact_info.compact .contact_row a:hover {
    color: #C8A97E;
}

.btn_1.small {
    padding: 8px 18px;
    font-size: 12px;
}

/*============================================================================================*/
/* Menu of the Day - Price Styling */
/*============================================================================================*/
.menu-section .txt_container ul li h3 .price {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: #C8A97E;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 767px) {
    .menu-section .txt_container ul li h3 .price {
        float: none;
        display: block;
        margin-top: 5px;
        font-size: 13px;
    }
}

/*============================================================================================*/
/* Menu of the Day - Logo Styling */
/*============================================================================================*/
.menu-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.menu-day-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
}

.menu-section .intro h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .menu-day-logo {
        width: 150px;
    }
    
    .menu-section .intro h1 {
        font-size: 2rem;
    }
}