@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&display=swap');


html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body{
    overflow-x:clip;
}
img{
  max-width:100%;
  height:auto
}

/* Animation Classes */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-up,
.fade-in-down,
.zoom-in{
    opacity:0;
    animation-duration:1.1s;
    animation-fill-mode:forwards;
    animation-timing-function:cubic-bezier(.22,1,.36,1);
}
.fade-in{
    animation-name:fadeIn;
}
.fade-in-left{
    animation-name:fadeInLeft;
}
.fade-in-right{
    animation-name:fadeInRight;
}
.fade-in-up{
    animation-name:fadeInUp;
}
.fade-in-down{
    animation-name:fadeInDown;
}
.zoom-in{
    animation-name:zoomIn;
}
.delay-1{
    animation-delay:.2s;
}
.delay-2{
    animation-delay:.4s;
}
.delay-3{
    animation-delay:.6s;
}
.delay-4{
    animation-delay:.8s;
}
.delay-5{
    animation-delay:1s;
}
@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
@keyframes fadeInLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes fadeInRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes fadeInDown{
    from{
        opacity:0;
        transform:translateY(-60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.85);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
.animate-hover{
    transition:
    transform .5s cubic-bezier(.22,1,.36,1),
    box-shadow .5s cubic-bezier(.22,1,.36,1);
}
.animate-hover:hover{
    transform:translateY(-8px);
}


/* NAVBAR */
.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
    border-bottom:1px solid rgba(255,255,255,.08);
    animation:navbarFadeIn 1.2s cubic-bezier(.16,1,.3,1);
    transition:
    background .6s cubic-bezier(.19,1,.22,1),
    backdrop-filter .6s cubic-bezier(.19,1,.22,1),
    box-shadow .6s cubic-bezier(.19,1,.22,1),
    padding .6s cubic-bezier(.19,1,.22,1);
}
.navbar.scrolled{
    position:fixed;
    top:0;
    left:0;
    background:rgba(14,24,36,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
    0 10px 35px rgba(0,0,0,.25);
}
.navbar .container-fluid{
    padding-left:clamp(20px,5vw,80px);
    padding-right:clamp(20px,5vw,80px);
}
.navbar img{
    max-width:80px;
    height:auto;
    transition:
    transform .8s cubic-bezier(.19,1,.22,1),
    max-width .6s ease;
}
/* .navbar-brand{
    padding:1rem 0;
} */
.navbar-brand:hover img{
    transform:scale(1.05);
}
.navbar.scrolled .navbar-brand{
    padding:.6rem 0;
}
.navbar.scrolled img{
    max-width:85px;
}
.navbar li a{
    color:#fff !important;
    font-family:'Inter Tight';
    font-weight:500;
    font-size:
    clamp(1rem,.8vw + .8rem,1.125rem);
    text-transform:capitalize;
}
.navbar-nav .nav-link{
    position:relative;
    color:#fff;
    padding:8px 16px;
    border-radius:16px;
    transition:
    all .5s cubic-bezier(.19,1,.22,1);
}
.navbar .nav-link:hover{
    color:#fff;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    transform:translateY(-2px);
}
.navbar .nav-link.active{
    color:#fff;
    background:rgba(255,255,255,.25);
    backdrop-filter:blur(8px);
}
.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:12px;
    background:rgba(14,24,36,.95);
    backdrop-filter:blur(20px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}
.dropdown-item{
    color:white;
    border-radius:10px;
    transition:.4s ease;
}
.dropdown-item:hover{
    background:rgba(255,255,255,.1);
    color:#ffc89a;
    transform:translateX(5px);
}
.custom-btn1{
    position:relative;
    overflow:hidden;
    display:inline-block;
    box-sizing:border-box;
    border-radius:30px;
    text-decoration:none;
    color:#0e1824;
    background:#ffc89a;
    padding:
    clamp(8px,1vw,12px)
    clamp(20px,4vw,40px);
    font-family:'Inter Tight';
    font-weight:500;
    font-size:
    clamp(1rem,.8vw + .8rem,1.125rem);
    transition:
    all .5s cubic-bezier(.19,1,.22,1);
}
.custom-btn1:hover{
    background:#0e1824;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:
    0 15px 35px rgba(255,200,154,.35);
}
.luxury-toggler{
    width:50px;
    height:45px;
    border:none;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    padding:0;
    backdrop-filter:blur(10px);
    transition:.5s cubic-bezier(.19,1,.22,1);
}
.luxury-toggler span{
    width:20px;
    height:2px;
    background:#fff;
    border-radius:10px;
    transition:.5s cubic-bezier(.19,1,.22,1);
}
.luxury-toggler:hover{
    background:#ffc89a;
    transform:rotate(5deg);
}
.luxury-toggler:hover span{
    background:#0e1824;
}

/*HOME CAROUSEL*/
#home-carousel{
    position:relative;
}
.carousel-item{
    position:relative;
    height:100vh;
    min-height:800px;
}
.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:
    brightness(35%)
    contrast(115%)
    saturate(85%);
    transform:scale(1.05);
    transition:
    transform 8s cubic-bezier(.2,.7,.2,1);
}
.carousel-item.active img{
    transform:scale(1);
}
.carousel-caption{
    position:absolute;
    z-index:3;
    top:50%;
    left:50%;
    bottom:auto;
    transform:translate(-50%,-45%);
    width:90%;
    max-width:1000px;
    text-align:center;
}
.hero-text-1{
    color:#fff;
    font-family:'Cormorant Infant', serif;
    font-weight:600;
    font-size:clamp(2.1rem,3.75vw,3.825rem);
    line-height:1.05;
    letter-spacing:-0.5px;
    margin-bottom:25px;
    opacity:0;
    transform:translateY(40px);
}
.hero-text-1 span{
    color:#ffc89a;
}
.hero-text-2{
    color:rgba(255,255,255,.9);
    font-family:'Inter Tight', sans-serif;
    font-style: italic;
    font-weight:400;
    font-size:clamp(1rem,1.2vw,1.3rem);
    line-height:1.7;
    letter-spacing:.2px;
    max-width:750px;
    margin:auto;
    opacity:0;
    transform:translateY(30px);
}
.carousel-item.active .hero-text-1{
    animation:
    heroTitle .9s cubic-bezier(.16,1,.3,1)
    .3s forwards;
}
.carousel-item.active .hero-text-2{
    animation:
    heroSubtitle .9s cubic-bezier(.16,1,.3,1)
    .6s forwards;
}
@keyframes heroTitle{
from{
    opacity:0;
    transform:translateY(40px);
}
to{
    opacity:1;
    transform:translateY(0);
}
}
@keyframes heroSubtitle{
from{
    opacity:0;
    transform:translateY(30px);
}
to{
    opacity:1;
    transform:translateY(0);
}
}

