/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.outdoor-weadding-iconlist .elementor-icon-list-items.elementor-inline-items{
    row-gap: 16px;
}
.head_menu_list .hfe-nav-menu .menu-item {
    border-bottom: 1px solid black;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease; /* smooth slide effect */
}
.sticky_menu_buttons{
    position: sticky;
    top: 0;
}
@media(max-width: 768px){
    .sticky_menu_buttons{
        position: static;
    }
    .open_head_menu .elementor-button{
        border-color: #C37B5B !important;
        color: #C37B5B !important;
    }
}
.desktop_header_menu{
    flex: 1;
}

.head_menu_list .hfe-nav-menu .menu-item::before {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;   /* arrow size */
    height: 24px;
    background: url('/wp-content/uploads/2025/08/right-arrow.png') no-repeat center;
    background-size: contain;
    opacity: 0; /* hidden by default */
    transition: opacity 0.3s ease; /* smooth fade in */
}

/* Hover effect */
.head_menu_list .hfe-nav-menu .menu-item:hover {
    padding-left: 24px; /* text slides to the right */
}

.head_menu_list .hfe-nav-menu .menu-item:hover::before {
    opacity: 1; /* arrow fades in */
}

/* Fullscreen menu hidden by default */
.head_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;  /* change background color */
    transform: translateX(100%); /* hide offscreen */
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;

    /* Hide scrollbar but keep scroll functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* When active */
.head_menu.active {
    transform: translateX(0);
}

/* Disable scroll on body when menu is open */
body.menu-open {
    overflow: hidden;
}

.footer_menu .hfe-nav-menu li {
    display: inline-block; /* so they sit side by side */
    margin: 0 5px;
    position: relative;
}

.footer_menu .hfe-nav-menu li:not(:last-child)::after {
    content: "/";
    color: #fff;       
    position: absolute;
    font-size: 24px;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .footer_menu .hfe-nav-menu li:not(:last-child)::after {
        right: -12px;
        font-size: 14px;
    }
    .open_menu_head{
        max-height: fit-content;
    }
    .head_menu_list .hfe-nav-menu .menu-item {
        border-bottom: 1px solid #C37B5B;
    }
    .head_menu_list .hfe-nav-menu .menu-item::before {
        background: url('/wp-content/uploads/2025/08/arrow-right.svg') no-repeat center;
        opacity: 1;
    }
}



