header {

    .top-header {
        background-color: #ff0082;
        color: #fff;
        padding: 8px 0px;

        .main-top-header {
            display: flex;
            justify-content: space-between;
        }

        .top-details {
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        a {
            color: #fff;
        }

        a i {
            margin-right: 10px;
        }

        .top-address {
            padding-right: 20px;
            border-right: 1px solid #ccc;
        }

        .top-social {
            display: flex;
            gap: 10px;
            font-size: 18px;
        }

        .top-call {
            padding-left: 20px;
        }
    }

    .menu-icon {
        display: none;
    }
    .bottom-header {
        background-color: #5c715e;
        padding: 10px 0px;
        border-bottom: 4px solid #c9a463;


        .main-bottom-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            img {
                width: 180px;
            }
        }

        .primary-menu {
            display: flex;
            align-items: center;
            gap: 20px;

            nav {
                ul {
                    display: flex;
                    gap: 10px;
                }

                ul a {
                    padding: 10px 15px;
                    color: #fefdea;
                    font-size: 20px;
                    font-weight: 500;
                    position: relative;
                }

                ul a::before {
                    opacity: 0;
                    visibility: hidden;
                    content: "";
                    position: absolute;
                    left: 19px;
                    right: -8px;
                    height: 76px;
                    bottom: 0;
                    -moz-transition: all .2s;
                    -o-transition: all .2s;
                    -webkit-transition: all .2s;
                    transition: all 1.2s;
                    background: url(../uploads/icon/mascara.png);
                    background-repeat: no-repeat;
                    top: 34px;
                }

                ul a:hover:before{
                    opacity: 1;
                    visibility: visible;

                }

                .active-menu:before{
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
    position: relative;

    .item {
        position: relative;
        padding: 280px 0px 280px;

        .banner-image {
            display: flex;

            img {
                width: 100%;
            }
        }

        .banner-content {
            color: #fff;
            text-align: center;

            .banner-tagline {
                padding: 8px 30px;
                display: inline-block;
                font-size: 16px;
                color: #fff;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 3.2px;
                text-transform: uppercase;
                background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.2);
                margin-bottom: 19px;
            }

            .banner-title {
                font-family: lust-script;
                letter-spacing: 5px;
                font-size: 60px;
                font-weight: 400;
                text-shadow: 3px 3px 14px #000;
            }

            .primary-btn {
                margin-top: 20px;
            }
        }
    }

    .slider-1 {
        background: url(../uploads/banner/slider1.jpg);
        background-position: center;
        background-size: cover;
    }

    .slider-2 {
        background: url(../uploads/banner/slider2.jpg);
        background-position: right;
        background-size: cover;
    }

    .slider-3 {
        background: url(../uploads/banner/slider3.jpg);
        background-position: right;
        background-size: cover;
    }


    .owl-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        display: flex;
        justify-content: space-between;

        button {
            span {
                display: inline-block;
                background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.2);
                font-size: 36px;
                padding: 10px;
                color: #fff;
            }
        }
    }
}


/* ========= hotel feature =========== */

.hotel-features {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../uploads/other/feature-banner.jpg);
    background-position: center;
    background-size: cover;
    padding: 50px 0px;

    .main-hotel-features {
        display: flex;
        gap: 30px;

        .item {
            display: flex;
            width: 30%;
            align-items: center;
            gap: 20px;
            flex-direction: column;
        }
    }
    .icon-box{
        img{
            width: 80px;
        }
    }
}

/* ========= about us ======= */

.about-us{
    background: url(../uploads/other/about-background.png);
    background-position: right;
    background-color: #fff3f5;
.main-about{
    display: flex;
    gap: 40px;
}
.about-img{
    width: 50%;
    img{
        width: auto;
        border-radius: 20px;
        box-shadow: 0px 0px 12px #ccc;
    }
}
.about-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: self-start;
}
}


/* ========== special offers ====== */

