/*==================================
PART-1
ROOT + RESET + COMMON
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
    --green:#022c2c;
    --darkgreen:#011b1b;
    --gold:#d4af37;
    --white:#ffffff;
    --light:#f7f7f7;
    --text:#555;
    --shadow:0 10px 25px rgba(0,0,0,.15);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section-padding{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--gold);
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    font-size:50px;
    font-family:'Playfair Display',serif;
    color:var(--green);
    margin-top:15px;
}

.section-title p{
    max-width:750px;
    margin:auto;
    line-height:30px;
    margin-top:15px;
}

.primary-btn{
    background:var(--gold);
    color:#000;
    padding:15px 35px;
    display:inline-block;
    border-radius:6px;
    font-weight:600;
    transition:.4s;
}

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


/*==================================
PART-2
TOP BAR + HEADER + NAVBAR
==================================*/

.top-bar{
    background:linear-gradient(to right,var(--darkgreen),var(--green));
    color:#fff;
    padding:12px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.left-top i{
    color:var(--gold);
    margin-right:8px;
}

.right-top{
    display:flex;
    align-items:center;
    gap:25px;
}

.right-top a{
    color:#fff;
}

.book-btn{
    background:var(--gold);
    color:#000 !important;
    padding:10px 20px;
    border-radius:5px;
    font-weight:600;
}

header{
    width:100%;
    height:85px;
    background:var(--green);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 5%;
    position:relative;
    z-index:1000;
}

header.sticky{
    position:fixed;
    top:0;
    left:0;
    box-shadow:var(--shadow);
}

.logo img{
    width:120px;
    text-decoration-style: white;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#fff;
    font-size:15px;
    transition:.4s;
}

nav ul li a:hover{
    color:var(--gold);
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}


/*==================================
PART-3
HERO SLIDER
==================================*/

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#000;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:1s;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#000;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.30);
}

.content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:#fff;
    max-width:700px;
    z-index:5;
}

.content h4{
    color:var(--gold);
    letter-spacing:4px;
    margin-bottom:15px;
}

.content h1{
    font-size:80px;
    line-height:90px;
    font-family:'Playfair Display',serif;
}