/* Banner slider sshortcode  */
.home_banner_slider_wrapper {
    position: relative;
    overflow: hidden;
}
.home_banner_slider {
    width: 100%;
    margin-bottom: 0 !important;
    /* height: 600px; */
    height: calc(100vh - 99px);
}
.home_banner_slide_item img.home_banner_slide_img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.home_banner_slider .slick-list {
    height: 100%;
}
.home_banner_slider .slick-track {
    height: 100%;
}
.home_banner_slider .home_banner_slide_item {
    height: 100%;
}
.home_banner_content {
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.home_banner_content_wrapper{
    max-width: 1340px;
    padding: 0 20px;
    width: -webkit-fill-available;
    margin: 0 auto;
    box-sizing: border-box;
}
.home_banner_dots {
    margin-top: 15px;
}
.home_banner_dots .slick-dots{
    display: flex;
    gap: 40px;
    text-align: start;
}
.home_banner_dots .slick-dots li{
    height: 2px;
}
.home_banner_dots .slick-dots li button{
    padding: 0;
    width: 0;
    height: 0;
}
.home_banner_dots .slick-dots li button::before{
    padding: 0;
    height: 2px;
    content: ' ' !important;
    width: 50px;
    background-color: #C37B5B;
    border-radius: 20px;
}
.home_banner_head{
    margin: 0;
    font-family: "Cormorant Garamond", Sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    line-height: 60px;
    letter-spacing: -2%;
}
.home_banner_para{
    margin: 0;
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    max-width: 773px;
    letter-spacing: -2%;
}

@media(max-width: 768px) {
    .home_banner_slider {
        height: 500px;
    }
    .home_banner_head {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 8px;
    }
    .home_banner_content{
        width: 100%;
        padding: 0 20px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 16px;
        padding: 0 24px;
    }
    .home_banner_content_wrapper{
        padding: 0;
    }
    .home_banner_dots {
        margin-top: 24px;
    }
    .home_banner_dots .slick-dots{
        bottom: 0 !important;
    }
}




/* second sec home page */
.Second_sec_buttons a .elementor-button-content-wrapper .elementor-button-icon svg{
    width: 24px;
}

/* dining section  */
.Sticky_dining_sec{
    position: sticky;
    top: 0;
}
@media (max-width: 768px) {
    .Sticky_dining_sec{
        position: relative;
    }
}




/* Rooms & Suites Shortcode  */
.rooms_slider_wrapper {
    width: 100%;
    margin: 0 auto;
}
.rooms_slider_item:last-child {
    margin-right: 0;
}
.rooms_slider_item {
    width: 550px;
    margin-right: 20px;
    overflow: hidden;
}
.rooms_slider_img img {
     width: 100%;
    display: block;
    height: 380px;          /* fixed height so all images match */
    object-fit: cover;
    object-position: center;
}
.rooms_slider_content {
    padding: 16px 0 0;
}
.rooms_slider_title {
    font-family: "Onest", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #775B4D;
    margin-top: 0;
    margin-bottom: 32px;
}
.rooms_slider_meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.rooms_slider_meta span {
    display: flex;
    align-items: center;
    font-size: 14px !important;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    gap: 8px;
    color: #775B4D;
}
.rooms_slider_meta span img{
    height: 20px;
    width: 20px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.rooms_slider_link:hover {
    text-decoration: none;
    color: #C37B5B;
}
.rooms_slider_link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.rooms_slider_link {
    color: #C37B5B;
    font-weight: 600;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #C37B5B;
    text-transform: uppercase;
    line-height: 35px;
    align-items: center;
    max-width: 208px;
    display: flex;
    padding-bottom: 4px;
    text-decoration: none !important;
    justify-content: space-between;
}
.rooms_slider_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 44px;
}
.rooms_slider_progress {
    flex: 1;
    height: 4px;
    background: #eee;
    margin-right: 40px;
    border-radius: 2px;
    overflow: hidden;
}
.rooms_slider_progress_bar {
    width: 0%;
    height: 100%;
    background: #000;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rooms_slider_arrows
{
    display: flex;
    gap: 10px;
}
.rooms_slider_arrows button {
    background: none;
    border: none;
    padding: 0 !important;
    cursor: pointer;
}
/* Equal-height slide fix */
.rooms_slider_wrapper .slick-track {
    display: flex !important;
    align-items: stretch !important;
}
.rooms_slider_wrapper .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}
.rooms_slider_wrapper .slick-slide > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.rooms_slider_item {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
@media(max-width: 1024px){
    .rooms_slider_meta {
        flex-wrap: wrap;
    }
    .rooms_slider_arrows{
        display: none;
    }
    .rooms_slider_progress{
        margin-right: 0;
    }
    .rooms_slider_img{
        height: 400px;
        display: flex;
    }
    .rooms_slider_img img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    .rooms_slider_title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .rooms_slider_meta {
        gap: 10px;
    }
    .rooms_slider_meta {
        margin-bottom: 8px;
    }
    .rooms_slider_item {
        margin-right: 24px;
    }
    .rooms_slider_controls {
        margin-top: 40px;
    }
}


/* Moments Slider */
/* ===============================
   Moments Slider – Image Overlay
   =============================== */

.moments_slider_item .moments_slider_img {
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.moments_slider_item .moments_slider_img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Centered text */
.moments_slider_item .moments_slider_img::before {
  content: //@GenoHotel →;
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 20px;
  font-weight: 600;

  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;

  border-bottom: 2px solid transparent;
}

/* Hover effects */
//moments_slider_item:hover .moments_slider_img::after {
  opacity: 0.6;
}

//moments_slider_item:hover .moments_slider_img::before {
  opacity: 1;
  border-bottom: 2px solid #ffffff;
}


/* ===============================
   Moments Slider Layout
   =============================== */

.moments_slider_wrapper {
  width: 100%;
  margin: 0 auto;
}

.moments_slider_item {
  width: 550px;
  margin-right: 20px;
  overflow: hidden;
}

.moments_slider_item:last-child {
  margin-right: 0;
}

.moments_slider_img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* ===============================
   Controls
   =============================== */

.moments_slider_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
}

.moments_slider_progress {
  flex: 1;
  height: 4px;
  background: #eee;
  margin-right: 40px;
  border-radius: 2px;
  overflow: hidden;
}