/*ABOUT*/
.home-about{
    padding:90px 0;
    background:#fff;
    overflow:hidden;
}
.home-about h5{
    font-family:'Inter Tight', sans-serif;
    font-size:1rem;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b08a5a;
    margin-bottom:20px;
}
.home-about h6{
    font-family:'Cormorant Infant', serif;
    font-size:clamp(2.2rem,4vw,3.5rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:30px;
}
.home-about h6 span{
    color:#b08a5a;
}
.home-about p{
    font-family:'Inter Tight', sans-serif;
    font-size:1.05rem;
    line-height:1.9;
    color:#555;
    max-width:600px;
    margin-bottom:0;
}
.home-about .custom-btn1{
    margin-top:40px;
}
.home-about .col-md-6:last-child{
    position:relative;
    min-height:550px;
}
.img1-about{
    position:absolute;
    width:75%;
    height:500px;
    object-fit:cover;
    right:0;
    top:0;
    border-radius:0 80px 0 80px;
    box-shadow:
    0 30px 60px rgba(0,0,0,.15);
    transition: transform .8s cubic-bezier(.19,1,.22,1);
}
.img2-about{
    position:absolute;
    width:45%;
    height:280px;
    object-fit:cover;
    left:0;
    bottom:20px;
    border-radius:60px 0 60px 0;
    border:12px solid #fff;
    box-shadow: 0 25px 50px rgba(0,0,0,.18);
    transition: transform .8s cubic-bezier(.19,1,.22,1);
}
.img1-about:hover{
    transform:translateY(-10px);
}
.img2-about:hover{
    transform:translateY(-15px);
}

/*  HOME ROOMS */
.home-rooms{
    padding:70px 0;
    background:#fff8f2;
}
.home-rooms h5{
    font-family:'Inter Tight',sans-serif;
    font-size:1rem;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b08a5a;
    margin-bottom:15px;
}
.home-rooms h6{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(1.5rem,3vw,3rem);
    font-weight:600;
    line-height:1.15;
    color:#0e1824;
    margin-bottom:60px;
}
.home-rooms h6 span{
    color:#b08a5a;
}
.room-carousel .item{
    padding:15px;
}
.home-rooms .card{
    position:relative;
    height:auto;
    border:none;
    border-radius:24px;
    overflow:hidden;
    background:#fff !important;
    display:flex;
    flex-direction:column;
    transition:.5s cubic-bezier(.19,1,.22,1);
    box-shadow:
        0 10px 35px rgba(0,0,0,.08),
        0 25px 60px rgba(0,0,0,.05);
}
.home-rooms .card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.12),
        0 35px 80px rgba(0,0,0,.08);
}
.home-rooms .card-img-top{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform 1.2s cubic-bezier(.16,1,.3,1);
}
.home-rooms .card:hover .card-img-top{
    transform:scale(1.06);
}
.stars{
    position:absolute;
    top:20px;
    left:20px;
    display:flex;
    gap:5px;
    padding:10px 16px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    color:#ffc89a;
    font-size:.9rem;
    z-index:10;
}
.stars i{
    filter:drop-shadow(0 2px 5px rgba(0,0,0,.35));
}
.home-rooms .card-body{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:30px;
}
.room-title{
    font-family:'Cormorant Infant',serif;
    font-size:1.7rem;
    font-weight:600;
    color:#0e1824;
    margin-bottom:18px;
}
.room-facilities{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:15px;
}
.room-facilities span{
    display:flex;
    align-items:center;
    gap:7px;
    font-family:'Inter Tight',sans-serif;
    font-size:.95rem;
    color:#666;
}
.room-facilities i{
    color:#b08a5a;
}
.room-description{
    font-family:'Inter Tight',sans-serif;
    font-size:1rem;
    line-height:1.8;
    color:#666;
    margin-bottom:10px;
}
.home-rooms hr{
    margin-top:10px;
    border:0;
    height:1px;
    background:#666;
}
.room-btn{
    margin: 10px auto;
}
.room-btn .custom-btn1{
    transition:.4s ease;
}
.home-rooms .card:hover .custom-btn1{
    transform:translateY(-2px);
}
.section-btn{
    display:table;
    margin:60px auto 0;
}

/*HOME COVER*/
.home-cover{
    position:relative;
    height:600px;
    overflow:hidden;
    display:flex;
    align-items:center;
}
.home-cover > img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    filter:
    brightness(45%)
    contrast(110%)
    saturate(85%);
    transition:
    transform 8s cubic-bezier(.19,1,.22,1);
}
.home-cover:hover > img{
    transform:scale(1.05);
}
.home-cover::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(14,24,36,.75),
        rgba(14,24,36,.35)
    );
    z-index:2;
}
.home-cover .container{
    position:relative;
    z-index:3;
}
.cover-content{
    max-width:850px;
}
.cover-text{
    color:#fff;
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.2rem,4vw,4rem);
    line-height:1.15;
    font-weight:600;
    letter-spacing:-.5px;
    margin:0;
}
.cover-text span{
    color:#ffc89a;
}
.circle-btn{
    position:absolute;
    z-index:4;
    right:12%;
    top:50%;
    transform:translateY(-50%);
    width:150px;
    height:150px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#ffc89a;
    color:#0e1824;
    font-family:'Inter Tight',sans-serif;
    font-weight:600;
    font-size:1.1rem;
    transition:
    all .6s cubic-bezier(.19,1,.22,1);
    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}
.circle-btn::before{
    content:"";
    position:absolute;
    inset:-10px;
    border-radius:50%;
    border:1px solid rgba(255,200,154,.6);
    animation:pulseCircle 2.5s infinite;
}
.circle-btn:hover{
    background:#0e1824;
    color:#fff;
    transform:
    translateY(-50%)
    scale(1.08);
}
@keyframes pulseCircle{
0%{
    transform:scale(1);
    opacity:1;
}
100%{
    transform:scale(1.25);
    opacity:0;
}
}

/* WHY US SECTION */
.whyUs-section{
    padding:clamp(70px,8vw,100px) 0;
    background:#fff;
    overflow:hidden;
}
.z-images{
    position:relative;
    width:100%;
    max-width:560px;
    height:600px;
    margin:auto;
}
.img1-z{
    position:absolute;
    width:75%;
    height:520px;
    object-fit:cover;
    top:0;
    right:0;
    border-radius:0 90px 0 90px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
    transition:transform .8s cubic-bezier(.19,1,.22,1);
}
.img2-z{
    position:absolute;
    width:45%;
    height:280px;
    object-fit:cover;
    left:0;
    bottom:20px;
    border:12px solid #fff;
    border-radius:70px 0 70px 0;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    z-index:2;
    transition:transform .8s cubic-bezier(.19,1,.22,1);
}
.z-images:hover .img1-z{
    transform:translateY(-10px);
}
.z-images:hover .img2-z{
    transform:translateY(-20px);
}
.why-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:3px;
    color:#b08a5a;
    font-size:1rem;
    font-weight:600;
    margin-bottom:20px;
}
.why-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.2rem,4vw,3.5rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:40px;
}
.why-title span{
    color:#b08a5a;
}
.why-item{
    margin-bottom:30px;
}
.why-item:last-child{
    margin-bottom:0;
}
.why-item h3{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Cormorant Infant',serif;
    font-size:1.7rem;
    font-weight:600;
    color:#0e1824;
    margin-bottom:10px;
}
.why-item h3 i{
    color:#b08a5a;
    font-size:.8rem;
}
.why-item p{
    margin-left:24px;
    font-family:'Inter Tight',sans-serif;
    color:#666;
    font-size:1rem;
    line-height:1.8;
}

