/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
    .top-header {
        .main-top-header {
            display: flex;
            gap: 30px;
            justify-content: space-between;
            align-items: center;
        }

        .item {
            width: 50%;
            text-align: center;
        }

        .logo {
            img {
                width: 200px;
            }
        }

        .user-detail {
            display: flex;
            justify-content: center;

            a {
                display: flex;
                text-align: start;
                align-items: center;
                gap: 15px;
                color: #242424;
                font-size: 16px;
            }

            .item-title {
                display: block;
                font-size: 16px;
                font-weight: 500;
            }
        }

        span.item-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fc6e05;
            border-radius: 50%;
            color: #fff;
            font-size: 32px;
        }
    }

    @media screen and (max-width: 1200px) {
        .bottom-header .primary-menu nav ul li a {
            font-size: 14px;
        }

    }

    .bottom-header {
        padding: 20px 0px;
        position: absolute;
        width: 100%;
        z-index: 9;
        background-color: #ffffff86;

        .menu-icon {
            display: none;
        }

        .logo {
            display: none;
        }

        .primary-menu {
            nav {
                ul {
                    display: flex;
                    justify-content: space-between;
                }

                li a {
                    font-size: 18px;
                    color: #222;
                    font-weight: 500;
                    padding: 5px;
                    position: relative;
                }

                li a::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 0%;
                    height: 2px;
                    background-color: #fc6e05;
                    transition: all .2s linear;
                }

                li a:hover::after {
                    width: 100%;
                }

                li a:hover {
                    color: #fc6e05;
                }
            }
        }
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4990371148459384) 0%, rgba(255, 255, 255, 0) 100%), url(../uploads/banner/banner.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 0px;
    color: #fff;

    .banner-content {
        position: relative;
        width: 60%;
        display: flex;
        flex-direction: column;
        padding: 45px 0 45px 35px;
        border-left: 15px solid #FFFFFF;
        gap: 10px;

        p {
            color: #fff;
        }

        .banner-tagline {
            position: relative;
            margin-left: 30px;
        }

        .banner-tagline::before {
            content: '';
            position: absolute;
            left: -25px;
            top: 50%;
            width: 20px;
            height: 2px;
            background-color: #fff;
        }

        .text-style {
            color: #fc6e05;
            text-shadow: 2px 1px 1px #00000085;
        }
    }

    .banner-content::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 150px;
        height: 15px;
        background: #FFFFFF;
    }

    .banner-content::after {
        position: absolute;
        content: "";
        /* top: 0; */
        left: 0;
        bottom: 0;
        width: 150px;
        height: 15px;
        background: #FFFFFF;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-section {
    background: url(../uploads/banner/about.webp);
    background-position: center;
    background-size: cover;

    .main-about-section {
        display: flex;
        gap: 40px;
    }

    .about-img {
        width: 50%;
        position: relative;

        .img1 {
            width: 80%;
        }

        .img2 {
            position: absolute;
            bottom: 0;
            left: 0;
            display: flex;
            justify-content: flex-end;

            img {
                width: 50%;
                border: 8px solid #f7f6f9;
            }
        }
    }

    .about-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 20px;

        .text-style {
            font-size: 32px;
        }
    }
}

/*--------------------------------------------------------------
# our activities Section
--------------------------------------------------------------*/

.activitie-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banner/activitie-banner.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;

    p {
        color: #fff;
    }

    .main-activitie {
        display: flex;
        gap: 40px;
    }

    .activiti-content {
        width: 40%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .activitie-items {
        width: 60%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;

        .item {
            border: 4px solid #f0f0f0;
            padding: 20px;
            background: rgb(62 75 116 / 38%);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }

        .item-title {
            font-size: 18px;
            font-weight: 500;
        }

        .item-icon {
            img {
                width: 80px;
            }
        }

        p {
            font-size: 14px;
        }
    }
}

/*--------------------------------------------------------------
# Marquee Section
--------------------------------------------------------------*/