.moments_slider_progress_bar {
  width: 0%;
  height: 100%;
  background: #000;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.moments_slider_arrows {
  display: flex;
  gap: 10px;
}

.moments_slider_arrows button {
  background: none;
  border: none;
  padding: 0 !important;
  cursor: pointer;
}


/* ===============================
   Slick adjustments
   =============================== */

.moments_slider_wrapper .slick-list {
  overflow: visible !important;
}


/* ===============================
   Mobile
   =============================== */

@media (max-width: 768px) {
  .moments_slider_img {
    height: 400px;
  }

  .moments_slider_arrows {
    display: none;
  }

  .moments_slider_progress {
    margin-right: 0;
  }

  .moments_slider_controls {
    margin-top: 48px;
  }

  .moments_slider_item {
    margin-right: 24px;
  }
}



/* happenings section  */
.happenings_container {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
}
.happenings_item {
    flex: 1;
    min-width: 0;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.happenings_image img {
    width: 100%;
    /*object-fit: cover;*/
    object-position: center;
    margin-bottom: 12px;
}
.happenings_image{
    height: auto;
    width: 100%;
    display: block;
}
.happenings_title {
    font-family: "Onest", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: black;
    padding: 16px 0;
    margin: 0;
    border-bottom: 1px solid black;
}
.happenings_excerpt p {
    margin-top: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: black;
}
.happenings_button {
    color: #C37B5B;
    font-weight: 600;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #C37B5B;
    text-transform: uppercase;
    line-height: 35px;
    align-items: center;
    max-width: 208px;
    display: flex;
    padding-bottom: 4px;
    text-decoration: none !important;
    justify-content: space-between;
}
.happenings_button img{
    height: 24px;
    width: 24px;
    object-fit: contain;
}

/* Mobile Slider */
.happenings_slider_wrapper {
    display: none; /* hidden by default */
}
.happenings_slider_item {
    width: 90%;
    margin-right: 20px;
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}
.happenings_slider_item_meta{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.happenings_slider .slick-track{
    display: flex;
}
.happenings_slider_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.happenings_slider_title {
    font-family: "Onest", Sans-serif;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    min-height: 88px;
    color: black;
    padding: 16px 0;
    border-bottom: 1px solid black;
}
.happenings_slider_excerpt p {
    margin-top: 16px;
    display: -webkit-box;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: black;
}
.happenings_slider_link {
    color: #C37B5B;
    font-weight: 600;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #C37B5B;
    text-transform: uppercase;
    line-height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    text-decoration: none !important;
    margin-top: 16px;
}
.happenings_slider_controls {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 24px;
}
.happenings_slider_progress {
    height: 4px;
    background: #eee;
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
}
.happenings_slider_progress_bar {
    width: 0%;
    height: 100%;
    background: #939393;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.happenings_slider_elemnentor_div{
    overflow: visible;
}

/* Responsive Switch */
@media (max-width: 768px) {
    .happenings_container { display: none; }
    .happenings_slider_wrapper { display: block; }
}


/* rooms page css */
.rooms_suite_section {
    margin-bottom: 80px;
}
.rooms_suite_meta .divider {
    position: relative;
    padding-right: 15px;
}

.rooms_suite_meta .divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 16px;
    background-color: #d1d1d1;
}
/* Deluxe Section Layout */
.deluxe_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    margin-top: 110px;
}

.deluxe_left_column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.deluxe_right_column {
    display: flex;
    flex-direction: column;
    gap: 57px;
}

.deluxe_intro_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deluxe_section_title {
    font-family: Cormorant Garamond;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2%;
    color: #C37B5B;
    margin: 0;
    margin-bottom: 16px;
}

.deluxe_intro_description {
    font-family: Onest;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 20px;
}

/* Suites Section Layout */
.suites_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    margin-top: 110px;
}

.suites_left_column {
    display: flex;
    flex-direction: column;
    gap: 57px;
}

.suites_right_column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.suites_intro_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.suites_left_column .rooms_suite_card{
    position: sticky;
    top: 0;
    padding-top: 48px;
}

.suites_section_title {
    font-family: Cormorant Garamond;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2%;
    color: #C37B5B;
    margin: 0;
    margin-bottom: 16px;
}

.suites_intro_description {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: Onest;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}

/* Common Card Styles */
.rooms_suite_card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
.deluxe_right_column .rooms_suite_card{
    position: sticky !important;
    top: 0 ;
    padding-top: 48px;
}