/*  HOME FACILITIES */
.home-facilities{
    padding:100px 0;
    background:#f8f5ef;
    overflow:hidden;
}
.facility-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:1rem;
    font-weight:500;
    color:#b08a5a;
    margin-bottom:20px;
}
.facility-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.3rem,4vw,3.5rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:25px;
}
.facility-title span{
    color:#b08a5a;
}
.facility-text{
    max-width:520px;
    font-family:'Inter Tight',sans-serif;
    font-size:1rem;
    line-height:1.8;
    color:#666;
}
.facility-card{
    background:#fff;
    min-height:230px;
    margin:15px;
    padding:35px 25px;
    text-align:center;
    border-radius:0 45px 0 45px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
    transition:
    transform .6s cubic-bezier(.22,1,.36,1),
    box-shadow .6s ease;
    position:relative;
    overflow:hidden;
}
.facility-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:3px;
    background:#b08a5a;
    transition:.5s ease;
}
.facility-card:hover::before{
    width:100%;
}
.facility-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 35px 70px rgba(0,0,0,.15);
}
.facility-card i{
    font-size:2.8rem;
    color:#b08a5a;
    margin-bottom:20px;
    display:inline-block;
    transition:
    transform .5s cubic-bezier(.22,1,.36,1),
    color .3s ease;
}
.facility-card:hover i{
    transform:translateY(-8px);
    color:#0e1824;
}
.facility-card h3{
    font-family:'Cormorant Infant',serif;
    font-size:1.6rem;
    font-weight:600;
    color:#0e1824;
    margin-bottom:12px;
}
.facility-card p{
    font-family:'Inter Tight',sans-serif;
    font-size:.95rem;
    line-height:1.6;
    color:#777;
    margin:0;
}

/*  HOME GALLERY */
.home-gallery{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}
.gallery-heading{
    margin-bottom:55px;
}
.gallery-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:1rem;
    font-weight:500;
    color:#b08a5a;
    margin-bottom:18px;
}
.gallery-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.3rem,4vw,3.5rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    max-width:700px;
}
.gallery-title span{
    color:#b08a5a;
}
.gallery-card{
    height:420px;
    overflow:hidden;
    border-radius:0 60px 0 60px;
    position:relative;
    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}
.gallery-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(0,0,0,0),
        rgba(0,0,0,.25)
    );
    opacity:0;
    transition:.5s ease;
}
.gallery-card:hover::after{
    opacity:1;
}
.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
    transform 1s cubic-bezier(.22,1,.36,1);
}
.gallery-card:hover img{
    transform:scale(1.1);
}
.gallery-carousel .owl-item{
    padding:15px;
}
.gallery-carousel{
    margin-left:-15px;
    margin-right:-15px;
}
.gallery-carousel .owl-dots{
    text-align:center;
    margin-top:35px;
}
.gallery-carousel .owl-dot span{
    width:10px;
    height:10px;
    background:#ddd;
    display:block;
    border-radius:50%;
    margin:5px;
    transition:.3s ease;
}
.gallery-carousel .owl-dot.active span{
    background:#b08a5a;
    width:30px;
    border-radius:20px;
}

/* TESTIMONIALS */
.home-testimonials{
    padding:100px 0;
    background:#0e1824;
    overflow:hidden;
}
.testimonial-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:1rem;
    font-weight:500;
    color:#b08a5a;
    margin-bottom:18px;
}
.testimonial-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.3rem,4vw,3.7rem);
    font-weight:600;
    line-height:1.15;
    color:#fff;
    margin-bottom:0;
}
.testimonial-title span{
    color:#b08a5a;
}
.testimonial-carousel{
    margin-top:60px;
}
.testimonial-carousel .owl-stage{
    display:flex;
}
.testimonial-carousel .owl-item{
    display:flex;
    padding:15px;
}
.testimonial-carousel .item{
    width:100%;
}
.testimonial-card{
    position:relative;
    background:#182331;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    min-height:470px;
    transition:
    transform .6s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease,
    border-color .4s ease;
    overflow:hidden;
}
.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#b08a5a;
    transform:scaleX(0);
    transform-origin:left;
    transition:.5s;
}
.testimonial-card:hover{
    transform:translateY(-12px);
    border-color:#b08a5a;
    box-shadow:
    0 30px 70px rgba(0,0,0,.35);
}
.testimonial-card:hover::before{
    transform:scaleX(1);
}
.quote-icon{
    position:absolute;
    top:25px;
    right:25px;
    font-size:28px;
    color:#b08a5a;
    opacity:.18;
}
.testimonial-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-bottom:25px;
}
.flag-box{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    border:2px solid #b08a5a;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:
    0 12px 30px rgba(0,0,0,.2);
}
.flag-testimonial{
    width:56px;
    height:56px;
    object-fit:contain;
    padding:3px;
}
.guest-name{
    font-family:'Cormorant Infant',serif;
    font-size:1.8rem;
    font-weight:600;
    color:#fff;
    margin-bottom:5px;
}
.guest-country{
    font-family:'Inter Tight',sans-serif;
    color:#cfcfcf;
    font-size:1rem;
    margin-bottom:0;
}
.testimonial-stars{
    margin:25px 0;
}
.testimonial-stars i{
    color:#d3a15f;
    margin:0 2px;
    font-size:15px;
}
.testimonial-text{
    font-family:'Inter Tight',sans-serif;
    color:#d9d9d9;
    line-height:1.9;
    font-size:1rem;
    margin:0;
}
.testimonial-carousel .owl-dots{
    margin-top:45px;
    text-align:center;
}
.testimonial-carousel .owl-dot span{
    width:10px;
    height:10px;
    margin:5px;
    background:#4d5b6b;
    border-radius:50%;
    transition:.35s;
}
.testimonial-carousel .owl-dot.active span{
    width:30px;
    background:#b08a5a;
    border-radius:30px;
}

/* RESTAURANT */
.home-restaurant{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}
.restaurant-content{
    max-width:560px;
}
.restaurant-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:1rem;
    font-weight:500;
    color:#b08a5a;
    margin-bottom:20px;
}
.restaurant-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.3rem,4vw,3.7rem);
    font-weight:600;
    line-height:1.15;
    color:#0e1824;
    margin-bottom:28px;
}
.restaurant-title span{
    color:#b08a5a;
}
.restaurant-quote{
    font-family:'Cormorant Infant',serif;
    font-size:1.45rem;
    font-style:italic;
    color:#b08a5a;
    line-height:1.6;
    margin-bottom:30px;
    position:relative;
    padding-left:25px;
}
.restaurant-quote::before{
    content:"“";
    position:absolute;
    left:0;
    top:-8px;
    font-size:3rem;
    color:#d9c4a1;
    line-height:1;
}
.restaurant-text{
    font-family:'Inter Tight',sans-serif;
    color:#666;
    font-size:1rem;
    line-height:1.9;
    margin-bottom:40px;
}
.restaurant-image{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    box-shadow:
        0 25px 70px rgba(0,0,0,.18);
}
.restaurant-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        filter .6s;
}
.restaurant-image:hover img{
    transform:scale(1.08);
    filter:brightness(.95);
}
.restaurant-image::after{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:24px;
    pointer-events:none;
}