.marquee {
    padding: 20px;
    background-color: #ffffff;
    color: #000000;
    border-bottom: 1px solid #ccc;

    .marquee-content {
        font-size: 30px;
        font-weight: 600;
        margin: 0px 30px;
    }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

.why-choose-us {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../uploads/banner/why-choose-us.avif);
    background-position: center;
    background-size: contain;

    .main-choose {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .choose-content {
        width: 50%;

        p {
            margin-top: 20px;
        }
    }

    .choose-item {
        width: 50%;
    }

    img {
        width: 100%;
    }

    .call-box {
        width: 70%;
        display: flex;
        gap: 30px;
        align-items: center;
        margin-top: 30px;

        .icon {
            width: 200px;
            display: flex;
        }

        .call-box-content {
            p a {
                color: #000;
            }
        }
    }

    .choose-item {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .item-box {
            width: 80%;
            display: flex;
            background-color: #fff;
            align-items: center;
            padding: 20px 20px 20px 0px;
            gap: 22px;
            box-shadow: 0px 0px 20px 0px #cccccc57;
        }

        .icon-img {
            clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
            background-color: #ffc295;
            padding: 15px 25px 15px 15px;
            color: #fff;
            font-size: 25px;
            display: flex;

            img {
                width: 120px;
            }
        }
    }

    .primary-btn {
        margin-top: 20px;
    }

    .right {
        margin-left: 50px;
    }
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/

.tesitmonial-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banner/testimonial.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;

    .testimonial-items {
        width: 80%;
        margin: 0 auto;
        background: rgb(255 255 255 / 72%);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        padding: 60px 40px;
        margin-top: 35px;

        p {
            color: #000000;
            font-size: 18px;
        }

        .google-img {
            img {
                width: 150px;
            }
        }

        .author {
            font-size: 20px;
            font-weight: 600;
            color: #000;
        }

        .item {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #fc6e05;
    }
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

footer {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../uploads/banner/banner.jpg);
    background-position: center;
    background-size: cover;

    .main-footer {
        padding: 50px 0px 40px;
        clip-path: ellipse(50% 100% at 50% -6%);
        background-color: #fc6e05;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .bottom-footer {
        text-align: center;
        font-size: 14px;
        margin-top: 50px;
        color: #fff;

        a {
            color: #fff;
        }
    }

    .footer-details {
        display: flex;
        justify-content: center;

        span {
            display: block;
        }

        ul {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 30px;
        }

        li a {
            display: flex;
            gap: 15px;
            align-items: center;
            color: #fff;
        }
    }

    .social-icon {
        display: flex;
        gap: 15px;
        justify-content: center;

        a {
            color: #fff;
            font-size: 22px;
        }
    }
}


#about-page {
    .about-img {
        img {
            border-radius: 10px;
            box-shadow: 0 0 10px #b3b3b38f;
        }
    }
}

/* =========== Attraction page ========== */

#attractions-page {
    .main-attractions {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }

    .item-box {
        overflow: hidden;
        position: relative;
        display: flex;
    }

    .item-img {
        display: flex;

        figure {
            display: flex;
        }

        img {
            transition: all .2s linear;
        }
    }

    .item-title {
        font-size: 20px;
        display: block;
        font-weight: 600;
    }

    .surround {
        display: block;
        font-size: 18px;
        padding: 10px 0px;
    }

    .item-content {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 30px;
        background: #ffffffd4;

        a {
            padding: 10px 20px;
            color: #000000;
            border: 1px solid #000;
            display: inline-block;
            transition: .4s;
        }

        a:hover {
            background-color: #000;
            color: #fff;
        }
    }

    .item-box:hover img {
        transform: scale(1.1);
        transition: all .2s linear;
    }
}


/* =========== Attraction page ========== */

#amenities-page {
    .main-amenities {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        align-items: center;
        grid-column-gap: 20px;
        grid-row-gap: 40px;
        text-align: center;
    }

    .amenities-img {
        background: #ededed;
        padding: 20px;
        border-radius: 15px;

        img {
            width: 80px;
        }

        h5 {
            font-size: 16px;
        }
    }
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/