.rooms_suite_img {
    flex: 0 0 450px;
    position: relative;
}

.rooms_suite_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rooms_suite_content {
    padding: 28px 0px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rooms_suite_title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    font-family: "Onest", Sans-serif;
}

.rooms_suite_desc {
    color: #7a7a7a;
    margin-bottom: 14px;
    font-family: Onest;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.rooms_suite_meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
    overflow-x: auto;
}

.rooms_suite_meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rooms_suite_meta img {
    display: inline-block;
    filter: grayscale(1) brightness(0.7);
    width: 18px;
    height: 18px;
}

.rooms_suite_link {
    display: inline-flex;
    justify-content: space-between;
    border-bottom: 1px solid #C37B5B;
    width: 44%;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #C37B5B;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    transition: color 0.2s;
}

.rooms_suite_link:hover {
    color: #a06a2a;
    text-decoration: none;
}

.arrow_icon {
    padding-left: 123px;
}


/* Special styling for intro sections */
.intro_link {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #C37B5B;
    width: 42%;
    gap: 6px;
    font-weight: 500;
    color: #C37B5B;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.intro_link:hover {
    color: #a06a2a;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .deluxe_container,
    .suites_container {
        grid-template-columns: 1fr;
    }
    
    .deluxe_left_column,
    .deluxe_right_column,
    .suites_left_column,
    .suites_right_column {
        gap: 48px;
    }
    .suites_left_column .rooms_suite_card,
    .deluxe_right_column .rooms_suite_card{
        padding-top: 0;
    }
    .rooms_suite_card {
        min-height: auto;
    }
    
    .rooms_suite_meta {
        flex-wrap: wrap;
    }
    .deluxe_container{
        margin-top: 0px;
    }
    .suites_container{
        margin-top: 0px;
    }
    .deluxe_right_column {
        order: 1; /* show it first */
    }
    
    .deluxe_left_column {
        order: 2; /* push it down */
    }
    .deluxe_container,
    .suites_container {
        gap: 48px;
    }
    .rooms_suite_content {
        padding: 20px 0px 0px;
    }
    .rooms_suite_section{
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {        
    .rooms_suite_img {
        flex: 0 0 450px;
    }
    .rooms_suite_meta {
        gap: 22px;
    }
    
    .intro_link,
    .rooms_suite_link {
        width: 100%;
    }
    
    .arrow_icon {
        padding-left: 277px;
    }
    
    .rooms_suite_title {
        padding: 22px 0 20px;
    }
    .deluxe_section_title,.suites_section_title{
        font-size: 32px;
    }
    .deluxe_intro_row {
        display: flex;
        flex-direction: column;
    }   
}





/* Request For Proposal form css  */
.requestform form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.proposal_form_row p label{
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #C37B5B;
}
.proposal_form_row p{
    margin: 0;
}
.proposal_form_row_half input{
    border: 1px solid #C37B5B !important;
    padding: 35px 12px 15px !important;
    outline: none;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #272626;
}
/* Hide calendar icon in date field */
/* .proposal_form_row_half input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  appearance: none;
} */

/* Hide spinner (up/down arrows) in number input - Chrome, Safari, Edge */
.proposal_form_row_half input[type="number"]::-webkit-inner-spin-button,
.proposal_form_row_half input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.proposal_form_row textarea {
    padding: 23px 0px 68px !important;
    height: 118px;
}
/* Hide spinner in Firefox */
.proposal_form_row_half input[type="number"] {
  -moz-appearance: textfield;
}
.proposal_form_row_half{
    border: none !important;
    padding: 0 !important;  
}
.proposal_form_row_half p span{
    flex: 1;
}
.proposal_form_row_half p{
    display: flex;
    gap: 12px;
}
.proposal_form_row input,
.proposal_form_row textarea{
    outline: none;
    border: none;
    padding: 0;
	background:#ffffff;
}

.proposal_form_row{
    border: 1px solid #C37B58;
    padding: 10px 12px 15px;
	background: #fff;
}
.proposal_form_row_submit input[type="submit"]:hover{
    background: #fff;
    color: #C37B5B;
}
.proposal_form_row_submit input[type="submit"]{
    border: 1px solid #C37B5B;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    background: #C37B5B;
    line-height: 40px;
    color: #fff;
}
.proposal_form_row_submit p{
    margin: 0;
}
.proposal_form_row_half span[data-name="proposal_form_number"]::after {
    position: relative;
}
.proposal_form_row_half span[data-name="proposal_form_number"]::after {
    position: absolute;
    content: 'No of Pax';
    top: 10px;
    left: 12px;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #C37B5B;
}
.proposal_form_row_half span[data-name="proposal_form_date"]::after {
    position: relative;
}
.proposal_form_row_half span[data-name="proposal_form_date"]::after {
    position: absolute;
    content: 'Date Of Event';
    top: 10px;
    left: 12px;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #C37B5B;
}
.proposal_form_row [data-name="proposal_form_message"] {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;

}

.proposal_form_row [data-name="proposal_form_message"]::after {
  content: 'Message';
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Onest", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #C37B5B;
  pointer-events: none;
}
.wpcf7-spinner{
    display: none;
}

@media(max-width: 768px){
    .proposal_form_row_half p{
        flex-direction: column;
    }
    .requestform form{
        gap: 20px;
    }
}





/* Gallery Slider  shortcode */
.gallery_slider_wrapper {
    width: 100%;
    margin: 0 auto;
}
.gallery_slider_item:last-child {
    margin-right: 0;
}
.gallery_slider_item {
    height: 400px !important;
    margin-right: 20px;
    overflow: hidden;
}
.gallery_slider_img{
    display: flex;
    height: 100%;
    width: 100%;
}
.gallery_slider_img img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery_slider_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
}
.gallery_slider_progress {
    flex: 1;
    height: 4px;
    background: #939393;
    margin-right: 40px;
    border-radius: 2px;
    overflow: hidden;
}
.gallery_slider_progress_bar {
    width: 0%;
    height: 100%;
    background: #1A1F37;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery_slider_arrows {
    display: flex;
    gap: 10px;
}
.gallery_slider_arrows button {
    background: none;
    border: none;
    padding: 0 !important;
    display: flex;
    cursor: pointer;
}
.gallery_slider_wrapper .slick-list {
    overflow: visible !important;
}
@media(max-width: 768px){
    .gallery_slider_img{
        height: 400px;
    }
    .gallery_slider_arrows{
        display: none;
    }
    .gallery_slider_progress{
        margin-right: 0;
        height: 2px;
    }
    .gallery_slider_controls {
        margin-top: 30px;
    }
    .gallery_slider_item {
        margin-right: 24px;
    }
	.gallery_slider_img img {
		height: 250px;
}
}



/* dining page gallery slider  shortcode  */
.dining_sliders_wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    
}
/* ensure slides occupy full width and no permanent padding/margin */
.dining_sliders_wrapper .slick-track { display: flex; align-items: stretch; }
.dining_sliders_wrapper .slick-slide { box-sizing: border-box; transition: transform 0.6s ease; }