/*FOOTER*/
.footer{
    background:#0e1824;
    padding:60px 0 5px;
    color:#fff;
    overflow:hidden;
}
.footer-logo{
    width:100px;
    margin-bottom:25px;
}
.footer-description{
    font-family:'Inter Tight',sans-serif;
    font-size:1rem;
    line-height:1.5;
    color:#c8c8c8;
    max-width:390px;
}
.footer-divider{
    height:1px;
    width:100%;
    background:rgba(255,255,255,.15);
    margin:15px 0;
}
.footer-social-row{
    display:flex;
    align-items:center;
    gap:20px;
}
.footer-social-title{
    margin:0;
    color:#fff;
    font-family:'Inter Tight',sans-serif;
    font-size:.95rem;
    letter-spacing:1px;
}
.footer-socials{
    display:flex;
    gap:12px;
}
.footer-social{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s ease;
}
.footer-social:hover{
    background:#b08a5a;
    border-color:#b08a5a;
    transform:translateY(-5px);
}
.footer-title{
    font-family:'Cormorant Infant',serif;
    font-size:1.8rem;
    font-weight:600;
    color:#fff;
    margin-bottom:30px;
    position:relative;
}
.footer-title::after{
    content:"";
    position:absolute;
    width:45px;
    height:2px;
    background:#b08a5a;
    bottom:-10px;
    left:0;
}
.footer-menu-center{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.footer-menu-center .footer-title::after{
    left:50%;
    transform:translateX(-50%);
}
.footer-menu-center .footer-link:hover{
    transform:translateY(-3px);
}
.footer-link{
    display:block;
    text-decoration:none;
    color:#c8c8c8;
    font-family:'Inter Tight',sans-serif;
    font-size:1rem;
    margin-bottom:15px;
    transition:.35s ease;
}
.footer-link i{
    width:25px;
    color:#b08a5a;
    font-size:15px;
}
.footer-link:hover{
    color:#b08a5a;
    transform:translateX(6px);
}
.footer-contact .footer-link{
    display:flex;
    align-items:center;
    gap:5px;
}
.footer-map iframe{
    width:100%;
    height:240px;
    border:0;
    border-radius:25px;
    filter:grayscale(20%);
    transition:.5s ease;
}
.footer-map iframe:hover{
    filter:none;
}
.footer-bottom{
    margin-top:30px;
}
.copyright-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.15);
    margin-bottom:15px;
}
.copyright{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.copyright p{
    margin:0;
    color:#aaa;
    font-family:'Inter Tight',sans-serif;
    font-size:.9rem;
}
.designer-logo{
    width:100px;
    vertical-align:middle;
    margin-left:8px;
    transition:.3s ease;
}
.designer-logo:hover{
    transform:scale(1.05);
}
.footer .fade-in-up{
    opacity:0;
    transform:translateY(40px);
    animation:footerFade .9s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes footerFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* ABOUT.HTML */

/* TOP COVER */
.top-cover{
    position:relative;
    width:100%;
    height:65vh;
    min-height:350px;
    overflow:hidden;
}
.top-cover-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    animation:coverZoom 12s ease infinite alternate;
}
.top-cover-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(14,24,36,.65),
        rgba(14,24,36,.55)
    );
}
.cover-content-1{
    position:absolute;
    z-index:2;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.cover-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.4rem,5vw,4rem);
    font-weight:600;
    color:#fff;
    letter-spacing:5px;
    margin:0 0 25px;
    opacity:0;
    animation:fadeDown 1s .2s forwards;
}
.cover-title::after{
    content:"";
    display:block;
    width:70px;
    height:2px;
    background:#b08a5a;
    margin:18px auto 0;
}
.breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    font-family:'Inter Tight',sans-serif;
    font-size:.95rem;
    letter-spacing:1px;
    opacity:0;
    animation:fadeUp 1s .5s forwards;
}
.breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
}
.breadcrumb a:hover{
    color:#b08a5a;
}
.breadcrumb span{
    color:rgba(255,255,255,.7);
}
.breadcrumb i{
    font-size:.7rem;
    color:#b08a5a;
}

@keyframes fadeDown{
from{
    opacity:0;
    transform:translateY(-30px);
}
to{
    opacity:1;
    transform:translateY(0);
}
}
@keyframes fadeUp{
from{
    opacity:0;
    transform:translateY(30px);
}
to{
    opacity:1;
    transform:translateY(0);
}
}
@keyframes coverZoom{
from{
    transform:scale(1);
}
to{
    transform:scale(1.08);
}
}


/* RESTAURANT.HTML */
.home-restaurant{
    padding:70px 0;
    background:#fff;
}
.restaurant-image{
    position:relative;
}
.restaurant-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:0 100px 0 100px;
}
.restaurant-badge{
    position:absolute;
    bottom:40px;
    right:-30px;
    background:#0e1824;
    color:white;
    padding:25px 35px;
    display:flex;
    align-items:center;
    gap:15px;
    border-radius:30px 0 30px 0;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}
.restaurant-badge i{
    color:#b08a5a;
    font-size:30px;
}
.restaurant-badge p{
    margin:0;
    font-family:'Inter Tight';
    line-height:1.5;
}
.restaurant-subtitle{
    color:#b08a5a;
    text-transform:uppercase;
    letter-spacing:3px;
    font-family:'Inter Tight';
}
.restaurant-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.4rem,4vw,3.5rem);
    line-height:1.15;
    color:#0e1824;
}
.restaurant-title span{
    color:#b08a5a;
}
.restaurant-text{
    font-family:'Inter Tight';
    color:#666;
    line-height:1.9;
    margin-top:20px;
}
.restaurant-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin:35px 0;
}
.restaurant-features div{
    font-family:'Inter Tight';
    color:#0e1824;
}
.restaurant-features i{
    color:#b08a5a;
    margin-right:8px;
}


/* WHY OUR RESTAURSANT */
.restaurant-why{
    padding:70px 0;
    background:#f8f6f1;
    overflow:hidden;
}
.restaurant-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
    color:#b08a5a;
    margin-bottom:20px;
}
.restaurant-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.5rem,4vw,3.8rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:25px;
}
.restaurant-title span{
    color:#b08a5a;
}
.restaurant-description{
    font-family:'Inter Tight',sans-serif;
    color:#666;
    font-size:1.05rem;
    line-height:1.8;
    max-width:600px;
    margin-bottom:20px;
}
.restaurant-features{
    margin-top:35px;
}
.restaurant-feature{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    align-items:flex-start;
}
.restaurant-feature i{
    width:55px;
    height:55px;
    min-width:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0e1824;
    color:#b08a5a;
    border-radius:50%;
    font-size:1.2rem;
}
.restaurant-feature h3{
    font-family:'Cormorant Infant',serif;
    font-size:1.5rem;
    color:#0e1824;
    margin-bottom:5px;
}
.restaurant-feature p{
    font-family:'Inter Tight',sans-serif;
    color:#777;
    margin:0;
    line-height:1.6;
}
.restaurant-images{
    position:relative;
    padding-left:40px;
}
.restaurant-main-img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:
    0 100px 0 100px;
    box-shadow:
    0 35px 80px rgba(0,0,0,.18);
}
.restaurant-small-card{
    position:absolute;
    left:0;
    bottom:50px;
    background:#fff;
    width:300px;
    padding:25px;
    display:flex;
    gap:18px;
    align-items:center;
    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
    border-radius:0 40px 0 40px;
}
.restaurant-small-card i{
    font-size:2rem;
    color:#b08a5a;
}
.restaurant-small-card h4{
    font-family:'Cormorant Infant',serif;
    color:#0e1824;
    font-size:1.3rem;
    margin:0;
}
.restaurant-small-card p{
    font-family:'Inter Tight',sans-serif;
    color:#777;
    font-size:.9rem;
    margin:5px 0 0;
}

/* RESTAURANT MENU */
.restaurant-menu{
    padding:70px 0;
    background:#fff;
}
.menu-subtitle{
    font-family:'Inter Tight',sans-serif;
    color:#b08a5a;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
    margin-bottom:20px;
}
.menu-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.5rem,4vw,3.7rem);
    color:#0e1824;
    font-weight:600;
    line-height:1.2;
}
.menu-title span{
    color:#b08a5a;
}
.menu-text{
    max-width:700px;
    margin:20px auto 0;
    font-family:'Inter Tight',sans-serif;
    color:#666;
    line-height:1.8;
    font-size:1.05rem;
}
.menu-card{
    height:100%;
    background:#fff;
    padding:45px 30px;
    text-align:center;
    border-radius:
    0 50px 0 50px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
    transition:.5s ease;
    border:1px solid rgba(176,138,90,.15);
}
.menu-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 30px 70px rgba(0,0,0,.15);
}
.menu-card i{
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    background:#0e1824;
    color:#b08a5a;
    border-radius:50%;
    font-size:1.8rem;
}
.menu-card h3{
    font-family:'Cormorant Infant',serif;
    color:#0e1824;
    font-size:1.7rem;
    margin-bottom:15px;
}
.menu-card p{
    font-family:'Inter Tight',sans-serif;
    color:#777;
    line-height:1.7;
    font-size:.95rem;
}

