/* ========= header ========== */
header {

    .top-header {
        background-color: #000;
        color: #fff;
        padding: 8px 0px;

        .main-top-header {
            display: flex;
            justify-content: space-between;
        }

        .top-details {
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        a {
            color: #c9c9c9;
        }

        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;
        }
    }

    
    .bottom-header {
        background-color: var(--primary-color);
.menu-icon{
    display: none;
}
        .main-bottom-header {
            display: flex;
            justify-content: space-between;
        }

        .logo {
            img {
                width: 100%;
                max-width: 86px;
            }
        }

        .primary-menu {
            display: flex;
            align-items: center;
            gap: 20px;

            nav {
                ul {
                    display: flex;
                    gap: 10px;
                }

                ul a {
                    padding: 10px 15px;
                    color: #ddd;
                    font-size: 18px;
                }

                /* .active-menu {
                    color: var(--secondary-color);
                    border-bottom: 2px solid var(--secondary-color);
                } */
            }
        }
    }

}

/* ====== banner ========= */

.hero-section {
    position: relative;

    .slider-imgs {

        .item {
            img {
                width: 100%;
            }
        }
    }

    .main-hero-section {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1;
    }

    .banner-content {
        width: 100%;
        max-width: 50%;
        padding: 25px;
        background: rgb(44 57 99 / 62%);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        display: flex;
        /* align-items: center; */
        flex-direction: column;
        gap: 20px;
        color: #fff;
    }
}

/* ========= hotel feature =========== */

.hotel-features {
    background: url(../upload/backgrounds/bg-07.webp);
    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;
        }
    }
}

/* ======== about us ========= */

.about-us {
    background: url(../upload/backgrounds/bg-01.webp);
    background-position: center;
    background-size: cover;

    .main-about-us {
        display: flex;
        gap: 50px;
        align-items: center;
        padding-top: 40px;

        .about-img {
            width: 50%;
        }

        .about-content {
            width: 50%;
        }

        p {
            padding-top: 20px;
        }

        .primary-btn {
            margin-top: 25px;
        }

        .box1 {
            display: flex;
            gap: 10px;
        }

        .about-img {
            img {
                box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
            }

        }
    }

    .img1 {
        margin: 15px -50px -20px 0px;
        transform: rotateZ(-15deg);

    }

    .img2 {
        margin: 0px 30px 0px 0px;
        transform: rotateZ(30deg);
        /* transform-rotateZ: 30deg; */
    }

    .box2 {
        figure {
            margin: -10px 30px 0px 80px;
            transform: rotateZ(7deg);

            /* --e-transform-rotateZ: 7deg; */
        }
    }
}

/* ===== rooms ==== */
.rooms {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/backgrounds/room-background.webp);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;

    h3 {
        text-align: center;
        color: #fff;
    }

    .main-rooms {
        margin-top: 40px;
    }

    .primary-btn {
        text-align: center;
        margin-top: 30px;
    }

    .item {
        background-color: #fff;

        .item-content {
            padding: 20px;

            img {
                width: 100px;
            }

            .room-feature {
                display: flex;
                background: #e9e9e9;
                justify-content: space-between;
                padding: 8px 15px;
            }

            p {
                font-size: 14px;
                padding: 15px 0px;
            }

        }

    }

}


/* ====== ameneties ========= */

.ameneties {
    background: url(../upload/backgrounds/bg-02.webp);
    /* background-position: center; */
    background-size: contain;
    background-repeat: no-repeat;

    .main-ameneties {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .ameneties-content {
        width: 40%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: start;
    }

    .ameneties-items {
        width: 60%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
        margin-top: 40px;

        .item {
            background-color: #fff;
            padding: 20px;
            box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .1);

            img {
                width: 80px;
            }

            p {
                font-size: 16px;
            }
        }
    }
}

/* ========= cta ========= */

.cta {
    background: url(../upload/backgrounds/bg-03.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    .tagline{
        margin-top: 0px;
        color: #fff;
    }
    .main-cta {
        display: flex;
        gap: 40px;
        /* align-items: center; */
        justify-content: space-between;
        color: #fff
    }

    .cta-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 120px 0px;

        .cta-tagline {
            display: flex;
            gap: 20px;

            span {
                display: block;
            }

            img {
                width: 100%;
            }
        }

    }

    .cta-shape-col {
        width: 33%;

        .cta-shape {
            background: url(../upload/backgrounds/bg-shape-01.webp);
            padding: 20px 20px 40px;
            background-repeat: round;
        }

        .cta-webp-shape {
            background: url(../upload/backgrounds/bg-shape-02.webp);
            /* background-position: center;
        background-size: cover; */
            background-repeat: no-repeat;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        ul {
            img {
                width: 40px;
            }

            li {
                display: flex;
                align-items: center;
                gap: 15px;
            }
        }

    }
}

/* ========== area-attraction ========== */

.area-attraction {
    background: #faf5ef;

    .main-area-attraction-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .area-attraction-heading {
        width: 50%;

        img {
            width: 30px;
            display: block;
        }
    }

    .area-attraction-content {
        width: 50%;
    }

    .main-attraction {
        margin-top: 50px;

        .item {
            overflow: hidden;
            background-color: #fff;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0px 0px 8px 0px #cccccc8c;
            transition: all .2s linear;

            .item-img {
                overflow: hidden;

                img {
                    transform: scale(1.1);
                    transition: all .3s linear;
                }
            }

            .item-content {
                padding: 20px;

                .sub-title {
                    color: #B89C5F;
                }

                .title {
                    font-size: 18px;
                    font-family: marcellus;
                    font-weight: 600;
                    line-height: 1.2;
                    margin-top: 10px;

                }
            }
        }

        .item:hover img {
            transform: scale(1);
        }
        .item:hover{
background-color: #d5c5a2;
        }
        .item:hover .sub-title{
            color: #fff;
                    }
    }
}

/* ========== testimonial ====== */

.testimonial{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/backgrounds/room-background.webp);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;

    .testimonial-content{
        width: 50%;
        background-color: #fff;
        padding: 40px 30px;
        text-align: end;
h4{
    position: relative;
    display: inline-block;
}
h4::after{
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    top: 50%;
    left: -80px;
    background-color: var(--secondary-color);
}
        img{
            width: 170px;
        }
        .author-name{
            font-size: 22px;
            font-weight: 600;
            color: #444444;
            margin-top: 10px;
        }
        .testimonial-items{
            margin-top: 30px;
        }
    }
}