.dining_sliders_item {
    height: 600px !important;
    overflow: hidden;
    width: 100% !important;
}
.dining_sliders_img {
    display: flex;
    height: 100%;
    width: 100%;
}
.dining_sliders_img img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.dining_sliders_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
.dining_sliders_progress {
    flex: 1;
    height: 2px;
    background: #939393;
    border-radius: 2px;
    overflow: hidden;
}
.dining_sliders_progress_bar {
    width: 0%;
    height: 100%;
    background: #1A1F37;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dining_sliders_arrows {
    display: flex;
    gap: 8px;
}
.dining_sliders_arrows button .copper_section_arrows{
    display: none;
}
.copper_section_shortcode .dining_sliders_arrows button .copper_section_arrows{
    display: block !important;
}
.copper_section_shortcode .dining_sliders_arrows button .normal_arrow{
    display: none !important;
}
.dining_sliders_arrows button {
    background: none;
    border: none;
    padding: 0 !important;
    display: flex;
    cursor: pointer;
}
.dining_sliders_wrapper .slick-list {
    overflow: visible !important;
}
.copper_section_shortcode .dining_sliders_progress_bar{
    background: #C37B5B !important;
}
@media(max-width: 768px){
    .dining_sliders_arrows{
        display: none;
    }
    .dining_sliders_progress{
        margin-right: 24px;
        height: 2px;
    }
    .dining_sliders_controls {
        margin-top: 30px;
    }
    .dining_sliders_item:last-child{
        margin-right: 0px;
    }
    .dining_sliders_item {
        padding-right: 16px;
        height: 400px !important;
    }
    .dining_sliders_wrapper .slick-track{
        overflow: visible !important;
    }
    .dining_sliders_wrapper {
        overflow: visible !important;
    }
    .dining_slider_main_sections{
        overflow: hidden !important;
    }
}