/* MENU */
.restaurant-food-menu{
    padding:80px 0;
    background:#f8f5ef;
}
.menu-category{
    background:#fff;
    padding:40px;
    border-radius:0 50px 0 50px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    margin-bottom:35px;
}
.menu-category h3{
    font-family:'Cormorant Infant',serif;
    color:#0e1824;
    font-size:2rem;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    gap:12px;
}
.menu-category h3 i{
    color:#b08a5a;
    font-size:1.3rem;
}
.menu-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid rgba(176,138,90,.2);
}
.menu-item:last-child{
    border-bottom:none;
}
.menu-item h4{
    font-family:'Cormorant Infant',serif;
    color:#0e1824;
    font-size:1.4rem;
    margin-bottom:5px;
}
.menu-item p{
    margin:0;
    font-family:'Inter Tight';
    color:#777;
    line-height:1.6;
}
.menu-item span{
    color:#b08a5a;
    font-family:'Inter Tight';
    font-size:1.2rem;
    font-weight:700;
    white-space:nowrap;
}
.menu-category{
    transition:.5s ease;
}
.menu-category:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}
/* MENU FILTERS */

.menu-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.menu-filter {
    border: 1px solid #b08a5a;
    background: transparent;
    color: #0e1824;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s ease;
}

.menu-filter:hover,
.menu-filter.active {
    background: #b08a5a;
    color: #fff;
}


/* FILTER ANIMATION */

.menu-category.filter-show {
    animation: menuFilterShow .4s ease forwards;
}

@keyframes menuFilterShow {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ROOMS.HTML */
.luxury-rooms{
    padding:100px 0;
    background:#fff8f2;
    overflow:hidden;
}
.rooms-heading{
    max-width:850px;
    margin:auto;
}
.rooms-subtitle{
    font-family:'Inter Tight',sans-serif;
    color:#b08a5a;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.95rem;
    font-weight:600;
    margin-bottom:20px;
}
.rooms-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.5rem,4vw,4rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:20px;
}
.rooms-title span{
    color:#b08a5a;
}
.rooms-description{
    font-family:'Inter Tight',sans-serif;
    color:#666;
    font-size:1.05rem;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}
.luxury-room-card{
    position:relative;
    height:620px;
    overflow:hidden;
    border-radius:
    0 90px 0 90px;
    box-shadow:
    0 30px 70px rgba(0,0,0,.15);
    cursor:pointer;
}
.luxury-room-card.small{
    height:520px;
}
.luxury-room-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
    transform 1.2s cubic-bezier(.22,1,.36,1);
}
.luxury-room-card:hover img{
    transform:scale(1.08);
}
.luxury-room-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(14,24,36,.95),
        rgba(14,24,36,.15)
    );
    opacity:.8;
    transition:.6s ease;
}
.luxury-room-card:hover::after{
    opacity:.95;
}
.room-number{
    position:absolute;
    top:35px;
    left:35px;
    z-index:3;
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:
    rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#ffc89a;
    font-family:'Cormorant Infant';
    font-size:2rem;
    font-weight:600;
    border:
    1px solid rgba(255,255,255,.25);
}
.room-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    align-items:flex-end;
    padding:40px;
}
.room-content{
    width:100%;
    transform:
    translateY(170px);
    transition:
    transform .7s cubic-bezier(.19,1,.22,1);
}
.luxury-room-card:hover .room-content{
    transform:translateY(0);
}
.room-content h3{
    font-family:'Cormorant Infant',serif;
    color:#fff;
    font-size:
    clamp(1.8rem,2.5vw,2.5rem);
    line-height:1.15;
    font-weight:600;
    margin-bottom:15px;
}
.room-short{
    font-family:'Inter Tight',sans-serif;
    color:rgba(255,255,255,.9);
    line-height:1.7;
    font-size:1rem;
    margin-bottom:25px;
}
.room-extra{
    opacity:0;
    transform:translateY(30px);
    transition:
    .6s ease;
}
.luxury-room-card:hover .room-extra{
    opacity:1;
    transform:translateY(0);
}
.room-extra p{
    font-family:'Inter Tight',sans-serif;
    color:rgba(255,255,255,.8);
    line-height:1.7;
    font-size:.95rem;
    margin-bottom:20px;
}
.room-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}
.room-features span{
    display:flex;
    align-items:center;
    gap:7px;
    color:#fff;
    font-family:'Inter Tight',sans-serif;
    font-size:.9rem;
    padding:
    8px 14px;
    border-radius:30px;
    background:
    rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
}
.room-features i{
    color:#ffc89a;
}
.luxury-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:
    12px 32px;
    border-radius:30px;
    background:#ffc89a;
    color:#0e1824;
    text-decoration:none;
    font-family:'Inter Tight',sans-serif;
    font-weight:600;
    transition:.5s ease;
}
.luxury-btn:hover{
    background:#fff;
    color:#0e1824;
    transform:translateY(-4px);
}

/* GALLERY.HTML */
.luxury-gallery{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}
.gallery-heading{
    max-width:850px;
    margin:0 auto 50px;
}
.gallery-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.95rem;
    font-weight:600;
    color:#b08a5a;
    margin-bottom:20px;
}
.gallery-title{
    font-family:'Cormorant Infant',serif;
    font-size:
    clamp(2.5rem,4vw,4rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:20px;
}
.gallery-title span{
    color:#b08a5a;
}
.gallery-description{
    max-width:700px;
    margin:auto;
    font-family:'Inter Tight',sans-serif;
    color:#666;
    line-height:1.8;
    font-size:1.05rem;
}
.luxury-gallery .item{
    position:relative;
    overflow:hidden;
    border-radius:
    0 55px 0 55px;
    background:#fff;
    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
    transition:
    transform .6s cubic-bezier(.22,1,.36,1),
    box-shadow .6s ease;
}
.luxury-gallery .item:hover{
    transform:translateY(-10px);
    box-shadow:
    0 35px 70px rgba(0,0,0,.18);
}
.luxury-gallery .item a{
    display:block;
    position:relative;
    overflow:hidden;
}
.luxury-gallery .item img{
    width:100%;
    height:330px;
    object-fit:cover;
    transition:
    transform 1s cubic-bezier(.19,1,.22,1);
}
.luxury-gallery .item:hover img{
    transform:scale(1.1);
}
.luxury-gallery .item::before{
    content:"";
    position:absolute;
    inset:15px;
    border:
    1px solid rgba(255,200,154,.7);
    border-radius:
    0 45px 0 45px;
    z-index:2;
    opacity:0;
    transform:scale(.95);
    transition:.5s ease;
    pointer-events:none;
}
.luxury-gallery .item:hover::before{
    opacity:1;
    transform:scale(1);
}
.luxury-gallery .item::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(14,24,36,.45),
    transparent
    );
    opacity:0;
    transition:.5s ease;
    pointer-events:none;
}
.luxury-gallery .item:hover::after{
    opacity:1;
}


