/*==============================
        RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    color:#222;
    background:#ffffff;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==============================
        GLOBAL
==============================*/

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

section{
    padding:50px 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

/*==============================
        HEADER
==============================*/

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    padding: 5px 0;
    background: #fdf8f5;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    
}

.logo img{

    width:190px;

}

.nav-menu ul{

    display:flex;
    gap:40px;

}

.nav-menu a{

    color:#442d1b;

    font-size:15px;

    font-weight:500;

    letter-spacing:.5px;

    transition:.3s;

}

.nav-menu a:hover{

    color:#C8A97E;

}

.btn-book{

    padding:14px 32px;

    background:#C8A97E;

    color:#fff;

    font-size:14px;

    border-radius:4px;

    transition:.3s;

}

.btn-book:hover{

    background:#b89666;

}

/*====================================================
                HERO SECTION
====================================================*/

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-track{

    display:flex;

    width:300%;

    height:100%;

    transition:transform .8s ease-in-out;

}

.hero-slider{

    position:absolute;

    inset:0;

    overflow:hidden;

}

.hero-slide{

    width:100%;

    flex-shrink:0;

}

.hero-slide.active{

    opacity:1;

    z-index:1;

}

.hero-slide img{

    width:1920px;

    height:100%;

    object-cover: contain;   

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    z-index:2;

}

/*====================================================
                HERO CONTENT
====================================================*/

.hero .container{

    position:relative;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:5;

}

.hero-content{

    text-align:center;

    color:#fff;

    max-width:900px;

}