/* dining page js css of popup handle function */
/* Hidden state */
.custom-popup-hidden {
    display: none !important;
}

/* Visible popup base */
.custom-popup-visible {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    /* animation defaults */
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Start state when opening */
.custom-popup-visible.animating {
    opacity: 0;
    transform: scale(0.9);
}

/* Closing animation */
.custom-popup-visible.closing {
    opacity: 0;
    transform: scale(0.9);
}












/* facilities sliders facilities page [facilities_sliders] */
.facilities_sliders_wrapper {
    width: 100%;
    margin: 0 auto;
}
.facilities_sliders_item:last-child {
    margin-right: 0;
}
.facilities_sliders_item {
    margin-right: 16px;
    overflow: hidden;
}
.facilities_sliders_img img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.facilities_sliders_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
}
.facilities_sliders_img{
    height: 400px;
}
.facilities_sliders_progress {
    flex: 1;
    height: 4px;
    background: #939393;
    margin-right: 40px;
    border-radius: 2px;
    overflow: hidden;
}
.facilities_sliders_progress_bar {
    width: 0%;
    height: 100%;
    background: #1A1F37;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.facilities_sliders_arrows {
    display: flex;
    gap: 10px;
}
.facilities_sliders_arrows button {
    background: none;
    border: none;
    padding: 0 !important;
    cursor: pointer;
}
.facilities_sliders_wrapper .slick-list {
    overflow: visible !important;
}
.gym_slider_facilities .facilities_sliders_progress_bar{
    background: #C37B5B;
}
.gym_slider_facilities .facilities_sliders_progress{
    background: #fff;
}
.gym_slider_facilities .facilities_sliders_prev img{
    content: url('/wp-content/uploads/2025/09/arrow-right1.svg');
}
.gym_slider_facilities .facilities_sliders_next img{
    content: url('/wp-content/uploads/2025/09/arrow-right.svg');
}
@media(max-width: 768px){
    .facilities_sliders_img{
        height: 400px;
    }
    .facilities_sliders_arrows{
        display: none;
    }
    .facilities_sliders_progress{
        margin-right: 0;
    }
    .facilities_sliders_controls {
        margin-top: 30px;
    }
    .facilities_sliders_item {
        margin-right: 16px;
    }
}



/* newsletter page form  */
.newletter_form p{
    margin: 0;
    display: flex;
    gap: 16px;
    justify-content: end;
}
.newletter_form p input[type="email"]::placeholder{
    color: #C37B5B;
    opacity: 1;
}
.newletter_form p input[type="email"]{
    background: #FFFFFF;
    border: 1px solid #C37B5B;
    padding: 0 8px;
    display: flex;
    outline: none;
    border-radius: 0;

    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    max-width: 491px;
    color: #C37B5B;
}
.newletter_form p input[type="submit"]{
    padding: 0 16px;
    display: flex;
    background: #C37B5B;

    border: 1px solid #C37B5B;
    outline: none;
    border-radius: 0;
    width: 114px;
    justify-content: center;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    color: #FFFFFF;

}
@media(max-width: 768px){
    .newletter_form p{
        flex-direction: column;
        gap: 24px;
    }
    .newletter_form p input[type="submit"]{
        width: 100%;
    }
}