/* CONTACT.HTML */
.contact-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}
.contact-content{
    padding-right:30px;
}
.contact-subtitle{
    font-family:'Inter Tight',sans-serif;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
    font-weight:600;
    color:#b08a5a;
    margin-bottom:20px;
}
.contact-title{
    font-family:'Cormorant Infant',serif;
    font-size:clamp(2.5rem,4vw,3.8rem);
    line-height:1.15;
    font-weight:600;
    color:#0e1824;
    margin-bottom:25px;
}
.contact-title span{
    color:#b08a5a;
}
.contact-text{
    font-family:'Inter Tight',sans-serif;
    font-size:1.05rem;
    line-height:1.9;
    color:#666;
    margin-bottom:15px;
}
.contact-content .custom-btn1{
    margin-top:25px;
}
.contact-map{
    height:520px;
    overflow:hidden;
    border-radius:
    0 100px 0 100px;
    box-shadow:
    0 30px 80px rgba(0,0,0,.18);
    position:relative;
}
.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}
.contact-card{
    height:100%;
    min-height:230px;
    background:#0e1824;
    padding:40px 25px;
    text-align:center;
    border-radius:
    0 50px 0 50px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
    transition:
    transform .6s cubic-bezier(.22,1,.36,1),
    box-shadow .5s ease;
    position:relative;
    overflow:hidden;
}
.contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:#b08a5a;
    transition:.5s ease;
}
.contact-card:hover::before{
    width:100%;
}
.contact-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 35px 80px rgba(0,0,0,.25);
}
.contact-card i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:#b08a5a;
    color:#0e1824;
    font-size:1.6rem;
    transition:
    transform .5s cubic-bezier(.22,1,.36,1),
    background .3s ease;
}
.contact-card:hover i{
    background:#ffc89a;
    transform:
    translateY(-8px)
    rotate(8deg);
}
.contact-card h3{
    font-family:'Cormorant Infant',serif;
    font-size:1.7rem;
    font-weight:600;
    color:#fff;
    margin-bottom:15px;
}
.contact-card p{
    font-family:'Inter Tight',sans-serif;
    color:#ddd;
    font-size:1rem;
    line-height:1.7;
    margin:0;
}
.contact-link{
    color:#ddd;
    text-decoration:none;
    transition:.3s ease;
}
.contact-link:hover{
    color:#ffc89a;
}















