/* ===================================================
   HOTEL LUXURY THEME
   Bootstrap 5 Custom Theme
=================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');


/* ===================================================
   ROOT VARIABLES
=================================================== */

:root{

--nav-gradient-left:#233345;
--nav-gradient-right:#1E2A38;

--primary-gold:#C6A75E;

--heading-color:#1E2A38;

--bg-light:#F6F1E8;
--nav-active: #E8DFC8;

--text:#2B2B2B;
--white:#ffffff;
--black:#000000;

--font-heading:'Imperial Script', cursive;
--font-body:'Inter', sans-serif;
    
    --bs-primary: #1E2A38;
    
    --bs-dropdown-link-active-bg: #1E2A38;

}

@media (min-width: 1366px) {
  .container {
    max-width: 1350px;
  }
}

/* ===================================================
   GLOBAL
=================================================== */

body{
font-family:var(--font-body);
color:var(--text);
background:#fff;
font-size: 1.146vw;
font-weight: 300;
}



img{
max-width:100%;
height:auto;
}

.page-section{
padding:70px 0;
position:relative;
}

.btn{
    border-radius: 0px;
    letter-spacing: -0.01rem;
}
/* ===================================================
   TYPOGRAPHY
=================================================== */

h1,h2,h3,h4,h5,h6{
/*font-family:var(--font-heading);*/
color:var(--heading-color);
letter-spacing:.5px;
margin-bottom:15px;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:10px;
}

.sub-title{
color:var(--primary-gold);
font-size:14px;
text-transform:uppercase;
letter-spacing:2px;
text-align:center;
margin-bottom:10px;
font-weight:500;
}


/* ===================================================
   NAVIGATION
=================================================== */

.navbar {
    background: transparent;
    padding: 16px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;

    /* smoother animation */
    transition: 
        background 0.4s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

/* Scroll state */
.navbar.nav-scrolled {
    background: linear-gradient(
        90deg,
        var(--nav-gradient-left),
        var(--nav-gradient-right)
    );

    padding: 10px 0; /* shrink effect */
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
}

.navbar.nav-scrolled {
    animation: navbarFade 0.4s ease forwards;
}

@keyframes navbarFade {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.nav-scrolled .btn.btn-login{
    display: none;
}

.navbar .nav-link {
    transition: color 0.3s ease;
}

.navbar.nav-scrolled .nav-link {
    color: #fff;
}


.navbar-brand, .custom-logo-link{
color:#fff;
font-weight:600;
width: 250px;
/*margin-right: 30px;
margin-left: 3.22vw; */
}
.navbar-expand-lg .navbar-collapse{
    padding-right: 5vw;
    padding-top: 10px;
}

.navbar-nav .nav-link{
color:var(--primary-gold);
font-weight:500;
padding:12px 18px;
transition:.3s;
}

.navbar-nav .nav-link:hover{
color: var(--nav-active);
}

.navbar-nav .nav-link.active{
color:var(--nav-active);
}

.navbar-toggler{
border:none;
}

.fwwf{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(95, 95, 95, 0) 100%);
    position: absolute;
    height: 4.2vw;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
}
.navbar-expand-lg .navbar-nav .nav-link{
padding-left: 15px;
padding-right: 15px;
color: var(--white);
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.042vw;
    font-weight: 400;
}

.navbar-expand-lg .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active{
    background-color: var(--nav-active);
    color: var(--black);
}

.btn.btn-login{
    padding-left: 0px;
    padding-right: 0px;
/*    border-bottom: 1px #FFF solid;*/
    color: #FFF;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 9px;
    margin-right: 20px;
    margin-left: 20px;
}


.dropdown-item.active, .dropdown-item:active{
    background-color: #333;
}


/* ===================================================
   HERO
=================================================== */

/* HERO */

.hero-section{
position:relative;
}

.heroSwiper{
height:650px;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
top:0;
left:0;
}

.hero-bg::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
top:0;
left:0;
}

.hero-content{
position:relative;
z-index:2;
height:650px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
}