/* [special_offers_list] shortcode speacial offer page  */
.special_offers_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 16px;
    justify-content: start;
}
.special_offers_item{
    width: calc(33% - 8px);
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.special_offers_thumb{
    width: 100%;
    height: 300px;
    display: flex;
}
.special_offers_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: flex;
}
.special_offers_meta{
    display: flex;
    flex: 1;
    flex-direction: column;
}
.special_offers_terms{
    display: flex;
    gap: 10px;
}
.special_offers_term{
    background: #C37B5B;
    padding: 0 8px;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    color: #FFFFFF;
}
.special_offers_title{
    border-bottom: 1px solid #939393;
    padding: 16px 0px;
    text-decoration: none !important;
    font-family: "Onest", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
    color: #000000;
}
.special_offers_content p{
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    margin-bottom: 16px;
}
.special_offers_learnmore img{
    height: 24px;
    width: 24px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.special_offers_learnmore:hover{
    color: #C37B5B !important;
}
.special_offers_learnmore{
    text-decoration: none !important;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    color: #C37B5B;

    display: flex;
    width: fit-content;
    text-transform: uppercase;
    align-items: center;
    gap: 80px;
    margin-top: auto;
    border-bottom: 1px solid #C37B5B;
    padding-bottom: 4px;
}
/* Spinner */
.special_offers_spinner {
    width:48px; height:48px; border-radius:50%; border:4px solid rgba(1,1,1,0.06);
    border-top-color:#010145; animation:special_offers_spin .8s linear infinite;
}
@keyframes special_offers_spin { to { transform: rotate(360deg); } }

/* Append animation */
.special_offers_item.new { opacity:0; transform: translateY(18px); }
.special_offers_item.fade-in { animation: special_offers_fade .45s cubic-bezier(.2,.9,.2,1) forwards; }
@keyframes special_offers_fade {
    to { opacity:1; transform:none; }
}

/* Actions */
.special_offers_actions { text-align:center; margin-top:18px; }
.special_offers_actions .special_offers_loadmore,
.special_offers_actions .special_offers_showless {
    background:#010145; color:#fff; border:0; padding:10px 18px; border-radius:8px; cursor:pointer;
}
@media (max-width: 1024px) {
    .special_offers_item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 600px) {
    .special_offers_item {
        width: 100%;
    }
}



/* [happenings_posts posts_per_page="4"] shortcode happenings page  */
/* Loader */
.happenings_posts_loading_overlay {
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.7); z-index:10;
}
.happenings_posts_spinner {
    width:40px; height:40px; border:4px solid rgba(0,0,0,.1);
    border-top-color:#010145; border-radius:50%;
    animation:happenings_posts_spin .8s linear infinite;
}
@keyframes happenings_posts_spin { to { transform:rotate(360deg); } }

/* Animation for newly added posts */
.happenings_posts_item.new { opacity:0; transform:translateY(15px); }
.happenings_posts_item.fade-in { animation:happenings_posts_fade .45s cubic-bezier(.2,.9,.2,1) forwards; }
@keyframes happenings_posts_fade { to { opacity:1; transform:none; } }