.special-offers{
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../uploads/other/special-background.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;

    .main-special{
        margin-top: 30px;
    }
    .item{
        position: relative;
        overflow: hidden;
    }
    .item-content{
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px 10px;
        background-color: #0000009d;
    }
    .img-box{
        display: flex;
        overflow: hidden;
        img{
            transition: all .2s linear;
            transform: scale(1.1);
        }
    }

    .item:hover img{
        transform: scale(1);
    }
    a{
        color: #fff;
        font-size: 20px;
    }
    a:hover{
        text-decoration: underline;
    }
}

.services{
    .service-heading{
        width: 60%;
        margin: 0 auto;
        text-align: center;
    }

    .services-items{
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 30px;
        align-items: stretch;
    }
    .services-btn {
        position: relative;
        left: 0;
        bottom: 50px;
        text-align: center;
        display: block;
        width: 100%;
        background: url(../uploads/icon/gold-bg.webp) center / 100% 60% no-repeat;
        min-height: 65px;
        margin-top: 0;
        padding: 36px 0;
        font-size: 28px;
        color: #000;
    }

    .item{
        border-radius: 100%;
        overflow: hidden;
    }
}

/* ========= testimonial ========== */

.testimonial{
    background: url(../uploads/other/testimonial-background.jpg);
    background-position: center;
    background-size: cover;
    h3{
        text-align: center;
    }

    .testimonial-items{
        margin-top: 40px;
    }
    .item{
        background-color: #fff;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        img{
            width: 120px;
        }
        p{
            font-style: italic;
        }
        .author{
            font-size: 22px;
            font-weight: 600;
        }
    }
}

.gallery{
    padding: 15px;
}

/* ======= footer ====== */

footer{

    .top-footer{
        padding: 50px 0px;
        background-color: #0f0f0f;
        .main-top-footer{
            color: #fff;
            display: flex;
            gap: 30px;
        }
        .col{
            flex: 1;
            li{
                font-size: 18px;
            }
        }
    }
    a{
        color: #fff;
    }
    ul{
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;

    }

    .contact-infor{
        li a{
            display: flex;
            align-items: center;
            gap: 15px;
        }
    }
    .main-bottom-footer{
        text-align: center;
    }
    .bottom-footer{
        background-color: #0f0f0f;
        color: #fff;
        padding: 10px 0px;
        border-top: 1px solid #ccc;
        font-size: 14px;

        img{
            width: auto;
            margin-top: 8px;
        }
    }
}
/* ======== blog page ====== */

#blog-page {
    .inner-page {
        background: linear-gradient(rgb(0 0 0 / .5), rgb(0 0 0 / .5)), url(../uploads/banner/about-inner-banner.webp)
    }

    .main-blog {
        background: #eaf0f5
    }

    .blogs {
        display: flex;
        gap: 40px
    }

    .blog-date {
        font-size: 16px
    }

    .blog-grid {
        width: 70%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
        grid-gap: 20px;
        align-items: stretch;

        .items {
            padding: 20px;
            border: 1px solid #ccc;
            background: #fff;
            border-radius: 15px;
            transition: all .2s linear;

            .item-blog-dec {
                margin-top: 15px;
                display: flex;
                flex-direction: column;
                gap: 10px
            }

            a {
                color: #000
            }

            .blog-img {
                overflow: hidden;
                border-radius: 10px;
                display: flex;

                img {
                    transition: all .2s linear
                }
            }
        }

        .items:hover img {
            transform: scale(1.1)
        }

        .items:hover {
            box-shadow: 0 0 20px 0 #0d263c2e
        }
    }

    .blog-side-bar {
        width: 30%
    }
}

.blog-side-bar {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ccc;

    .recent-posts {
        padding-top: 15px;
        margin-top: 20px;
        border-top: 2px solid #ff0082;

        ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px
        }

        ul li {
            display: flex;
            gap: 20px
        }

        .entry-image {
            width: 250px;
            display: flex;
            border-radius: 5px;

            a {
                display: flex
            }

            img {
                border-radius: 5px;
                object-fit: cover
            }
        }

        .entry-title {
            margin-top: 8px;
            p {
                line-height: 18px;
                a {
                    color: #000;
                    font-size: 16px
                }
            }
        }

        h6 {
            font-size: 16px
        }
    }
}