.hero-subtitle{

    display:inline-block;

    color:#C8A97E;

    letter-spacing:4px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:72px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-content p{

    font-size:20px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}

/*====================================================
                HERO BUTTONS
====================================================*/

.hero-arrow{

    position:absolute;

    top:60%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:#fff;

    cursor:pointer;

    transition:.35s;

    z-index:20;

}

.hero-arrow:hover{

    background:#C8A97E;

}

.hero-prev{

    left:40px;

}

.hero-next{

    right:40px;

}

/*====================================================
                BOOKING SECTION
====================================================*/

.booking-section{

    position:relative;

    margin-top:-70px;

    z-index:50;

}

.booking-form{

    background:#fff;

    border-radius:12px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    padding:35px;

    display:flex;

    gap:20px;

    align-items:flex-end;

}

.form-group{

    flex:1;

    display:flex;

    flex-direction:column;

}

.form-group label{

    font-size:14px;

    color:#555;

    margin-bottom:8px;

    font-weight:600;

}

.form-group input,
.form-group select{

    height:55px;

    border:1px solid #ddd;

    padding:0 18px;

    font-size:15px;

    border-radius:6px;

    outline:none;

    transition:.3s;

    background:#fff;

}

.form-group input:focus,
.form-group select:focus{

    border-color:#C8A97E;

}

.book-btn{

    height:55px;

    min-width:170px;

    border:none;

    background:#343434;

    color:#fff;

    font-size:16px;

    font-weight:600;

    border-radius:6px;

    cursor:pointer;

    transition:.3s;

}

.book-btn:hover{

    background:#C8A97E;

}

/*====================================================
            LARGE DESKTOP
====================================================*/

@media (max-width:1400px){

.hero-content h1{

    font-size:62px;

}

}


/*====================================================
            TABLET RESPONSIVE
====================================================*/

@media (max-width: 992px){

    /* Hero */

    .hero{

        height:85vh;

    }

    .hero-content{

        padding:0 20px;

    }

    .hero-subtitle{

        font-size:14px;

        letter-spacing:3px;

    }

    .hero-content h1{

        font-size:52px;

        margin-bottom:20px;

    }

    .hero-content p{

        font-size:18px;

    }

    /* Slider Arrows */

    .hero-arrow{

        width:50px;

        height:50px;

    }

    .hero-prev{

        left:20px;

    }

    .hero-next{

        right:20px;

    }

    /* Booking */

    .booking-section{

        margin-top:-40px;

    }

    .booking-form{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:20px;

        padding:30px;

    }

    .book-btn{

        width:100%;

        min-width:unset;

    }

}


/*====================================================
            MOBILE RESPONSIVE
====================================================*/

@media (max-width:768px){

    /* Hero */

    .hero{

        height:70vh;

        min-height:500px;

    }

    .hero-content{

        padding:0 20px;

    }

    .hero-subtitle{

        font-size:13px;

        letter-spacing:2px;

    }

    .hero-content h1{

        font-size:36px;

        line-height:1.25;

        margin-bottom:18px;

    }

    .hero-content p{

        font-size:16px;

        line-height:1.8;

    }

    /* Arrows */

    .hero-arrow{

        width:42px;

        height:42px;

        font-size:14px;

    }

    .hero-prev{

        left:12px;

    }

    .hero-next{

        right:12px;

    }

    /* Booking */

    .booking-section{

        margin-top:30px;

    }

    .booking-form{

        grid-template-columns:1fr;

        padding:25px;

        gap:18px;

    }

    .form-group{

        width:100%;

    }

    .form-group input,
    .form-group select{

        height:50px;

    }

    .book-btn{

        width:100%;

        height:52px;

    }

}


/*====================================================
            SMALL MOBILE
====================================================*/

@media (max-width:480px){

    .hero{

        height:65vh;

        min-height:450px;

    }

    .hero-content h1{

        font-size:30px;

    }

    .hero-content p{

        font-size:15px;

    }

    .booking-form{

        padding:20px;

    }

    .hero-arrow{

        display:none;

    }

}

/*===================================
            ABOUT SECTION
===================================*/

.about{
    padding:40px 0 100px;
    background:#ffffff;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content{
    flex:1;
}

.section-subtitle{
    display:inline-block;
    font-size:14px;
    letter-spacing:3px;
    color:#C8A97E;
    font-weight:700;
    margin-bottom:18px;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    color:#222;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
    margin-top:10px;
    padding:15px 38px;
    background:#343434;
    color:#fff;
    border-radius:4px;
    transition:.3s;
    font-weight:600;
}

.about-btn:hover{
    background:#C8A97E;
}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .about{
        padding:100px 0;
    }

    .about-wrapper{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:40px;
    }

}

@media(max-width:768px){

    .about{
        padding:80px 0;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:15px;
    }

}





/*===================================
            OUR ROOMS
===================================*/

.rooms{

    padding:120px 0;

    background:#f7f7f7;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading span{

    color:#C8A97E;

    letter-spacing:3px;

    font-weight:600;

    font-size:14px;

}

.section-heading h2{

    margin-top:15px;

    font-size:54px;

    color:#222;

}

.room-slider{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.room-slider-wrapper{

    width:100%;

    overflow:hidden;

}

.room-slides{

    display:flex;

    transition:transform .6s ease;

}

.room-slide{

    min-width:100%;

    padding:20px;

}

.room-slide img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.room-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#343434;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    transition:.3s;

    z-index:20;

}

.room-btn:hover{

    background:#C8A97E;

}

.prev{

    left:-30px;

}

.next{

    right:-30px;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

.room-slide img{

    height:500px;

}

.section-heading h2{

    font-size:42px;

}

.prev{

    left:10px;

}

.next{

    right:10px;

}

}

@media(max-width:768px){

.rooms{

    padding:80px 0;

}

.room-slide{

    padding:10px;

}

.room-slide img{

    height:320px;

}

.room-btn{

    width:45px;

    height:45px;

    font-size:18px;

}

.section-heading h2{

    font-size:32px;

}

}

/*===================================
        ROOMS BUTTON
===================================*/

.rooms-btn-wrapper{

    text-align:center;

    margin-top:50px;

}