.happenings_posts_list{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.happenings_posts_item{
    display: flex;
    gap: 98px;
    border-bottom: 1px solid #939393;
    padding-bottom: 40px;
}
.happenings_posts_item:last-child{
    border: none !important;
}
.happenings_posts_actions{
    display: flex;
    justify-content: center;
    padding: 10px;
}
.happenings_posts_loadmore:hover,
.happenings_posts_loadmore:active,
.happenings_posts_loadmore:focus{
    background: transparent;
    color: #C37B5B;
}
.happenings_posts_loadmore{
    border-bottom: 1px solid #C37B5B;
    border-top: none;
    border-left: none;
    border-right: none;
    background: none;
    border-radius: 0;
    outline: none;
    padding: 0;

    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    color: #C37B5B;
}
.happenings_posts_showless:hover,
.happenings_posts_showless:active,
.happenings_posts_showless:focus{
    background: transparent;
    color: #C37B5B;
}
.happenings_posts_showless{
    border-bottom: 1px solid #C37B5B;
    border-top: none;
    border-left: none;
    border-right: none;
    background: none;
    border-radius: 0;
    outline: none;
    padding: 0;

    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    color: #C37B5B;
}
.happenings_posts_slider_wrap{
    width: 372px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}
.happenings_posts_slider {
    height: 100%;
    width: 100%;
    display: flex;
}
.happenings_posts_slide{
    min-height: 465px;
    width: 100%;
    display: flex;
}
.happenings_posts_slide img{
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.happenings_posts_slider {
    height: 100%;
    width: 100%;
    display: flex;
}
.happenings_posts_body{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.happenings_posts_slider .slick-track{
    display: flex !important;
}
.happenings_posts_slider .slick-track .happenings_posts_slide {
    height: auto !important;
}
.happenings_posts_title{
    font-family: "Cormorant Garamond", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    line-height: 40px;
    color: #C37B5B;
}
.happenings_posts_body_meta{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.happenings_posts_body_buttons{
    display: flex;
    gap: 16px;
}
.happenings_posts_body_contact_us:hover{
    color: #fff;
}
.happenings_posts_body_contact_us{
    text-decoration: none !important;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    padding: 0 8px;
    display: flex;
    text-transform: uppercase;
    background: #C37B5B;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
}
.happenings_posts_body_learn_more:active,
.happenings_posts_body_learn_more:focus,
.happenings_posts_body_learn_more:hover{
    background: transparent;
    color: #C37B5B;
}
.happenings_posts_body_learn_more{
    border: 1px solid #C37B5B;
    outline: none;
    background: transparent;
    padding: 0 8px;
    display: flex;
    align-items: center;
    align-content: center;
    text-transform: uppercase;
    border-radius: 0;
    color: #C37B5B;
    flex-wrap: wrap;
    font-family: "Onest", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
}
.happenings_posts_body_list ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.happenings_posts_body_list ul li{
    display: flex;
    gap: 16px;
}
.happenings_posts_body_list ul img{
    height: 24px;
    width: 24px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.happenings_posts_body_list ul span{
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}
.happenings_posts_content p{
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}
.happenings_posts_content ul{
    padding-left: 25px;
}
.happenings_posts_content ul li{
    font-family: "Onest", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}


.happenings_posts_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.happenings_posts_progress {
    flex: 1;
    height: 2px;
    background: #939393;
    border-radius: 2px;
    overflow: hidden;
}
.happenings_posts_progress_bar {
    height: 100%;
    width: 0;
    background: #1A1F37;
    transition: width 0.3s linear;
}
.happenings_posts_prev:hover,
.happenings_posts_next:hover,
.happenings_posts_prev:active,
.happenings_posts_next:active,
.happenings_posts_prev:focus,
.happenings_posts_next:focus {
    background: none;
    outline: none;
    border: none;
}
.happenings_posts_prev,
.happenings_posts_next {
    border: none;
    outline: none;
    padding: 0;
    height: 40px;
    width: 40px;
    display: flex;
    background: none;
}
.happenings_posts_arrows{
    display: flex;
    gap: 8px;
}
@media (max-width: 767px) {
    .elementor-1377 .elementor-element.elementor-element-5bb62d8 .elementor-button {
        display: inline-block;
        white-space: nowrap;
    }
}
@media (max-width: 767px) {
    .elementor-1244 .elementor-element.elementor-element-67811be .elementor-button {
        display: inline-block;
        width: auto !important;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .elementor-1244 .elementor-element.elementor-element-cbd9c1a {
        --justify-content: flex-start;
        --flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .elementor-1244 .elementor-element.elementor-element-cbd9c1a::-webkit-scrollbar {
        display: none;
    }
}
/* ===== HAPPENINGS — MOBILE FIX ==== */

@media (max-width: 767px) {

    /* LIST */
    .happenings_posts_list {
        gap: 32px;
    }

    /* CARD */
    .happenings_posts_item {
        display: block;              /* KILLS DESKTOP FLEX */
        padding-bottom: 32px;
        border-bottom: 1px solid #E5E5E5;
    }

    /* IMAGE BLOCK */
    .happenings_posts_slider_wrap {
        width: 100% !important;      /* OVERRIDE 372px */
        margin-bottom: 20px;
        gap: 12px;
    }

    /* IMAGE SIZE (matches screenshot ratio) */
    .happenings_posts_slide {
        min-height: 220px;
    }

    .happenings_posts_slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* SLIDER CONTROLS */
    .happenings_posts_controls {
        margin-top: 12px;
        gap: 12px;
    }

    /* BODY */
    .happenings_posts_body {
        gap: 20px;
    }

    /* TITLE */
    .happenings_posts_title {
        font-size: 24px;
        line-height: 30px;
    }

    /* TEXT */
    .happenings_posts_content p,
    .happenings_posts_body_list ul span {
        font-size: 15px;
        line-height: 22px;
    }

    /* ICON LIST */
    .happenings_posts_body_list ul {
        gap: 10px;
    }

    .happenings_posts_body_list ul img {
        width: 20px;
        height: 20px;
    }

    /* BUTTONS INLINE */
    .happenings_posts_body_buttons {
        display: flex;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .happenings_posts_body_contact_us,
    .happenings_posts_body_learn_more {
        white-space: nowrap;
        padding: 0 12px;
    }
}

/* homepage room slider */
.rooms_slider_actions{
    display: flex;
    gap: 20px; /* space between buttons */
    align-items: center;
}

.rooms_slider_link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    padding-bottom: 6px;
	min-width:150px;
width:100%;
}


