header {
    .top-header {
        background-color: var(--primary-color);
        padding: 10px 0;

        .main-top-header {
            display: flex;
            justify-content: space-between;
            align-items: center;

            a {
                color: #fff;
                font-size: 16px;
            }

            .details {
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .details .item:nth-child(1) {
                border-right: 1px solid #ccc;
                padding-right: 20px;

            }

            .socail-media {
                display: flex;
                align-items: center;
                gap: 15px;
                font-size: 20px;
            }
        }
    }

    .bottom-header {
        .main-bottom-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            padding: 15px;
            background-color: var(--primary-color);
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            margin-bottom: -33px;
            box-shadow: 1px 13px 20px #0000004a;

            a {
                display: flex;
            }

            img {
                width: 300px;
            }
        }

        .primary-menu {
            display: flex;
            align-items: center;
            gap: 20px;

            nav {
                ul {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                }

                a {
                    font-size: 18px;
                    color: #181818;
                    padding: 5px 10px;
                }
            }
        }
    }

    .header-toggle {
        width: 50px;
        height: 50px;
        /* border: 1px solid; */
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        z-index: 99;
        display: none;

        span {
            display: block;
            width: 100%;
            height: 4px;
            background: #102939;
            border-radius: 20px;
            transition: all .2s linear;
        }
    }

    .header-toggle span:nth-child(2) {
        width: 80%;
        margin: 0 0 0 auto;
        transition: all .2s linear;
    }

    .active-toggle span:nth-child(2) {
        width: 0%;
        margin: 0 0 0 auto;
    }

    .active-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 10px);
    }

    .active-toggle span:nth-child(3) {
        transform: rotate(314deg) translate(8px, -15px);
    }


}


/* ==================== 
hero section 
==================== */


.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(../upload/banner/hero-banner.jpg);
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    padding: 250px 0px 0px;

    .main-hero-section {
        text-align: center;
    }

    .hero-tagline {
         display: block;
        font-size: 60px;
        color: var(--secoundary-color);
        font-weight: 600;
        text-transform: capitalize;
        font-family: var(--primary-font);
        text-shadow: 0px 1px 6px #22222273;
    }

    .banner-heading {
        font-size: 60px;
        color: #fff;
        text-transform: capitalize;
    }

    .amnitties {
        margin-top: 250px;
        display: flex;
        gap: 30px;

        .item {
            flex: 1;
            text-align: center;
            background-color: #f4f6ff;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            padding: 0px 20px 20px;
            color: #181818;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;

            span {
                display: block;
            }

            .icon {
                background-color: #ffffff;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                display: grid;
                place-items: center;
                font-size: 25px;
                color: #000000;
                margin-top: -30px;
                box-shadow: 1px 4px 14px #cccccc63;
                img{
                    width: 50px;
                }
            }

            .content {
                font-size: 16px;
                line-height: 1.3;
            }
        }
    }
}


/* ==================== 
about section 
==================== */