.rooms-btn{

    display:inline-block;

    padding:16px 40px;

    background:#343434;

    color:#fff;

    font-size:16px;

    font-weight:600;

    border-radius:4px;

    transition:.3s ease;

}

.rooms-btn:hover{

    background:#C8A97E;

    color:#fff;

}



/*===================================
            GALLERY SECTION
===================================*/

.gallery{

    padding:120px 0;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-btn-wrapper{

    text-align:center;

    margin-top:50px;

}

.gallery-btn{

    display:inline-block;

    padding:16px 40px;

    background:#343434;

    color:#fff;

    font-weight:600;

    border-radius:4px;

    transition:.3s;

}

.gallery-btn:hover{

    background:#C8A97E;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .gallery{

        padding:80px 0;

    }

    .gallery-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .gallery-item img{

        height:250px;

    }

}



/*===================================
        FACILITIES SECTION
===================================*/

.facilities{

    padding:70px 0;

    background:#f8f8f8;

}

.facilities-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.facility-card{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.facility-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.facility-card i{

    font-size:42px;

    color:#C8A97E;

    margin-bottom:20px;

}

.facility-card h4{

    font-size:22px;

    color:#222;

    line-height:1.4;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .facilities-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .facilities{

        padding:80px 0;

    }

    .facilities-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .facility-card{

        padding:35px 20px;

    }

    .facility-card i{

        font-size:36px;

    }

    .facility-card h4{

        font-size:20px;

    }

}



/*===================================
            FOOTER
===================================*/

.footer{

    background:#343434;

    color:#d8d8d8;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.5fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-column h3{

    color:#fff;

    font-size:32px;

    margin-bottom:20px;

}

.footer-column h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

}

.footer-column p{

    line-height:1.9;

    color:#cfcfcf;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:15px;

}

.footer-column ul li a{

    color:#d8d8d8;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#C8A97E;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.footer-contact i{

    color:#C8A97E;

    margin-top:4px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#4a4a4a;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#C8A97E;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#bdbdbd;

    font-size:15px;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}

@media(max-width:768px){

    .footer{

        padding:60px 0 20px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-contact li{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

}



/*===================================
        INNER PAGE HERO
===================================*/

.page-hero{

    position:relative;

    width:100%;

    height:500px;

    overflow:hidden;

}

.page-hero img{

    width:100%;

    height:140%;

    object-fit:cover;

}

.page-hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.page-hero .container{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.page-hero-content{

    text-align:center;

    color:#fff;

}

.page-hero-content h1{

    font-size:64px;

    margin-bottom:15px;

    font-weight:600;

}

.page-hero-content p{

    font-size:18px;

    letter-spacing:1px;

}

.page-hero-content span{

    margin:0 8px;

    color:#C8A97E;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .page-hero{

        height:400px;

    }

    .page-hero-content h1{

        font-size:48px;

    }

}

@media(max-width:768px){

    .page-hero{

        height:300px;

    }

    .page-hero-content h1{

        font-size:34px;

    }

    .page-hero-content p{

        font-size:16px;

    }

}


/*===================================
        FACILITY CATEGORIES
===================================*/

.facility-section{

    padding:120px 0;

    background:#f8f8f8;

}

.facility-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.facility-box{

    background:#fff;

    padding:40px;

    border-radius:12px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border-top:4px solid #C8A97E;

}

.facility-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.facility-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#C8A97E;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.facility-icon i{

    color:#fff;

    font-size:30px;

}

.facility-box h3{

    font-size:30px;

    margin-bottom:20px;

    color:#222;

}

.facility-box ul{

    list-style:none;

}

.facility-box ul li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:15px;

    color:#555;

    line-height:1.7;

}

.facility-box ul li i{

    color:#C8A97E;

    margin-top:5px;

    font-size:14px;

}

@media(max-width:992px){

    .facility-grid{

        grid-template-columns:1fr;

    }

}