#gallery-page {
    .main-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }

    .gallery-img {
        overflow: hidden;
        transition: all .2s ease-in-out;
        display: flex;
        border-radius: 10px;
    }

    .gallery-img:hover img {
        transform: scale(1.1);
        transition: all .2s ease-in-out;
    }
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/

#blog-page {

    .main-blog {
        background: #eaf0f5;
    }

    .blogs {
        display: flex;
        gap: 40px;
    }

    .blog-date {
        font-size: 14px;
        background-color: #fc6e05;
        padding: 2px 5px;
        color: #fff;
    }

    .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;
                align-items: self-start;

                p {
                    font-size: 14px;
                }
            }

            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-title {
        font-size: 18px;
    }

}

.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: 3px solid #fc6e05;

        ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

        .recent-posts-details {
            width: 70%;
        }

        ul li {
            display: flex;
            gap: 20px;
        }

        .entry-image {
            width: 30%;
            display: flex;
            border-radius: 5px;

            a {
                display: flex;
            }

            img {
                border-radius: 5px;
                object-fit: cover;
            }
        }

        .entry-title {
            p a {
                color: #000;
                font-size: 16px;
            }
        }

        h6 {
            font-size: 15px;
            font-weight: 500;
            color: #fc6e05;
        }
    }
}

/*--------------------------------------------------------------
# Blog Detail Page
--------------------------------------------------------------*/

#blog-detail-page {
    .inner-page {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banner/about-inner-banner.webp);
    }

    .detail-page {
        background: #eaf0f5;
    }

    .main-detail-page {
        display: flex;
        gap: 20px;
    }

    .blog-date {
        font-size: 14px;
        background-color: #fc6e05;
        padding: 2px 5px;
        color: #fff;
    }

    .single-blog-content {
        width: 70%;
        padding: 20px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: self-start;
        gap: 15px;
    }

    .blog-side-bar {
        width: 30%;
    }

    h5,
    .h5 {
        font-size: 22px;
        font-weight: 400;
    }
}

/* =========== Contact Page ====== */

#contact-page {
    .contact {
        background: url(../uploads/banner/about.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%;
        display: flex;
        justify-content: center;

        .main-details {
            width: 60%;
            background-color: #fff;

            a {
                color: #242424;
            }

            span.title {
                font-size: 16px;
                font-weight: 500;
            }

            .heading {
                background-color: #fc6e05;
                padding: 15px;
                color: #fff;
            }

            .box {
                padding: 25px 15px;
                border-bottom: 1px solid #ccc;
            }

            span {
                display: inline-block;
            }

            .icon-text {
                font-size: 24px;
                color: #fc6e05;
                margin-right: 10px;
            }

            .text {
                color: #444444;
                font-weight: 600;
            }

            h5 {
                text-wrap: wrap;
                font-size: 18px;
            }
        }
    }

    .map {
        display: flex;
    }

    iframe {
        height: 350px;
    }

    .icon {
        margin-bottom: 10px;
    }
}

form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    input,
    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: none;
    }

    .box {
        display: flex;
        gap: 20px;
    }

    .submit {
        width: 170px;
        background-color: #fc6e05;
        font-size: 16px;
        cursor: pointer;
        color: #fff;
    }

    select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    label {
        display: block;
        margin-bottom: 10px;
    }
}

/* ============= faq ============= */

#faq-page {
    .faq {
        background: url(../uploads/banner/about.webp);
        background-position: center;
        background-size: cover;
    }

    .main-faq {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

#reviews-page {
    .main-review {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }

    .item {
        background: #f1f1f1;
        padding: 20px;
        border-radius: 10px;
    }

    .author {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        display: inline-block;
    }
}

.hide {
    display: none;
}

.activiti-content h4 {
    font-size: 45px;
}

.single-blog-content ul li {
    padding: 4px 0px;
    list-style-type: circle;
    margin-left: 20px
}

.small_blog__heading {
    font-size: 18px;
}