/* =========== footer ======= */

footer{
    a{
        color: #fff;
    }
    .top-footer{
        background-color: #242424;
        color: #fff;
        padding: 40px 0px;
        .social-media{
            font-size: 20px;
            display: flex;
            gap: 15px;
            margin-top: 15px;
            a{
                display: block;
            }
        }
        .main-top-footer{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            .box{
             width: 30%;
            } 

            ul{
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            p{
                margin-top: 20px;
font-size: 16px;
            }

            span{
                display: inline-block;
                margin-right: 10px;
            }
        }
    }
    .bottom-header{
        background: var(--primary-color);
        text-align: center;
        color: #fff;
        padding: 10px 0px;
        font-size: 14px;
        img{
            margin-top: 10px;
        }
    }
}

/* ===== about ======== */

.about-page{

    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/backgrounds/about-banner.webp);
        background-position: center;
        background-size: cover;
    }
    .about{
        background: url(../upload/backgrounds/bg-01.webp);
        background-position: center;
        background-size: cover;
    }

    .main-about{
        display: flex;
        gap: 40px;
    }
    .about-img{
        width: 40%;
        img{
            border-radius: 10px;
        }
    }
    .about-content{
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* ======== gallery ======== */

.gallery-page{
        .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/backgrounds/about-banner.webp);
        background-position: center;
        background-size: cover;
    }
    .gallery{
        background: url(../upload/backgrounds/bg-01.webp);
        background-position: center;
        background-size: cover;
    }

    .gallery-img{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 15px;
        align-items: stretch;

        figure{
            display: flex;
        }
    }
}

/* ==== contact ==== */

.contact-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/backgrounds/about-banner.webp);
        background-position: center;
        background-size: cover;
    }

    .contact{
        background: url(../upload/backgrounds/bg-01.webp);
        background-position: center;
        background-size: cover;
    }
    .main-contact{
        display: flex;
        align-items: center;
        gap: 40px;

        .tagline{
            margin-top: 10px;
        }
    }
    .contact-form{
        width: 50%;
        img{
            width: 30px;
        }
    }
    .contact-details{
        width: 50%;

        .main-details{
            width: 60%;
            background-color: #fff;
           
            .heading{
                background-color: var(--primary-color);
                padding: 15px;
                color: #fff;
            }
            .box{
                padding: 25px 15px;
                border-bottom: 1px solid #ccc;
            }
            span{
                display: inline-block;
            }
            .icon-text{
                font-size: 24px;
                color:#B89C5F;
                margin-right: 10px;
            }
            .text{
                color: #444444;
            }
            h5{
                text-wrap: wrap;
            }
        }
    }
    .map{
        display: flex;
    }
    iframe{
        height: 350px;
    }
    .icon{
        margin-bottom: 10px;
    }
}

form{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    input{
        width: 100%;
        padding: 10px;
        border: 1px solid var(--secondary-color);
        border-radius: 4px;
    }
    .box{
        display: flex;
        gap: 20px;
    }
    textarea{
        width: 100%;
        padding: 10px;
        border: 1px solid var(--secondary-color);
        border-radius: 4px;
    }
    .submit{
        width: 170px;
        background-color: var(--secondary-color);
        font-size: 16px;
        cursor: pointer;
    }
    select{
        width: 100%;
        padding: 10px;
        border: 1px solid var(--secondary-color);
        border-radius: 4px;
    }
    label{
        display: block;
        margin-bottom: 10px;
    }
}

/* ======== rooms ====== */

.room-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/backgrounds/about-banner.webp);
        background-position: center;
        background-size: cover;
    }

    .room-items{

        .item{
            padding: 80px 0px;
            .container{
                display: flex;
                gap: 40px;
            }
            .item-img{
                width: 50%;
                img{
                    border-radius: 10px;
                }
            }
            .item-content{
                width: 50%;

                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            ul{
                display: flex;
                /* flex-direction: column; */
                gap: 22px;
                flex-wrap: wrap;
            }
        }

        .item:nth-child(even){
            background-color: #f3ead7;
            .container{
                flex-direction: row-reverse;
            }
        }
    }
}


/* ========== book now ======== */

.book-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/backgrounds/about-banner.webp);
        background-position: center;
        background-size: cover;
    }

    .book-form{
        width: 70%;
        margin: 0px auto;
    }
}

/* ======== rules ========== */

.rules{
    background-color: #f7e7c6;
    .container{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}
.hide{
    display: none;
}

.rooms {
h4{
    text-align: center;
        color: #fff;
}    
    
}