.hero-content h1{
font-size:36px;
font-weight:400;
color:#fff;
}

.hero-content h1 span{
font-family:'Imperial Script';
font-size:70px;
    font-weight:400;
}

.hero-content p{
margin-top:15px;
font-size:18px;
    font-weight: 400;
}

.navbar .container{
    width: 100%;
    max-width: 100%;
}

/* BOOKING BAR */

.booking-bar{
position:absolute;
left:50%;
transform:translateX(-50%);
bottom: 40px;
background:#fff;
padding:15px 15px;
box-shadow:0 10px 40px rgba(0,0,0,.15);
border-radius:0px;
max-width:900px;
        z-index: 9;
}

.booking-bar label{
font-size:13px;
color:#666;
display:block;
margin-bottom:3px;
    margin-left: 10px;
}

.booking-bar .form-control,
.booking-bar .form-select{
border:none;
box-shadow:none;
}

.booking-bar .btn{
height:52px;
padding:0 18px;
}


.swiper-button-prev, .swiper-rtl .swiper-button-next{
    background: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after{
    color: #000;
    background: #FFF;
    font-size: 18px;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev{
     background: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after{
    color: #000;
    background: #FFF;
    font-size: 18px;
}



/* Guest dropdown */

.guest-dropdown{
position:relative;
}

.guest-box{
position:absolute;
background:#fff;
top:55px;
left:0;
width:260px;
box-shadow:0 15px 30px rgba(0,0,0,.15);
padding:15px;
display:none;
z-index:10;
}

.guest-box.show{
display:block;
}

.guest-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.qty{
display:flex;
align-items:center;
gap:5px;
}

.qty button{
width:28px;
height:28px;
border:1px solid #ddd;
background:#fff;
}

.qty input{
width:40px;
text-align:center;
border:none;
}




/* ===================================================
   BUTTONS
=================================================== */

.btn-gold{
background:var(--primary-gold);
color:#fff;
border:none;
padding:12px 22px;
font-weight:500;
border-radius:0px;
transition:.3s;
font-size: 1.042vw;
line-height: 17px;
text-transform: uppercase;
    
}

.btn-gold:hover{
background:#a88739;
color:#fff;
}

.btn-outline-gold{
border:1px solid var(--primary-gold);
color:var(--primary-gold);
padding:10px 26px;
}

.btn-outline-gold:hover{
background:var(--primary-gold);
color:#fff;
}


.nav-link.btn-lang{
    border: 1px #FFF solid;
    color: #FFF;
    padding: 9px 10px 9px 10px;
}

.language-dropdown .dropdown-menu{
    border-radius: 0px;
    padding: 0px;
    width: 60px;
    min-width: 80px;
    font-size: 13px;
}



/* ===================================================
   SECTIONS
=================================================== */

.section-light{
background:#fff;
}
/*

.section-beige{
background:var(--bg-light);
}
*/

.section-dark{
background:#111;
color:#fff;
}


.about-section{
    position: relative;
    width: 100%;
    overflow: hidden;
}


.about-section:after{
    width: 600px;
    height: 395px;
    background: url(images/logo_icon.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: -170px;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.abtright{
    padding-left:0px;
    padding-left: 16vw;
    padding-right: 16vw;
}

.abtlft{
    height: 396px;
     padding-left: 16vw;
    padding-right: 16vw;
}

.abtlft img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container */
.abtright{
/*    max-width: 650px;*/
    margin: auto;
/*    padding: 40px 20px;*/
    font-family: 'Inter', sans-serif;
    color:#4a4a4a;
   margin-bottom: 30px;
}

/* Heading */
.page-title{
    font-family: 'Imperial Script', cursive;
    font-size: 64px;
    line-height: 1.1;
    color:var(--heading-color);
    margin-bottom:10px;
    position:relative;
    padding-left: 90px;
}

/* Decorative line */
.page-title:before{
    content:"";
    position:absolute;
    left:0px;
    top:35px;
    width:66px;
    height:1px;
    background:#8a8a8a;
}

.center-align{
    text-align: center;
}

.page-title{
    display: inline-flex;
    align-items: center;
}

.page-title{
    padding-right: 90px;
}


.page-title:after{
    content:"";
    position:absolute;
    right:0px;
    top:35px;
    width:66px;
    height:1px;
    background:#8a8a8a;
}

/* Subtitle */
.page-subtitle{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--primary-gold);
    margin-bottom:25px;
    font-weight:700;
    margin-left: 00px;
}

/* Paragraph */
.abtright p{
    font-size:1.146vw;
    line-height:1.56vw;
    margin-bottom:18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
}

/* Button */
.btn.btn-primary{
    padding:0px 26px;
    background:#2f3a46;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    border-radius:0px;
    margin-top:30px;
    transition:all .3s ease;
    border: 0px;
    height: 52px;
    width: 220px;
    line-height: 52px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Hover */
.btn.btn-primary:hover{
    background:#1e2a38;
}
/*
.abtright .page-title:after{
    display: none;
}
*/

/* ===================================================
   ROOM CARDS
=================================================== */

.section-beige{
    padding-top: 70px;
    padding-bottom: 70px;
}

.room-card{
border:none;
/*
background:#fff;
box-shadow:0 8px 30px rgba(0,0,0,.05);
*/
transition:.3s;
height:100%;
    padding: 15px;
    overflow: hidden;
    position: relative;
}


.room-card::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(00deg, var(--nav-gradient-left), var(--nav-gradient-right));
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.room-card.active::before,
.room-card:hover::before{
    height: 100%;
    border-radius: 0;
}


/*
.room-card:hover{
transform:translateY(-6px);
}
*/

.room-card img{
width:100%;
}

.room-card .card-body{
padding:25px;
}

.room-card h4{
font-size:22px;
}


.rooms-section{
padding:50px 0;
/*background:#f8f8f8;*/
}

/*
.room-card{
background:#fff;
}
*/

.room-img{
position:relative;
overflow:hidden;
}

.room-img img{
width:100%;
display:block;
}

.price-tag{
position:absolute;
top:12px;
right:12px;
background:#222;
color:#fff;
font-size:13px;
padding:6px 12px;
}

.room-card h4{
margin-top: 15px;
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    padding-left: 50px;
    position: relative;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
}

.room-card h4:before{
    width: 42px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    background-color: var(--black);
    content: '';
}

.room-card p{
font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
margin-top:10px;
    min-height: 110px;

}

.room-buttons{
display:flex;
align-items:center;
    justify-content: space-between;
gap:20px;
margin-top:30px;
position: relative;
    z-index: 1;
}

.view-link{
color:#333;
font-size:14px;
text-decoration:none;
    font-weight: 700;
}

.view-link:hover{
color:#C2A04E;
}

.room-card:hover{
    color: #FFF;
}
.room-card:hover h4{
    color: #FFF;
}
.room-card:hover h4:before{
    background-color: #FFF;
}
.room-card:hover p{
    color: #FFF;
    position: relative;
    z-index: 1;
}

.room-card:hover .view-link{
    color: #FFF;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 16px;
    height: 16px;
}

.swiper-pagination-bullet-active{
    background-color: #2B2B2B;
}




/* ===================================================
   VIDEO SECTION
=================================================== */

.video-section{
background:var(--bg-light);
text-align:center;
    position: relative;
}


.video-section:before{
    width: 600px;
    height: 395px;
    background: url(images/logo_icon_2.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -170px;
    content: '';
    bottom: 00%;
/*    transform: translateY(-50%);*/
}

.video-section .page-title span{
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.video-section .page-title span.mansion-text{
    margin-left: 15px;
    font-weight: 700;
    color: var(--primary-gold);
}

.video-box{
position:relative;
border-radius:0px;
overflow:hidden;
    height: 475px;
}

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:70px;
height:70px;
border-radius:50%;
background:var(--primary-gold);
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
}


/* ===================================================
   EXPERIENCE GRID
=================================================== */


.experiences-intro-text{
    font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
}

.experience-items{
    padding-top: 30px;
}

.experience-item{
position: relative;
    background-color: #f2f2f2;
}

.experience-item-picture{
    position: absolute;
    width: 50%;
    left: 0px;
    top: 0px;
    z-index: 9;
    height: 100%;
}

.experience-item-picture img{
width:100%;
    height: 100%;
object-fit:cover;
}


.experience-item .experience-item-col{
    margin-left: auto;
}

.experience-content{
padding:110px 40px 110px 80px;
}

.experience-content h3{
font-size:27px;
    font-weight: 700;
}

/*
.experience-content h3 span{
font-size:42px;
    font-family: var(--font-heading);
    font-weight: 400;
}
*/

.experience-content b{
    color: var(--primary-gold);
    font-weight: 500;
}

.experience-content p{
    font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
}

.experience-content p.lead{
    font-size: 16px;
    color: var(--primary-gold);
    font-weight: 400;
    margin-bottom: 7px;
}



.experience-content .btn-primary{
    width: 170px;
    margin-right: auto;
    margin-left: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

.experience-item:nth-child(even) .experience-item-col{
    margin-left: 0px;
}

.experience-item:nth-child(even) .experience-item-picture{
    left: 50%;
}







/* ===================================================
   FACILITIES
=================================================== */

.section-facilities{
    padding-top: 0px;
}

.section-facilities p.facilities-hd-text{
    text-align: right;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: -0.02rem;
}


.section-facilities .page-title{
    text-align: left;
}

.section-facilities .page-title:after{
    display: none;
}

.section-facilities .sub-title{
    text-align: left;
        padding-left: 90px;
}


.facility-box{
padding:30px;
text-align:left;
}

.facility-box i{
font-size:28px;
color:var(--primary-gold);
margin-bottom:15px;
display:block;
}

.facility-box ul{
padding-left:18px;
}

.facility-box li{
margin-bottom:6px;
}

.amenities-section{
/*
padding:100px 0;
background:#f7f7f7;
*/
    position: relative;
}

.amenities-section:after{
    width: 400px;
    height: 400px;
    background: url(images/logo_icon_3.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    left:50%;
    content: '';
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.amenities-item{
padding:50px;
position:relative;
}

/* center vertical line */

.amenities-item:nth-child(odd){
border-right:1px solid #ccc;
}

/* center horizontal line */

.amenities-item:nth-child(1),
.amenities-item:nth-child(2){
border-bottom:1px solid #ccc;
}

.amenities-title{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.amenities-title i{
font-size:26px;
color:#000;
}

.amenities-title h4{
font-size:27px;
    font-weight: 700;
margin:0;
    color:#000;
}

.amenities-box ul{
list-style:none;
padding:0;
margin:0 0 15px;
}

.amenities-box ul li{
font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
    position: relative;
    padding-left: 12px;
}

.amenities-box ul li:before{
/*content:">";*/
position:absolute;
top: 7px;
left:0;
color:#999;
background-image: url(images/chevron_down.png);
    background-size: 9px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    content: '';
}

.view-more{
font-size:14px;
text-decoration:none;
color:#000;
display: inline-block;
    font-weight: 700;
    padding-top: 20px;
}

.view-more i{
font-size:12px;
margin-left:5px;
}

.view-more:hover{
    color: var(--primary-gold);
}






/* ===================================================
   HIGHLIGHTS GALLERY
=================================================== */


.section-highlights{
    background: var(--bg-light);
}

.section-highlights p.facilities-hd-text{
    text-align: right;
    font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
}


.section-highlights .page-title{
    text-align: left;
}

.section-highlights .page-title:after{
    display: none;
}

.section-highlights .sub-title{
    text-align: left;
        padding-left: 90px;
}


.highlight-card{
    position:relative;
    overflow:hidden;
    height: 460px;
}

.highlight-card img{
    width:100%;
    height: 100%;
    object-fit: cover;
    transition:.5s;
    filter: grayscale(100%);
}

.highlight-card:hover img{
/*transform:scale(1.08);*/
    filter: grayscale(0%);
}

.highlight-caption{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(30,42,56,1));
    color:#fff;
    font-size: 27px;
    font-weight: 700;
    transition:.5s;
    display: flex;
    align-items: flex-end;
    height: 60px;
}

/*
.highlight-card:hover .highlight-caption{
    background:linear-gradient(transparent,rgba(30,42,56,1));
    height: 100%;
}
*/




.HotelInformation{
/*    background: url(images/hotel-info.jpg) center center;*/
    background-size: cover;
}

.hotel-info-section{
padding:0px 0;
background:rgba(255,255,255,.9);
}

.info-col{
padding:30px 40px;
border-right:1px solid #ccc;
}

.info-col:last-child{
border-right:none;
}

.info-block{
margin-bottom:25px;
}

.info-block h5{
font-weight:600;
margin-bottom:10px;
}

.info-list{
list-style:none;
padding:0;
margin:0;
}

.info-list li, .info-block p{
margin-bottom:8px;
font-size: 1.146vw;
    line-height: 1.56vw;
    font-weight: 300;
    letter-spacing: -0.02rem;
}

.info-list i{
margin-right:8px;
}

.contact-list p{
margin-bottom:10px;
font-size: 1.146vw;
    line-height: 1.56vw;
    font-weight: 300;
    letter-spacing: -0.02rem;
}

.view-map{
display:inline-block;
margin-top:5px;
text-decoration:none;
color:#333;
}

.view-map i{
margin-left:5px;
}

.hotel-info-container{
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}




/* ===================================================
   CONTACT PANEL
=================================================== */

.contact-panel{
background:#fff;
padding:40px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
border-radius:6px;
}

.contact-panel ul{
list-style:none;
padding:0;
}

.contact-panel li{
margin-bottom:8px;
font-size: 1.146vw;
    line-height: 1.56vw;
    font-weight: 300;
    letter-spacing: -0.02rem;
}


/* ===================================================
   TESTIMONIALS
=================================================== */

.testimonial{
text-align:center;
max-width:700px;
margin:auto;
}

.testimonial p{
font-size:16px;
font-style:italic;
}

.testimonial-author{
margin-top:20px;
font-weight:600;
}


/* ===================================================
   MEMBERSHIP SECTION
=================================================== */

.membership{
background:rgba(0,0,0,.55);
color:#fff;
padding:80px 40px;
text-align:center;
}

.membership-step{
padding:20px;
}

.step-number{
width:40px;
height:40px;
border-radius:50%;
background:var(--primary-gold);
color:#fff;
display:inline-flex;
align-items:center;
justify-content:center;
margin-bottom:10px;
}


.testimonial-section{
padding:50px 0;
position:relative;
}

.testimonial-box{
background:var(--bg-light);
padding:120px 60px 40px;
text-align:center;
max-width:880px;
margin:auto;
position:relative;
    margin-top: 90px;
    min-height: 330px;
    position: relative;
}

.testimonial-box:before{
    position: absolute;
    top: 0px;
    right: 105%;
    width: 84px;
    height: 138px;
    background: url(images/quote-left.svg) no-repeat center center;
    content: '';
}

.testimonial-box:after{
    position: absolute;    
    bottom: 0px;
    left: 105%;
    width: 84px;
    height: 138px;
    background: url(images/quote-right.svg) no-repeat center center;
    content: '';
}

.testimonial-avatar{
width: 136px;
height: 136px;
background:#cfcfcf;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:36px;
color:#888;
margin:-190px auto 20px;
}

.testimonial-text{
font-size:15px;
line-height:27px;
color:var(--black);
margin-bottom:25px;
    margin-top: 50px
}

.testimonial-author{
font-size:14px;
color:var(--black);
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.testimonial-author span{
width:40px;
height:1px;
background:#333;
display:inline-block;
}

.swiper-pagination{
margin-top:40px;
position:relative;
}

.swiper-pagination-bullet{
background:#ccc;
opacity:1;
}

.swiper-pagination-bullet-active{
background:#000;
}


.membership-section .page-title{
    color: var(--white);
}




.membership-section .experiences-intro-text{
    color: var(--white);
}



.membership-section-body{
padding:70px 50px;
background:rgba(255,255,255,.9);
position:relative;
    margin-top: 40px;
}


.membership-box{
position:relative;
background:transparent;
}

.membership-title{
text-align:center;
font-size:32px;
margin-bottom:60px;
}

.membership-title strong{
font-weight:700;
color:#2f3b47;
}

.step-item{
padding:20px;
}

.step-number{
width:56px;
height:56px;
background:#e6dcc8;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
font-weight:700;
font-size:28px;
    color: var(--heading-color);
}

.step-item h5{
font-size: 1.186vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 700;
}

.step-item p{
font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
}



/* ===================================================
   FOOTER
=================================================== */


.luxury-footer{
background:#000;
color:#fff;
}

/* Brand */
.brand-title{
font-size:26px;
font-weight:500;
color:#c8a96a;
letter-spacing:1px;
}

.brand-title span{
font-size:14px;
letter-spacing:3px;
color:#c8a96a;
margin-left:6px;
}

.footer-desc{
color:var(--white);
font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 18px;
    letter-spacing: -0.02rem;
    font-weight: 300;
max-width:420px;
}

/* Titles */
.footer-title{
font-size: 1.186vw;
font-weight:600;
margin-bottom:18px;
    color:var(--white);
}

/* Links */
.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
color:var(--white);
text-decoration:none;
font-size: 1.146vw;
    line-height: 1.56vw;
transition:0.3s;
}

.footer-links a:hover{
color:#c8a96a;
}

/* Social */
.social-icons{
display:flex;
gap:18px;
margin-top:10px;
}

.social-icons a{
color:#fff;
font-size: 1.196vw;
    line-height: 1.56vw;
transition:0.3s;
}

.social-icons a:hover{
color:#c8a96a;
}

/* Divider */
.footer-divider{
border-top:1px solid #222;
margin-top:60px;
}

/* ===================================================
   DECORATIVE DIVIDER
=================================================== */

.divider{
width:80px;
height:2px;
background:var(--primary-gold);
margin:20px auto;
}


.footer-rgt{
    padding-left: 60px;
}

.rooms-section .swiper-button-next, .rooms-section .swiper-button-prev{
    top: 22%;
}


.luxury-footer .view-map{
    color: #FFF;
}



/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width:992px){

    .abtright p, .room-card p, .brand-card p, .brand-card ul li, .experience-content p, .amenities-box ul li, .info-list li, .info-block p, .step-item p{
    font-size: 14px;
    line-height: 18px;

}
.step-item h5{
    font-size: 18px;
    line-height: 24px;
}

p.footer-desc.mt-3{
    font-size: 14px;
    line-height: 18px;
}

ul.footer-links li a{
     font-size: 14px !important;
    line-height: 18px;
}

.copyrightlft, .copyrightrgt{
    text-align: center;
     font-size: 14px !important;
    line-height: 18px;
}

.btn.btn-primary{
    font-size: 14px;
    width: 210px;
    line-height: 42px;
    height: auto;
}
    .navbar-toggler .navbar-toggler-icon{
        filter: invert(1);
    }
    
    .nav-item.dropdown.language-dropdown {
    display: inline-flex;
    align-items: flex-start;
    vertical-align: bottom;
}
    
    .hero-content h1{
        font-size: 24px;
    }
    .hero-content h1 span{
        font-size: 42px;
    }
    .hero-content p{
        font-size: 16px;
    }
    
    .booking-bar{
        max-width: 720px;
    }
    .booking-bar .btn {
    height: 45px;
    padding: 0 15px;
    font-size: 13px;
}
    
    .heroSwiper, .hero-content{
        height: 520px;
    }
    
    .page-section{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    
    .abtlft {
    height: 310px;
}
    
    .abtright{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .page-title{
        font-size: 42px;
    }
    .page-subtitle{
        letter-spacing: 1px;
    }
    .page-title:before, .page-title:after{
        top: 25px;
    }
    
    .room-card h4{
        font-size: 18px;
    }
   
    .view-link{
        font-size: 12px;
    }
    .btn-gold{
        padding: 9px 17px;
        font-size: 13px;
    }
    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    .video-section .page-title{
        font-family: var(--font-body);
        font-size: 18px;
    }
    .video-section .page-title span{
        font-size: 18px;
    }
    
    .video-section .page-title span{
        margin-right: 7px;
    }
    
    .video-section .page-title span.mansion-text{
        margin-left: 7px;
    }
    
    .video-section .page-title:before, .video-section .page-title:after{
        top: 10px;
    }
    
    .video-box{
        height: 275px;
    }
    
    .experiences-intro-text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02rem;
    padding-top: 10px;
}
    
    
    .experience-item-picture {
    position: relative;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 9;
    height: 300px;
}
    
    .experience-content {
    padding: 30px 0;
}
    
    .experience-item:nth-child(even) .experience-item-picture {
    left: 0%;
}
    .experience-content h3{
        font-size: 24px;
    }
    .experience-content h3 span {
    font-size: 32px;
    }
    
    .section-facilities{
        padding-top: 0px;
    }
    .section-facilities p.facilities-hd-text, .section-highlights p.facilities-hd-text{
        text-align: left;
        padding-top: 30px;
        font-size: 16px;
        line-height: 22px;
    }
    .amenities-item:nth-child(1), .amenities-item:nth-child(2) {
    border-bottom: 0px solid #ccc;
}
    
    .amenities-item:nth-child(odd) {
    border-right: 0px solid #ccc;
}
    
    .amenities-item {
    padding: 30px 0;
    }
    
    .amenities-title h4{
        font-size: 24px;
    }
    
    .amenities-title img{
        width: 32px;
    }
    
    .highlight-card{
      margin-bottom: 30px;
        height: 320px;
    }
    
    .highlight-caption{
        font-size: 20px;
    }
    
    .info-col{
        border: 0px;
    }
    .hotel-info-container{
        max-width: 410px;
    }
    
    .testimonial-avatar {
    width: 116px;
    height: 116px;
    }
    
    .testimonial-box:before, .testimonial-box:after{
        display: none;
    }
    
    .testimonial-text{
        font-size: 14px;
    }
    
    .testimonial-section{
        padding: 0px;
    }
    .footer-rgt{
        padding-left: 15px;
    }
    
    .footer-desc{
        max-width: none;
    }
    .footer-links{
        margin-bottom: 30px;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link{
        font-size: 18px;
        line-height: 24px;
    }
    ul#menu-primary-menu{
        margin-left: 0px;
    }
    .navbar{
        background: linear-gradient(90deg, var(--nav-gradient-left), var(--nav-gradient-right));
    }

    .amenities-section:after{
        display: none;
    }

    .about-section:after{
        display: none;
    }

section {
    overflow-x: hidden;
}
}


@media (max-width:767px){

    body{
        font-size: 14px;
    }

    .brand-card-col{
        margin-bottom: 30px;
    }

    .footer-title{
        font-size: 18px;
    }

    .social-icons a{
        font-size: 24px;
    }

    .section-facilities .sub-title{
        padding-left: 0px;
    }
.copyrightrgt a{
    font-size: 14px;
}


    .video-section:before{
       display: none;
    }

    .booking-bar {
        max-width: 96%;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
    }
    
    .page-title:before, .page-title:after{
        display: none;
    }
    
    .page-title{
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .page-subtitle{
        margin-left: 0px;
    }
    .video-section .page-title{
        flex-wrap: wrap;
        justify-content: center
    }
    .membership-title{
        font-size: 22px;
    }

}


@media (max-width:576px){



}