*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
}

/* ================= TOPBAR ================= */

.topbar{
    background:#000;
    color:#fff;
    padding:10px 0;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
}

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

.top-contact i{
    color:#f5b400;
    margin-right:6px;
}

.social-icons{
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.social-icons a{
    width:35px;
    height:35px;
    background:#f5b400;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.social-icons a:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* ================= HEADER ================= */

.navbar{
    background:#111;
    position:fixed;
    top:55px;
    left:0;
    width:100%;
    z-index:9999;
    padding:15px 0;
}

.navbar-brand{
    color:#fff !important;
    font-size:32px;
    font-weight:700;
}

.navbar-brand span{
    color:#f5b400;
}

.navbar-nav .nav-link{
    color:#fff;
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
}

.navbar-nav .nav-link:hover{
    color:#f5b400;
}

.book-btn{
    background:#f5b400;
    color:#000;
    padding:12px 28px;
    border-radius:6px;
    font-weight:600;
    display:inline-block;
}

.book-btn:hover{
    background:#fff;
    color:#000;
}

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

.hero-section{
    margin-top:125px;
    min-height:100vh;
    display:flex;
    align-items:center;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    /* topbar mobile */
    .topbar{
        position:relative;
        padding:12px 0;
    }

    .top-contact{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .social-icons{
        justify-content:flex-start;
        margin-top:10px;
    }

    /* navbar mobile */
    .navbar{
        top:0;
        position:relative;
        padding:12px 0;
    }

    .navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .navbar-brand{
        font-size:22px;
        width:80%;
        line-height:1.3;
    }

    .navbar-toggler{
        border:none !important;
        box-shadow:none !important;
        padding:0;
    }

    .navbar-toggler i{
        color:#fff;
        font-size:28px;
    }

    .navbar-collapse{
        background:#111;
        margin-top:20px;
        padding:20px;
        border-radius:10px;
    }

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

    .navbar-nav .nav-link{
        padding:15px 0;
        border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .book-btn{
        width:100%;
        margin-top:15px;
        text-align:center;
    }

    /* hero mobile */
    .hero-section{
    margin-top:0 !important;
    padding:0;
    min-height:auto;
}

}

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

        .hero-section{
            position:relative;
            width:100%;
            height:90vh;
            background:url('../images/slider/slider1.jpg') center center/cover no-repeat;
            display:flex;
            align-items:center;
              margin-top:125px;
        }

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

        .hero-content{
            position:relative;
            z-index:2;
            color:#fff;
            text-align:center;
        }

        .hero-content h5{
            letter-spacing:4px;
            color:#f5b400;
            margin-bottom:20px;
        }

        .hero-content h1{
            font-size:70px;
            font-weight:700;
            line-height:1.2;
        }

        .hero-content p{
            margin-top:20px;
            font-size:18px;
            color:#ddd;
        }

        .hero-buttons{
            margin-top:35px;
        }

        .hero-buttons a{
            margin:10px;
        }

        .btn-yellow{
            background:#f5b400;
            color:#000;
            padding:15px 35px;
            font-weight:600;
            border-radius:5px;
        }

        .btn-outline-light{
            padding:15px 35px;
        }

        /* ================= ABOUT ================= */

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

        .section-title{
            margin-bottom:50px;
        }

        .section-title h2{
            font-size:42px;
            font-weight:700;
        }

        .section-title span{
            color:#f5b400;
        }

        .about-img img{
            width:100%;
            border-radius:10px;
        }

        .about-content p{
            color:#666;
            line-height:1.9;
        }

        /* ================= ROOMS ================= */

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

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

        .room-card img{
            width:100%;
            height:250px;
            object-fit:cover;
        }

        .room-content{
            padding:25px;
        }

        .room-content h4{
            font-size:24px;
            font-weight:600;
        }

        .price{
            color:#f5b400;
            font-size:20px;
            font-weight:700;
            margin:15px 0;
        }

        /* ================= SERVICES ================= */

        .service-box{
            background:#111;
            color:#fff;
            padding:40px 25px;
            border-radius:10px;
            text-align:center;
            transition:0.3s;
            height:100%;
        }

        .service-box:hover{
            background:#f5b400;
            color:#000;
            transform:translateY(-10px);
        }

        .service-box i{
            font-size:45px;
            margin-bottom:20px;
        }

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

        .gallery img{
            width:100%;
            height:250px;
            object-fit:cover;
            border-radius:10px;
        }

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

        footer{
            background:#000;
            color:#fff;
            padding-top:70px;
        }

        .footer-logo{
            font-size:35px;
            font-weight:700;
            color:#fff;
        }

        .footer-logo span{
            color:#f5b400;
        }

        .footer-links a{
            display:block;
            color:#ccc;
            margin-bottom:10px;
            transition:0.3s;
        }

        .footer-links a:hover{
            color:#f5b400;
            padding-left:5px;
        }

        .footer-contact p{
            color:#ccc;
        }

        .copyright{
            border-top:1px solid #222;
            padding:20px 0;
            margin-top:50px;
            text-align:center;
            color:#aaa;
        }

        /* ================= MOBILE ================= */

        @media(max-width:991px){

            .hero-content h1{
                font-size:42px;
            }

            .top-contact{
                flex-direction:column;
                gap:10px;
                align-items:flex-start;
            }

            .social-icons{
                justify-content:start;
                margin-top:15px;
            }

        }



/* ================= About-INNER BANNER ================= */

.inner-banner{
    position:relative;
    height:350px;
    background:url('../images/about-banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:125px;
}

@media(max-width:991px){

    .inner-banner{
        margin-top:0;
    }

}

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

.banner-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.banner-content p{
    font-size:18px;
    color:#ddd;
}

/* ================= ABOUT PAGE ================= */

.about-section{
    background:#f8f8f8;
    position:relative;
}

.subtitle{
    color:#111;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.main-title{
    font-size:30px;
    font-weight:700;
    line-height:1.4;
    color:#111;
    max-width:1100px;
    margin:auto;
}

.theme-btn{
    background:#f5b400;
    color:#000;
    padding:14px 35px;
    border-radius:5px;
    display:inline-block;
    font-weight:600;
    transition:0.3s;
}

.theme-btn:hover{
    background:#000;
    color:#fff;
}

.about-box{
    background:#fff;
    padding:40px;
    border-radius:10px;
}

.about-img img{
    width:100%;
    border-radius:10px;
}

.about-content{
    padding:20px;
}

.small-title{
    color:#999;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.about-content h3{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}

.about-content p{
    color:#666;
    line-height:2;
    margin-bottom:20px;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .inner-banner{
        height:250px;
    }

    .banner-content h1{
        font-size:40px;
    }

    .main-title{
        font-size:34px;
    }

    .about-box{
        padding:20px;
    }

    .about-content{
        padding:20px 0 0;
    }

    .about-content h3{
        font-size:34px;
    }

}



/* ================= ROOMS PAGE ================= */

.rooms-page{
    background:#f7f7f7;
}

.room-list-box{
    background:#fff;
    padding:25px;
    margin-bottom:35px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.room-img{
    overflow:hidden;
    border-radius:10px;
}

.room-img img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s;
}

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

.room-icons{
    margin-bottom:20px;
}

.room-icons i{
    margin-right:12px;
    color:#999;
}

.room-details h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
}

.room-details p{
    color:#666;
    line-height:2;
}

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

.room-price h2{
    font-size:42px;
    font-weight:700;
    color:#111;
}

.room-price span{
    color:#999;
    font-weight:500;
}

/* ================= BOOKING INFO ================= */

.booking-info{
    background:#fff;
}

.booking-content h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.booking-content p{
    color:#666;
    margin-bottom:30px;
}

.booking-content ul{
    list-style:none;
    padding:0;
}

.booking-content ul li{
    margin-bottom:15px;
    color:#555;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .room-list-box{
        padding:20px;
    }

    .room-details{
        margin-top:25px;
    }

    .room-details h3{
        font-size:26px;
    }

    .room-price{
        margin-top:25px;
        text-align:left;
    }

    .room-price h2{
        font-size:32px;
    }

    .booking-content h2{
        font-size:34px;
    }

}




/* ================= PREMIUM GALLERY PAGE ================= */

.gallery-page{
    background:#f5f5f5;
    padding:100px 0;
}

/* Masonry Grid */

.gallery-grid{
    column-count:2;
    column-gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    margin-bottom:25px;
    break-inside:avoid;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    background:#000;
}

/* Different Heights */

.gallery-item.large img{
    height:650px;
}

.gallery-item.medium img{
    height:450px;
}

.gallery-item.small img{
    height:320px;
}

/* Image */

.gallery-item img{
    width:100%;
    object-fit:cover;
    transition:0.7s;
    border-radius:18px;
}

/* Overlay */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1));
    opacity:0;
    transition:0.5s;
    display:flex;
    align-items:end;
    padding:30px;
}

.gallery-content{
    transform:translateY(30px);
    transition:0.5s;
}

.gallery-content h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.gallery-content p{
    color:#ddd;
    margin:0;
    font-size:15px;
}

/* Hover Effects */

.gallery-item:hover img{
    transform:scale(1.12);
    opacity:0.8;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-content{
    transform:translateY(0);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .gallery-grid{
        column-count:1;
    }

    .gallery-item.large img{
        height:400px;
    }

    .gallery-item.medium img{
        height:320px;
    }

    .gallery-item.small img{
        height:260px;
    }

}


/* ================= CONTACT PAGE ================= */

.contact-page{
    background:#f5f5f5;
    position:relative;
}

/* INFO BOX */

.contact-info-box{
    background:#fff;
    padding:45px 35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

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

.contact-info-box .icon{
    width:80px;
    height:80px;
    background:#f5b400;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
    font-size:30px;
}

.contact-info-box h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-info-box p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* FORM BOX */

.contact-form-box{
    background:#fff;
    padding:60px;
    border-radius:20px;
    margin-top:70px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.contact-form-box .section-title span{
    color:#f5b400;
    font-weight:600;
    letter-spacing:2px;
}

.contact-form-box .section-title h2{
    font-size:52px;
    font-weight:700;
    margin-top:15px;
}

/* FORM */

.form-group{
    position:relative;
}

.form-control{
    height:65px;
    border:none;
    background:#f7f7f7;
    border-radius:12px;
    padding:15px 25px;
    font-size:16px;
    box-shadow:none !important;
}

textarea.form-control{
    height:auto;
    padding-top:20px;
    resize:none;
}

.form-control:focus{
    background:#fff;
    border:2px solid #f5b400;
}

/* MAP */

.map-section iframe{
    filter:grayscale(100%);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .contact-info-box{
        padding:35px 25px;
    }

    .contact-info-box h4{
        font-size:24px;
    }

    .contact-form-box{
        padding:25px;
        margin-top:40px;
    }

    .contact-form-box .section-title h2{
        font-size:36px;
    }

}


/* ================= contact page-map ================= */

.map-section iframe{
    filter:grayscale(100%);
    border-radius:20px;
}




/* ================= BOOKING PAGE ================= */

.booking-page{
    background:#f5f5f5;
}

.booking-form-box{
    background:#fff;
    padding:60px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.booking-form-box .section-title span{
    color:#f5b400;
    font-weight:600;
    letter-spacing:2px;
}

.booking-form-box .section-title h2{
    font-size:52px;
    font-weight:700;
    margin-top:15px;
}

/* FORM */

.booking-form-box .form-control{
    height:60px;
    border:none;
    background:#f7f7f7;
    border-radius:10px;
    padding:15px 20px;
    box-shadow:none;
}

.booking-form-box textarea.form-control{
    height:auto;
    resize:none;
}

.booking-form-box .form-control:focus{
    border:2px solid #f5b400;
    background:#fff;
}

/* MOBILE */

@media(max-width:991px){

    .booking-form-box{
        padding:25px;
    }

    .booking-form-box .section-title h2{
        font-size:34px;
    }

}



/* FLOAT */
.whatsapp,
.call{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#fff;
text-decoration:none;
z-index:9999;
}

.whatsapp{
bottom:20px;
background:#25D366;
}

.call{
bottom:90px;
background:#d4af37;
color:#000;
}