.content p{
    margin:30px 0;
    line-height:32px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:100;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.prev:hover,
.next:hover{
    background:var(--gold);
    color:#000;
}


/* RESPONSIVE */

@media(max-width:991px){

.top-bar{
    display:none;
}

nav{
    display:none;
}

.menu-btn{
    display:block;
}

.content h1{
    font-size:55px;
    line-height:65px;
}

}

@media(max-width:768px){

.hero{
    height:70vh;
}

.content h1{
    font-size:38px;
    line-height:50px;
}

.content p{
    font-size:15px;
}

.prev,
.next{
    display:none;
}

.logo img{
    width:90px;
}

}
/*==================================
PART-4
QUICK INFO SECTION
==================================*/

.quick-info{
    background:#fff;
    padding:70px 8%;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.quick-info .box{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.quick-info .box:hover{
    transform:translateY(-10px);
}

.quick-info .box i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:20px;
}

.quick-info .box h3{
    color:var(--green);
    font-size:18px;
}


/*==================================
PART-5
ABOUT SECTION
==================================*/

.about{
    background:#fff;
}

.about-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    border-radius:20px;
}

.about-content span{
    color:var(--gold);
    font-weight:600;
    letter-spacing:3px;
}

.about-content h2{
    font-size:50px;
    line-height:65px;
    color:var(--green);
    margin:20px 0;
    font-family:'Playfair Display',serif;
}

.about-content p{
    line-height:32px;
    margin-bottom:20px;
}

.about-features{
    margin-top:35px;
}

.feature{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.feature i{
    width:60px;
    height:60px;
    min-width:60px;
    background:var(--gold);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#000;
    font-size:20px;
}

.feature h4{
    color:var(--green);
    margin-bottom:5px;
}

.about-btn{
    margin-top:40px;
}


/*==================================
PART-6
ROOMS SECTION
==================================*/

.rooms{
    background:#f8f8f8;
}

.rooms-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.room-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.5s;
}

.room-card:hover{
    transform:translateY(-15px);
}

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

.room-image img{
    height:280px;
    object-fit:cover;
    transition:.8s;
}

.room-card:hover img{
    transform:scale(1.1);
}

.room-price{
    position:absolute;
    top:20px;
    right:20px;
    background:var(--gold);
    color:#000;
    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
}

.room-content{
    padding:30px;
}

.room-content h3{
    color:var(--green);
    font-size:30px;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.room-content p{
    line-height:28px;
    margin-bottom:20px;
}

.room-content ul{
    margin-bottom:25px;
}

.room-content ul li{
    padding:10px 0;
}

.room-content ul li i{
    color:var(--gold);
    margin-right:10px;
}


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

@media(max-width:991px){

.quick-info{
    grid-template-columns:repeat(3,1fr);
}

.about-row{
    grid-template-columns:1fr;
}

.rooms-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.quick-info{
    grid-template-columns:1fr;
}

.rooms-grid{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:36px;
    line-height:48px;
}

}
/*==================================
PART-7
AMENITIES + DINING
==================================*/

.amenities{
    background:#fff;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.amenity-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.5s;
}

.amenity-card:hover{
    transform:translateY(-15px);
}

.amenity-card i{
    font-size:50px;
    color:var(--gold);
    margin-bottom:20px;
}

.amenity-card h3{
    color:var(--green);
    margin-bottom:15px;
}

.amenity-card p{
    line-height:28px;
}

.dining{
    background:#f8f8f8;
}

.dining-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-top:60px;
}

.dining-image img{
    border-radius:20px;
}

.dining-content h3{
    color:var(--green);
    font-size:32px;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.dining-content ul{
    margin-bottom:30px;
}

.dining-content ul li{
    margin-bottom:15px;
}

.dining-content ul li i{
    color:var(--gold);
    margin-right:10px;
}


/*==================================
PART-8
GALLERY + ATTRACTIONS
==================================*/

.gallery{
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.gallery-item img{
    height:320px;
    object-fit:cover;
    transition:.8s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    padding:25px;
    background:rgba(2,44,44,.85);
    transition:.5s;
}

.gallery-item:hover .gallery-overlay{
    bottom:0;
}

.gallery-overlay h3{
    color:#fff;
}

.attractions{
    background:#f8f8f8;
}

.attraction-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.attraction-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.5s;
}

.attraction-card:hover{
    transform:translateY(-15px);
}

.attraction-card img{
    height:280px;
    object-fit:cover;
}

.attraction-content{
    padding:30px;
}

.attraction-content h3{
    color:var(--green);
    font-size:28px;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.attraction-content p{
    line-height:28px;
    margin-bottom:25px;
}


/*==================================
PART-9
TESTIMONIAL + FAQ + BLOG
==================================*/

.testimonials{
    background:#fff;
}

.testimonial-slider{
    max-width:900px;
    margin:auto;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stars{
    margin-bottom:20px;
}

.stars i{
    color:var(--gold);
}

.guest-info{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:30px;
}

.guest-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.faq{
    background:#f8f8f8;
}

.faq-box{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-question{
    padding:25px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-answer{
    padding:0 30px 25px;
    display:none;
}

.faq-box.active .faq-answer{
    display:block;
}

.blog{
    background:#fff;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.5s;
}

.blog-card:hover{
    transform:translateY(-15px);
}

.blog-image img{
    height:260px;
    object-fit:cover;
}

.blog-content{
    padding:30px;
}

.blog-content h3{
    color:var(--green);
    margin:15px 0;
    font-size:28px;
    font-family:'Playfair Display',serif;
}


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

@media(max-width:991px){

.amenities-grid,
.gallery-grid,
.attraction-grid,
.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

.dining-row{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.amenities-grid,
.gallery-grid,
.attraction-grid,
.blog-grid{
    grid-template-columns:1fr;
}

.testimonial-card{
    padding:30px;
}

}
/*==================================
PART-10
BOOKING + CONTACT + FOOTER + FLOATING BUTTONS
==================================*/

/* BOOKING */

.booking{
    background:url(images/booking-bg.jpg) center/cover no-repeat;
    position:relative;
}

.booking-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(2,44,44,.85);
}

.booking .container{
    position:relative;
    z-index:2;
}

.booking .section-title h2,
.booking .section-title p{
    color:#fff;
}

.booking-form{
    background:#fff;
    padding:50px;
    border-radius:20px;
    margin-top:60px;
    box-shadow:var(--shadow);
}

.booking-form form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:10px;
    font-weight:600;
    color:var(--green);
}

.input-box input,
.input-box select{
    height:60px;
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.full-width{
    grid-column:1/-1;
}


/* CONTACT */

.contact{
    background:#fff;
}

.contact-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    margin-top:60px;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.contact-box i{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:var(--gold);
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact-box h3{
    color:var(--green);
    margin-bottom:10px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    margin-bottom:20px;
}


/* MAP */

.map iframe{
    display:block;
}


/* FOOTER */

footer{
    background:var(--green);
    padding-top:100px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-logo{
    width:140px;
    margin-bottom:20px;
}

.footer-col h3{
    color:var(--gold);
    margin-bottom:25px;
}

.footer-col p,
.footer-col a{
    color:#ddd;
    line-height:30px;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col a:hover{
    color:var(--gold);
}

.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-right:10px;
    transition:.4s;
}

.social-icons a:hover{
    background:var(--gold);
    color:#000;
}

.copyright{
    margin-top:60px;
    padding:25px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    color:#ddd;
}


/* FLOATING BUTTONS */

.whatsapp{
    position:fixed;
    left:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    z-index:999;
}

.call-btn{
    position:fixed;
    right:20px;
    bottom:100px;
    width:65px;
    height:65px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    z-index:999;
}

#topBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--gold);
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:999;
}


/* PROGRESS BAR */

.progress-container{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:5px;
    z-index:99999;
}

#progressBar{
    width:0%;
    height:100%;
    background:var(--gold);
}


/* PRELOADER */

.preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.loader{
    width:60px;
    height:60px;
    border:5px solid #ddd;
    border-top:5px solid var(--gold);
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}


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

@media(max-width:991px){

.contact-row,
.footer-grid,
.booking-form form{
    grid-template-columns:1fr;
}

.footer-grid{
    gap:50px;
}

}

@media(max-width:768px){

.booking-form{
    padding:30px;
}

.whatsapp,
.call-btn,
#topBtn{
    width:55px;
    height:55px;
    font-size:24px;
}

.footer-logo{
    width:110px;
}

}
.logo h1{
    font-family:'Playfair Display',serif;
    font-size:30px;
    color:#fff;
    letter-spacing:5px;
}

.logo h1 span{
    color:#d4af37;
}

.logo h2{
    font-family:'Playfair Display',serif;
    font-size:24px;
    color:#fff;
    letter-spacing:8px;
    margin-top:-5px;
}

.logo p{
    color:#d4af37;
    font-size:11px;
    letter-spacing:4px;
    margin-top:5px;
}
.hero{
    position:relative;
    width:100%;
    height:calc(100vh - 140px); /* header की height के अनुसार */
    overflow:hidden;
    background:#000;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:contain; /* पूरी image दिखेगी */
    object-position:center;
    background:#000;
}