/*===================================
            WHY CHOOSE US
===================================*/

.why-us{

    padding:120px 0;

    background:#fff;

}

.why-us-wrapper{

    display:flex;

    align-items:center;

    gap:70px;

}

.why-us-content{

    flex:1;

}

.why-us-content h2{

    font-size:54px;

    margin:20px 0;

    color:#222;

}

.why-us-content>p{

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}

.why-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.feature-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.feature-item i{

    width:60px;

    height:60px;

    background:#C8A97E;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:22px;

    flex-shrink:0;

}

.feature-item h4{

    font-size:22px;

    margin-bottom:8px;

}

.feature-item p{

    color:#666;

    line-height:1.7;

}

.why-us-image{

    flex:1;

    position:relative;

}

.why-us-image img{

    width:100%;

    border-radius:12px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.experience-card{

    position:absolute;

    right:-30px;

    bottom:40px;

    background:#343434;

    color:#fff;

    padding:35px;

    width:220px;

    text-align:center;

    border-radius:10px;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

}

.experience-card h3{

    font-size:52px;

    color:#C8A97E;

    margin-bottom:10px;

}

.experience-card span{

    line-height:1.6;

    display:block;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .why-us-wrapper{

        flex-direction:column;

    }

    .why-features{

        grid-template-columns:1fr;

    }

    .experience-card{

        position:relative;

        right:auto;

        bottom:auto;

        margin:25px auto 0;

    }

}

@media(max-width:768px){

    .why-us{

        padding:80px 0;

    }

    .why-us-content h2{

        font-size:36px;

    }

}




/*===================================
        CONTACT SECTION
===================================*/

.contact-section{

    padding:120px 0;

    background:#f8f8f8;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    margin-top:60px;

}

.contact-map{

    overflow:hidden;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-map iframe{

    width:100%;

    height:100%;

    min-height:600px;

    border:0;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form h3{

    margin-bottom:30px;

    font-size:32px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:6px;

    outline:none;

    font-size:15px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#C8A97E;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    background:#343434;

    color:#fff;

    border:none;

    padding:16px;

    border-radius:6px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.contact-form button:hover{

    background:#C8A97E;

}

.contact-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.contact-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    width:70px;

    height:70px;

    background:#C8A97E;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin:0 auto 25px;

}

.contact-card h4{

    margin-bottom:15px;

    font-size:24px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .contact-cards{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .contact-section{

        padding:80px 0;

    }

    .contact-map iframe{

        min-height:350px;

    }

    .contact-form{

        padding:30px;

    }

}




/*===================================
        SPLIT PROMOTION
===================================*/

.split-promo{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    width:100%;

    margin:0;

    padding:0;

}

.promo-card{

    position:relative;

    overflow:hidden;

    height:650px;

    cursor:pointer;

}

.promo-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.promo-card:hover img{

    transform:scale(1.12);

}

.promo-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    transition:.4s;

}

.promo-card:hover .promo-overlay{

    background:rgba(0,0,0,.55);

}

.promo-content{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:80%;

    text-align:center;

    color:#fff;

    z-index:2;

}

.promo-content h2{

    font-size:52px;

    margin-bottom:20px;

    line-height:1.2;

}

.promo-content p{

    font-size:17px;

    line-height:1.9;

    max-width:520px;

    margin:0 auto 35px;

}

.promo-btn{

    display:inline-block;

    padding:16px 40px;

    background:#C8A97E;

    color:#fff;

    border-radius:4px;

    font-weight:600;

    transition:.35s;

}

.promo-btn:hover{

    background:#343434;

}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

    .promo-content h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .split-promo{

        grid-template-columns:1fr;

    }

    .promo-card{

        height:420px;

    }

    .promo-content{

        width:90%;

    }

    .promo-content h2{

        font-size:32px;

    }

    .promo-content p{

        font-size:15px;

        margin-bottom:25px;

    }

}