.about-section {
    .main-about-section {
        display: flex;
        gap: 40px;
        align-items: center;

        .about-content {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about-img {
            width: 50%;
            display: flex;
            gap: 30px;

            .img-box {
                border-radius: 8px;
                overflow: hidden;
                display: flex;
            }

            .img2 {
                transform: translateY(-50px);
            }
        }

        .group-btn {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .call-btn a {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 20px;
            color: #222222;

            .icon {
                width: 60px;
                height: 60px;
                display: grid;
                place-items: center;
                font-size: 25px;
                color: #fff;
                border-radius: 50%;
                background-color: #222222;
            }
        }
    }
}

/* ==================== 
Room section 
==================== */

.room-section{
    background: #181818;
    .room-heading{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .room-title{
        width: 40%;
    }
    .room-section-dec{
        width: 40%;
        p{
            color: #fff;
        }
    }
    .tagline, h3{
        color: #fff;
    }

    .main-rooms{
        margin-top: 30px;
    }

    .item{
        position: relative;
    }

    .room-content{
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: end;
        padding: 30px;
        background: linear-gradient(13deg, #00000080, transparent);
        color: #fff;

        ul{
            display: flex;
            gap: 30px;
            font-size: 20px;
        }
        li{
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4 a{
            color: #fff;
            letter-spacing: 1px;
        }
    }
    
}

/* ==================== 
area attractions
==================== */

.area-attractions{
   
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    justify-items: center;
    margin-top: 30px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.1rem;
}

.overlay p {
    margin: 0;
    color: #fff;
}

@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}
}

.testimonial-section{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(../upload/banner/inner-banner.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;

    .testimonial-heading{
        text-align: center;
        h3{
            color: #fff;
        }
    }
    .main-testimonial{
        margin-top: 30px;
        .item{
            width: 60%;
            text-align: center;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            p{
                font-size: 20px;
                color: #fff;
            }
            img{
                width: 128px;
            }
            .author{
                font-size: 20px;
            }
        }
    }

    .testimonial-bt{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;

        a{
            padding: 10px;
            background: #fff;
            color: #222222;
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 10px;
            img{
                width: 40px;
            }
        }
    }
}

.gallery-section{
    background: #f7f7f7;
    .gallery-heading{
        text-align: center;
        ul{
            display: flex;
            gap: 15px;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        ul li{
            padding: 5px 30px;
            border-radius: 20px;
            font-size: 18px;
            cursor: pointer;
        }
        .active{
            background: #071b64;
            color: #fff;
        }
    }
    .gallery-grid{
        display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-gap: 20px;
            align-items: stretch;
            margin-top: 30px;
    }
    .item{
        border-radius: 10px;
        .img-box{
        border-radius: 10px;

            display: flex;
            overflow: hidden;
            img{
                transition: all .2s linear;
            }
        }
    }
    .item:hover img{
        transform: scale(1.1);
    }
}

footer {
    background-color: #1f1f1f;
    background-repeat: no-repeat;

    .footer-main {
        padding: 50px 0 30px;
        display: flex;
        gap: 20px;
        justify-content: space-around;
        color: #fff;
        flex-wrap: wrap
    }

    a {
        color: #d6d4d4
    }
    h5{
        color: #fff;
    }

    ul {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px
    }

    .contact-link {
        li a {
            display: flex;
            align-items: center;
            gap: 10px
        }
    }

    .social-icon {
        ul {
            display: flex;
            flex-direction: row;
            font-size: 22px;
            gap: 20px
        }

        img {
            width: 32px
        }
    }

    .copy-right {
        border-top: 1px solid #d1d1d171;
        padding: 20px 0;
        text-align: center;
        color: #fff;
        font-size: 12px;

        img {
            width: 100px;
            margin-top: 10px
        }
    }
}

/* ============ about page ======= */

.about-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/banner/about-banner.jpg);
        background-position: center;
        background-size: cover;     
    }

}
/* ========= room page ========= */

.room-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/banner/room-banner.jpg);
        background-position: center;
        background-size: cover;     
    }
    .main-room{
        display: flex;
        gap: 40px;
        .room-img{
            width: 50%;
            display: flex;
            img {
                object-fit: cover;
                border-radius: 15px;
            }
        }
        .room-content{
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .room-feature{
            ul{
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
            }
            img{
                width: 64px;
            }
            ul li{
                display: flex;
                align-items: center;
                gap: 10px;
            }
        }
    }

    .rooms:nth-child(even){
        background: #e9e9e9;
        .main-room{
            flex-direction: row-reverse;
        }
    }

}

/* ============= Gallery Page ========= */

.gallery-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/banner/gallery-banner.jpg);
        background-position: right;
        background-size: cover;     
    }
    .gallery{

        .main-gallery{
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-gap: 20px;
            align-items: stretch;
        }
    
        .item{
            display: flex;
            overflow: hidden;
            border-radius: 10px;
            img{
                border-radius: 10px;
                transition: all .2s linear;
            }
        }
    
        .item:hover img{
            transform: scale(1.1);
        }
    }
}



/* ========== contact-us ========== */

.contact-page{
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/banner/contact-banner.jpg);
        background-position: center;
        background-size: cover;     
    }
    .contact-us{
        .main-contact-us{
            display: flex;
        }
        .motel-details{
            width: 50%;
            
                ul{
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                    font-size: 20px;
                    margin-top: 30px;
                }
                li a{
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    color: #000000;
                }
         
                .motel-time{
                    margin-top: 20px;
                }
        }
        .contact-form{
            width: 50%;
        }
    }
    .map-section{
        iframe{
            width: 100%;
            height: 350px;
        }
    }
}


form{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ececec;
    border-radius: 15px;
    .group-box{
        display: flex;
        gap: 20px;
        .box{
            width: 50%;
        }
    }
    label{
        display: block;
        margin-bottom: 5px;
    }
    input, textarea, select{
        width: 100%;
        border-radius: 4px;
        border: 1px solid #ccc;
        padding: 10px;
        font-family: var(--secondary-font);
    }

    input[type="submit"]{
        background: var(--primary-color);
        width: 170px;
        padding: 12px 10px;
        color: #fff;
        font-size: 16px;
    }
}


.book-page{
    .book-form{
        
        form{
            display: flex;
            gap: 40px;
            flex-direction: row;
            background: #071b64;
            label{
                color: #e9b306;
            }
        }
        .basic-filds{
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .payment-filds{

            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            h4{
                margin-bottom: 20px;
                color: #e9b306;
            }
        }
    }
}
.billing_form_image img{
    width: 100%;
    height: auto;
}


.group-btn img{ width:120px;}
.group-btn img a{ background:none; border:none;}