/*   MEDIA QUERIES */
@media(min-width:1200px){
    .navbar-nav{
        gap:15px!important;
    }
}
@media(max-width:1199px){
    .navbar{
        background:rgba(14,24,36,.95);
        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);
        box-shadow:
        0 10px 35px rgba(0,0,0,.25);
    }
    .navbar .container-fluid{
        justify-content:space-between;
        padding-left:20px;
        padding-right:20px;
    }
    .navbar-brand{
        margin-right:auto;
    }
    .navbar-toggler{
        margin-left:auto;
    }
    .navbar-collapse{
        background:rgba(14,24,36,.98);
        backdrop-filter:blur(20px);
        -webkit-backdrop-filter:blur(20px);
        margin-top:15px;
        padding:30px 20px;
        border-radius:20px;
        box-shadow:
        0 20px 50px rgba(0,0,0,.35);
    }
    .navbar-nav{
        align-items:center;
    }
    .navbar-nav .nav-link{
        text-align:center;
        padding:12px 25px;
    }
    .navbar .d-flex{
        justify-content:center;
        width:100%;
        margin-top:25px;
    }
    .custom-btn1{
        width:auto;
        min-width:180px;
        text-align:center;
    }
}
@media(max-width:1200px){
    .carousel-item{
        height:90vh;
        min-height:700px;
    }
    .carousel-caption{
        width:85%;
    }
    .hero-text-1{
        font-size:clamp(2rem,5vw,3.5rem);
    }
    .hero-text-2{
        max-width:650px;
    }
}
@media(max-width:992px){
    .carousel-item{
        height:85vh;
        min-height:650px;
    }
    .carousel-caption{
        width:90%;
        transform:translate(-50%,-40%);
    }
    .hero-text-1{
        font-size:clamp(2rem,6vw,3rem);
        margin-bottom:20px;
    }
    .hero-text-2{
        font-size:1.05rem;
        line-height:1.6;
    }
}
@media(max-width:768px){
    .carousel-item{
        height:70vh;
        min-height:600px;
    }
    .carousel-caption{
        width:92%;
        padding:0 10px;
        transform:translate(-50%,-35%);
    }
    .hero-text-1{
        font-size:clamp(2rem,9vw,2.7rem);
        line-height:1.1;
        letter-spacing:0;
        margin-bottom:18px;
    }
    .hero-text-2{
        font-size:.95rem;
        line-height:1.6;
        max-width:330px;
    }
}
@media(max-width:480px){
    .carousel-item{
        height:55vh;
        min-height:550px;
    }
    .carousel-caption{
        transform:translate(-50%,-30%);
    }
    .hero-text-1{
        font-size:2rem;
    }
    .hero-text-2{
      font-size:.9rem;
    }
}
@media(max-height:600px) and (orientation:landscape){
    .carousel-item{
        height:100vh;
        min-height:500px;
    }
    .carousel-caption{
        transform:translate(-50%,-40%);
    }
    .hero-text-1{
        margin-bottom:10px;
    }
}
@media (max-width: 991px){
    .home-about{
        padding:70px 0;
    }
    .home-about .row{
        row-gap:60px;
    }
    .home-about h5{
        text-align:center;
    }
    .home-about h6{
        text-align:center;
        font-size:clamp(2rem,5vw,3rem);
    }
    .home-about p{
        max-width:100%;
        text-align:center;
    }
    .home-about .custom-btn1{
        display:table;
        margin:35px auto 0;
    }
    .home-about .col-md-6:last-child{
        position:relative;
        min-height:500px;
        max-width:650px;
        margin:auto;
    }
    .img1-about{
        width:72%;
        height:420px;
    }
    .img2-about{
        width:45%;
        height:230px;
        border-width:10px;
    }
}
@media (max-width: 767px){
    .home-about{
        padding:60px 0;
    }
    .home-about .col-md-6:last-child{
        min-height:420px;
    }
    .img1-about{
        width:78%;
        height:330px;
        border-radius:0 40px 0 40px;
    }
    .img2-about{
        width:50%;
        height:180px;
        border-width:8px;
        border-radius:35px 0 35px 0;
    }
}
@media (max-width: 480px){
    .home-about h6{
        font-size:2rem;
    }
    .home-about p{
        font-size:.95rem;
        line-height:1.7;
    }
    .home-about .col-md-6:last-child{
        min-height:340px;
    }
    .img1-about{
        width:80%;
        height:260px;
    }
    .img2-about{
        width:52%;
        height:140px;
        border-width:6px;
    }
}
@media(max-width:991px){
    .home-rooms{
        padding:70px 0;
    }
    .home-rooms h6{
        margin-bottom:45px;
        font-size:clamp(1.8rem,4vw,2.5rem);
    }
    .room-carousel .item{
        padding:10px;
    }
    .home-rooms .card{
        border-radius:20px;
    }
    .home-rooms .card-img-top{
        height:250px;
    }
    .stars{
        top:15px;
        left:15px;
        padding:8px 13px;
        font-size:.8rem;
    }
    .home-rooms .card-body{
        padding:25px;
    }
    .room-title{
        font-size:1.55rem;
    }
    .room-facilities{
        gap:12px;
    }
    .room-facilities span{
        font-size:.9rem;
    }
    .room-description{
        font-size:.95rem;
        line-height:1.7;
    }
}
@media(max-width:767px){
    .home-rooms{
        padding:55px 0;
        overflow:hidden;
    }
    .home-rooms h5{
        font-size:.85rem;
        letter-spacing:2px;
    }
    .home-rooms h6{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:35px;
    }
    .home-rooms h6 br{
        display:none;
    }
    .room-carousel .item{
        padding:5px;
        margin:0;
    }
    .home-rooms .card{
        border-radius:18px;
    }
    .home-rooms .card-img-top{
        height:220px;
    }
    .stars{
        top:12px;
        left:12px;
        padding:7px 12px;
        gap:3px;
        font-size:.75rem;
    }
    .home-rooms .card-body{
        padding:20px;
    }
    .room-title{
        font-size:1.45rem;
        margin-bottom:15px;
    }
    .room-facilities{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }
    .room-facilities span{
        font-size:.85rem;
    }
    .room-description{
        font-size:.9rem;
        line-height:1.65;
    }
    .room-btn{
        margin:15px auto 5px;
    }
    .section-btn{
        margin-top:40px;
    }
}
@media(max-width:480px){
    .home-rooms h6{
        font-size:1.7rem;
    }
    .home-rooms .card-img-top{
        height:200px;
    }
    .stars{
        padding:6px 10px;
    }
    .stars i{
        font-size:.7rem;
    }
    .room-title{
        font-size:1.3rem;
    }
    .room-facilities{
        grid-template-columns:1fr;
    }
    .room-description{
        font-size:.88rem;
    }
    .custom-btn1{
        padding:10px 25px;
    }
}
@media(max-width:991px){
.home-cover{
    height:500px;
}
.circle-btn{
    width:120px;
    height:120px;
    right:8%;
    font-size:1rem;
}
.vover-text{
    max-width:600px;
}
}
@media(max-width:767px){
.home-cover{
    height:450px;
    text-align:center;
}
.home-cover::before{
    background:
    rgba(14,24,36,.55);
}
.home-cover .container{
    display:flex;
    justify-content:center;
}
.cover-content{
    max-width:100%;

}
.cover-text{
    font-size:2rem;
}
.circle-btn{
    position:absolute;
    width:105px;
    height:105px;
    right:50%;
    bottom:35px;
    top:auto;
    transform:translateX(50%);
    font-size:.9rem;
}
.circle-btn:hover{
    transform:
    translateX(50%)
    scale(1.08);
}
}
@media (max-width:1199px){
    .z-images{
        max-width:500px;
        height:540px;
    }
    .img1-z{
        height:460px;
    }
    .img2-z{
        height:240px;
    }
}
@media (max-width:991px){
    .whyUs-section{
        padding:80px 0;
    }
    .z-images{
        max-width:470px;
        height:500px;
        margin:0 auto 60px;
    }
    .img1-z{
        width:74%;
        height:420px;
        right:15px;
    }
    .img2-z{
        width:46%;
        height:220px;
        left:0;
        bottom:0;
        border:10px solid #fff;
    }
    .why-subtitle,
    .why-title{
        text-align:center;
    }
    .why-item h3{
        font-size:1.45rem;
    }
}
@media (max-width:767px){
    .whyUs-section{
        padding:60px 0;
    }
    .z-images{
        max-width:360px;
        height:380px;
        margin:0 auto 45px;
    }
    .img1-z{
        width:78%;
        height:320px;
        right:10px;
        border-radius:0 45px 0 45px;
    }
    .img2-z{
        width:52%;
        height:170px;
        left:0;
        bottom:0;
        border:8px solid #fff;
        border-radius:35px 0 35px 0;
    }
    .why-subtitle{
        text-align:center;
        font-size:.9rem;
    }
    .why-title{
        text-align:center;
        font-size:2rem;
        margin-bottom:30px;
    }
    .why-item{
        margin-bottom:22px;
    }
    .why-item h3{
        font-size:1.3rem;
    }
    .why-item p{
        margin-left:20px;
        font-size:.95rem;
        line-height:1.7;
    }
}
@media (max-width:480px){
    .z-images{
        max-width:300px;
        height:320px;
    }
    .img1-z{
        width:80%;
        height:260px;
        right:35px;
        border-radius:0 35px 0 35px;
    }
    .img2-z{
        width:56%;
        height:145px;
        left:0;
        bottom:0;
        border:6px solid #fff;
        border-radius:25px 0 25px 0;
    }
    .why-title{
        font-size:1.75rem;
    }
    .why-item h3{
        font-size:1.15rem;
    }
    .why-item p{
        margin-left:18px;
        font-size:.9rem;
    }
}
@media(max-width:991px){
.home-facilities{
    padding:90px 0;
}
.facility-subtitle,
.facility-title,
.facility-text{
    text-align:center;
}
.facility-text{
    margin:0 auto 40px;
}
.facility-card{
    margin:15px 0;
}
}
@media(max-width:767px){
.home-facilities{
    padding:70px 0;
}
.facility-title{
    font-size:2rem;
}
.facility-text{
    font-size:.95rem;
}
.facility-card{
    min-height:auto;
    padding:30px 20px;
    border-radius:0 30px 0 30px;
}
.facility-card i{
    font-size:2.4rem;
}
.facility-card h3{
    font-size:1.4rem;
}
}
@media(max-width:480px){
.facility-title{
    font-size:1.75rem;
}
.facility-subtitle{
    font-size:.85rem;
    letter-spacing:2px;
}
}
@media(max-width:991px){
.home-gallery{
    padding:90px 0;
}
.gallery-heading{
    text-align:center;
}
.gallery-title{
    margin:auto;
}
.gallery-card{
    height:350px;
}
}
@media(max-width:767px){
.home-gallery{
    padding:70px 0;
}
.gallery-subtitle{
    font-size:.85rem;
}
.gallery-title{
    font-size:2rem;
}
.gallery-card{
    height:280px;
    border-radius:0 40px 0 40px;
}
}
@media(max-width:480px){
.gallery-card{
    height:240px;
}
}
@media(max-width:991px){
.home-testimonials{
    padding:90px 0;
}
.testimonial-card{
    min-height:430px;
}
}
@media(max-width:767px){
.home-testimonials{
    padding:70px 0;
}
.testimonial-title{
    font-size:2rem;
}
.testimonial-card{
    min-height:auto;
    padding:35px 25px;
}
.flag-box{
    width:70px;
    height:70px;
}
.flag-testimonial{
    width:48px;
    height:48px;
}
.guest-name{
    font-size:1.5rem;
}
.testimonial-text{
    font-size:.95rem;
}
}
@media(max-width:480px){
.testimonial-subtitle{
    font-size:.85rem;
    letter-spacing:2px;
}
.testimonial-title{
    font-size:1.75rem;
}
.testimonial-card{
    border-radius:22px;
    padding:30px 20px;
}
.flag-box{
    width:65px;
    height:65px;
}
.flag-testimonial{
    width:44px;
    height:44px;
}
}
@media(max-width:1199px){
.restaurant-image img{
    height:560px;
}
}
@media(max-width:991px){
.home-restaurant{
    padding:90px 0;
}
.restaurant-content{
    max-width:100%;
    margin-bottom:50px;
}
.restaurant-image img{
    height:500px;
}
}
@media(max-width:767px){
.home-restaurant{
    padding:70px 0;
}
.restaurant-title{
    font-size:2rem;
}
.restaurant-quote{
    font-size:1.2rem;
}
.restaurant-text{
    font-size:.95rem;
}
.restaurant-image{
    border-radius:25px;
}
.restaurant-image img{
    height:380px;
}
}
@media(max-width:576px){
.restaurant-subtitle{
    letter-spacing:2px;
    font-size:.9rem;
}
.restaurant-title{
    font-size:1.8rem;
}
.restaurant-image img{
    height:300px;
}
.restaurant-quote{
    padding-left:18px;
}
.restaurant-quote::before{
    font-size:2.3rem;
}
}
@media(max-width:991px){
.footer{
    padding:75px 0 30px;
}
.footer-description{
    max-width:100%;
}
.footer-map iframe{
    height:300px;
}
}
@media(max-width:767px){
.footer{
    text-align:center;
}
.footer-logo{
    max-width: 80px;
    margin-left:auto;
    margin-right:auto;
}
.footer-description{
    margin-left:auto;
    margin-right:auto;
}
.footer-social-row{
    justify-content:center;
    flex-wrap:wrap;
}
.footer-title::after{
    left:50%;
    transform:translateX(-50%);
}
.footer-menu-center{
    align-items:center;
}
.footer-contact .footer-link{
    justify-content:center;
}
.footer-link:hover{
    transform:none;
}
.copyright{
    flex-direction:column;
    gap:15px;
}
.footer-map iframe{
    height:250px;
}
}
@media(max-width:480px){
.footer{
    padding-top:60px;
}
.footer-logo{
    width:180px;
}
.footer-title{
    font-size:1.5rem;
}
.footer-description{
    font-size:.95rem;
}
.footer-social{
    width:36px;
    height:36px;
}
}
@media(max-width:991px){
.top-cover{
    height:45vh;
}
.cover-title{
    letter-spacing:3px;
}
}
@media(max-width:767px){
.top-cover{
    height:40vh;
    min-height:280px;
}
.cover-title{
    font-size:2.2rem;
    margin-bottom:20px;
}
.breadcrumb{
    font-size:.85rem;
    gap:10px;
}
}
@media(max-width:480px){
.cover-title{
    font-size:1.9rem;
}
.top-cover{
    height:35vh;
}
}
@media(max-width:991px){
.restaurant-image img{
    height:450px;
}
.restaurant-badge{
    right:20px;
}
.restaurant-content{
    margin-top:50px;
}
}
@media(max-width:767px){
.home-restaurant{
    padding:50px 0;
}
.restaurant-image img{
    height:350px;
    border-radius:0 50px 0 50px;
}
.restaurant-badge{
    bottom:20px;
    padding:15px 20px;
}
.restaurant-features{
    flex-direction:column;
}
}
@media(max-width:991px){
    .restaurant-why{
        padding:50px 0;
    }
    .restaurant-images{
        padding-left:0;
        margin-top:30px;
    }
    .restaurant-main-img{
        height:500px;
        border-radius:0 70px 0 70px;
    }
    .restaurant-small-card{
        left:20px;
        bottom:30px;
    }
}
@media(max-width:576px){
    .restaurant-title{
        font-size:2.3rem;
    }
    .restaurant-feature h3{
        font-size:1.3rem;
    }
    .restaurant-feature i{
        width:45px;
        height:45px;
        min-width:45px;
    }
    .restaurant-main-img{
        height:420px;
    }
    .restaurant-small-card{
        width:260px;
        padding:18px;
    }
}
@media(max-width:991px){
    .restaurant-menu{
        padding:80px 0;
    }
}
@media(max-width:576px){
    .menu-card{
        padding:35px 25px;
    }
    .menu-title{
        font-size:2.3rem;
    }
}
@media(max-width:991px){
.restaurant-food-menu{
    padding:60px 0;
}
.menu-category{
    margin-bottom:30px;
}
}
@media(max-width:767px){
.restaurant-food-menu{
    padding:50px 0;
}
.menu-category{
    padding:30px 25px;
    border-radius:0 35px 0 35px;
}
.menu-category h3{
    font-size:1.7rem;
}
.menu-item{
    flex-direction:column;
    gap:8px;
}
.menu-item span{
    align-self:flex-start;
}
.menu-item h4{
    font-size:1.25rem;
}
}
@media(max-width:991px){
.luxury-rooms{
    padding:80px 0;
}
.luxury-room-card,
.luxury-room-card.small{
    height:560px;
}
.room-content{
    transform:none;
}
.room-extra{
    opacity:1;
    transform:none;
}
.room-overlay{
    padding:30px;
}
}
@media(max-width:576px){
.luxury-rooms{
    padding:60px 0;
}
.rooms-title{
    font-size:2.4rem;
}
.rooms-description{
    font-size:.95rem;
}
.luxury-room-card,
.luxury-room-card.small{
    height:auto;
    min-height:520px;
    border-radius:
    0 50px 0 50px;
}
.luxury-room-card img{
    position:absolute;
    height:100%;
}
.room-number{
    width:55px;
    height:55px;
    top:20px;
    left:20px;
    font-size:1.5rem;
}
.room-overlay{
    padding:25px;
}
.room-content{
    transform:none;
}
.room-content h3{
    font-size:1.8rem;
}
.room-short{
    display:none;
}
.room-extra{
    opacity:1;
    transform:none;
}
.room-extra p{
    font-size:.9rem;
}
.room-features{
    gap:8px;
}
.room-features span{
    font-size:.8rem;
    padding:7px 12px;
}
.luxury-btn{
    width:100%;
}
}
@media(max-width:991px){
.luxury-gallery{
    padding:80px 0;
}
.luxury-gallery .item img{
    height:300px;
}
.luxury-gallery .item{
    border-radius:
    0 45px 0 45px;
}
}
@media(max-width:576px){
.luxury-gallery{
    padding:60px 0;
}
.gallery-heading{
    margin-bottom:30px;
}
.gallery-subtitle{
    font-size:.8rem;
    letter-spacing:3px;
}
.gallery-description{
    font-size:.95rem;
}
.luxury-gallery .item{
    margin-top:15px!important;
    margin-bottom:15px!important;
    border-radius:
    0 40px 0 40px;
}
.luxury-gallery .item img{
    height:280px;
}
.luxury-gallery .item::before{
    inset:10px;
    border-radius:
    0 30px 0 30px;
}
}
@media(max-width:1199px){
.contact-map{
    height:480px;
}
.contact-content{
    padding-right:15px;
}
.contact-card{
    padding:35px 20px;
}
}
@media(max-width:991px){
.contact-section{
    padding:80px 0;
}
.contact-content{
    padding-right:0;
}
.contact-map{
    height:420px;
    border-radius:
    0 70px 0 70px;
}
.contact-card{
    min-height:220px;
}
}
@media(max-width:576px){
.contact-section{
    padding:60px 0;
}
.contact-subtitle{
    font-size:.8rem;
    letter-spacing:3px;
}
.contact-title{
    font-size:2.2rem;
}
.contact-text{
    font-size:.95rem;
    line-height:1.8;
}
.contact-content .custom-btn1{
    width:100%;
    text-align:center;
}
.contact-map{
    height:300px;
    border-radius:
    0 50px 0 50px;
}
.contact-card{
    min-height:auto;
    padding:35px 20px;
    border-radius:
    0 40px 0 40px;
}
.contact-card i{
    width:60px;
    height:60px;
    font-size:1.3rem;
}
.contact-card h3{
    font-size:1.5rem;
}
.contact-card p{
    font-size:.9rem;
}
}
@media(max-width:375px){
.contact-title{
    font-size:2rem;
}
.contact-map{
    height:260px;
}
}