#blog-detail-page {
    .inner-page {
        background: linear-gradient(rgb(0 0 0 / .5), rgb(0 0 0 / .5)), url(../uploads/banner/about-inner-banner.webp)
    }

    .detail-page {
        background: #eaf0f5
    }

    .main-detail-page {
        display: flex;
        gap: 20px
    }

    .single-blog-content {
        width: 70%;
        padding: 20px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px
    }

    .blog-side-bar {
        width: 30%
    }
}

/* ========= gallery-page ======= */

#gallery-page{
    .main-gallery{
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }
    .gallery-img {
        overflow: hidden;
        display: flex;
        border-radius: 10px;
        img {
            width: 100%;
            transition: all .2s ease-in-out;
        }
    }
    .gallery-img:hover img {
        transform: scale(1.1);
    }

    .gallery-btn{
        text-align: center;
        margin-top: 20px;
    }
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f7f7f7;
    padding: 50px 35px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px #8989894f;

    .box{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .group-box{
        display: flex;
        gap: 20px;
        .box{
            width: 50%;
        }
    }
    input, textarea, select{
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
        resize: none;
    }
    input[type="submit"]{
        background: #ff0082;
        width: 170px;
        font-size: 18px;
        color: #fff;
        padding: 13px 0px;
        cursor: pointer;
    }
}

#contact-page{
    background: url(../uploads/other/about-background.png);
    background-color: #fff3f5;
    .main-contact{
        display: flex;
        gap: 30px;
    }
    .contact-details{
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        .item{
            a{
                display: flex;
                gap: 15px;
                align-items: center;
                font-size: 18px;
                color: #1c1c1c;
            }
            .item-icon{
                display: flex;
                align-items: center;
                justify-content: center;
                width: 50px;
                height: 50px;
                background: #5c715e;
            }
            .item-icon i{
           
                color: #fff;
                font-size: 22px;
            }
        }
        .business-hours{
            margin-top: 30px;
            ul{
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            ul li{
                font-size: 18px;
              }
        }
    }
    .contact-form{
        width: 50%;
    }
    .contact-map{
        display: flex;
        iframe{
            width: 100%;
            height: 350px;
        }
    }
}

#career-page{
    .main-career{
        display: flex;
        gap: 40px;
        align-items: center;
    }

    h2{
        text-align: center;
    }
    .career-img{
        width: 50%;
        img{
            border-radius: 15px;
            box-shadow: 0px 0px 12px #ccc;
        }
    }
    .career-form{
        width: 50%;

    }
    .main-career{
        margin-top: 40px;
    }
}

.services-page{
    .main-service-section{
        display: flex;
        gap: 40px;
    }

    .service-side{
        width: 30%;
    }
    .service-side-content{
        width: 70%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: self-start;

        ul{
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            padding: 20px;
            background-color: #5c715e;
            color: #fff;
            border-radius: 20px;
            gap: 15px;

            align-items: stretch;

            li{
                font-size: 18px;
                padding: 10px 0px;
                border-top: 1px solid #ccc;
            }
        }
    }

    .service-box{
        border: 1px solid #ccc;
    }
   .box-title {
        font-size: 24px;
        background-color: #fbf7f4;
        border: 1px solid rgba(196, 198, 200, .2);
        border-left: 3px solid #5c715e;
        padding: 23.5px 20px 23.5px 25px;
        margin: 0;
    }
    .service-box a {
        border: 1px solid rgba(196, 198, 200, .3);
        border-top: none;
        padding: 20.5px 25px;
        font-weight: 500;
        font-size: 18px;
        color: #6f6c6c;
        display: block;
        transition: all .2s linear;
    }
    .service-box a:hover{
        background: #5c715e;
        color: #fff;
    }
}