.destination-container {
    margin-bottom: 30px;
}

.not-found {
    display: flex;
    align-items: center;
    gap: 10px;

    img {
        width: 30px;
    }

    p {
        font-weight: 600;
        color: red;
    }
}

.contents {
    position: relative;

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0;

        h2 {
            font-size: 24px;
            font-weight: 700;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 8px;

            font-size: 20px;
            font-weight: 600px;

            span {
                font-size: 18px;
                color: grey;
            }

            ion-icon {
                color: grey;
            }
        }


    }

    .images {
        margin-bottom: 40px;
        border-radius: 15px;
        display: grid;
        gap: 10px;
        grid-template-areas:
            "i1 i1 i2 i3"
            "i1 i1 i4 i5"
        ;


        .img-1 {
            grid-area: i1;
            border-radius: 15px 0px 0px 15px;
        }

        .img-2 {
            grid-area: i2;
        }

        .img-3 {
            grid-area: i3;
            border-radius: 0px 15px 0 0px;
        }

        .img-4 {
            grid-area: i4;
        }

        .img-5 {
            grid-area: i5;
            border-radius: 0px 0 15px 0px;
        }

        img {
            width: 100%;
            height: 100%;
        }
    }

    .article {
        h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        p {
            text-align: justify;
            margin-bottom: 30px;
            line-height: 25px;
        }
    }

    /* .activities {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 15px;
    } */

    .title-div {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;

        h3 {
            font-size: 30px;
            text-transform: capitalize;
        }
    }

    .activity-card {
        width: 99%;
        border: 1px solid gray;
        border-radius: 12px;

        img {
            width: 100%;
            height: 240px;
            border-radius: inherit;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
            overflow: hidden;
        }

        .activity-card-content {
            padding: 10px;

            .line-through,
            span {
                color: grey;
                font-size: 16px;
                font-weight: 600;
            }

            .icon {
                font-size: 20px;
                font-weight: 600;

                span {
                    margin-top: -105px;
                }
            }

            div:not(:last-child),
            h3 {
                margin-bottom: 10px;
            }

            div:last-child {
                margin-bottom: -15px;
            }

            .ratings-container {
                display: flex;
                align-items: start;
                gap: 10px;
            }

            .ratings-container>p {
                color: rgb(52, 53, 55);
                font-size: 16px;
                font-weight: 600;
            }

            .ratings {
                display: flex;
                align-items: center;
                gap: 3px;
                margin-top: 1px;

                ion-icon {
                    color: rgb(251, 150, 17);
                }
            }

            .way {
                padding: 5px 12px;
                border-radius: 8px;
                font-weight: 600;
            }

            .way-escorted {
                background-color: gainsboro;
                color: rgb(52, 53, 55);
            }

            .way-wild {
                background-color: #089673;
                color: white;
            }

            .way-rail {
                background-color: #fb9611;
                color: white;
            }

            .way-cruise {
                background-color: #2ac1dc;
                color: white;
            }

            .way-river {
                background-color: #ffcfcf;
                color: rgb(142, 27, 27);
            }
        }
    }
}


/* details  */
.details {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;


    .info {
        h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        div {
            margin-bottom: 25px;
            text-align: justify;
        }
    }

    .cart {
        margin-bottom: 10px;
        position: relative;
        height: fit-content;
        background-color: rgba(204, 210, 209, 0.5);
        padding: 15px;
        border-radius: 10px;

        /* .icon-img {
            width: 24px;

        } */

        div:not(.quantity) {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;



            p {
                font-size: 18px;
                font-weight: 600;
            }
        }

        .price {
            margin-top: 20px;

            span {
                font-size: 20px;
                font-weight: 700;
            }
        }

        /* .quantity {
            display: flex;

            .quantity-btn {
                background-color: black;
                color: white;
                border: none;
                padding: 2px 5px;
                cursor: pointer;
                transition: all 0.3s;
            }

            .quantity-btn-minus {
                border-radius: 5px 0 0 5px;
            }

            .quantity-btn-plus {
                border-radius: 0 5px 5px 0;
            }

            .quantity-btn:hover {
                background-color: rgb(44, 42, 42);
            }

            #actual-quantity {
                width: 50px;
                height: 29px;
                text-align: center;
                padding-left: 15px;
                outline: none;
            }
        } */

        .btn-add-cart {
            /* border-radius: 5px; */
            width: 100%;
            background-color: rgba(0, 158, 207, 1);
            padding: 8px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            color: white;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .btn-add-cart:hover {
            background-color: rgb(0, 126, 165);
        }
    }
}

/* .unavailable-now {
    color: red;
    background-color: rgba(251, 5, 5, 0.3);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: x-large;
    font-weight: bold;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg) translate(-50%, -50%);
} */

/* common  */






/* media query ==============================================> */

/* laptop (Extra extra large) */
@media only screen and (max-width: 1400px) {}

/* Extra large */
@media only screen and (max-width: 1200px) {}

/* Smartphones (lg) */
@media only screen and (max-width: 992px) {}

/* Smartphones (landscape md) */
@media only screen and (max-width: 768px) {}

/* Smartphones (portrait) */
@media only screen and (max-width: 576px) {

    /* all destination page  */
    #search-banner {
        h1 {
            font-size: 24px;
        }
    }

    #all-destinations-container {
        grid-template-columns: 1fr !important;
        margin: 50px 10px !important;

        .top-destination-card {
            height: 300px !important;

            p {
                font-size: 22px !important;
            }
        }
    }

    /* single destination page  */
    #single-destination-page {

        #single-destination-page-article,
        #single-destination-page-images,
        #single-destination-header {
            margin: 10px;
        }

        #single-destination-page-activities {
            margin-bottom: 15px;

            .title-div {
                margin: 10px 0;
            }
        }
    }

    /* Activity details  */
    .home-contents {
        margin: 0 10px 10px 10px;

        .header {
            flex-direction: column;
            align-items: start;
            justify-content: start;
            gap: 5px;
        }

        .details {
            grid-template-columns: 1fr;
            gap: 5px;

            .info {
                order: 1;
                /* order: 2; */
            }

            .cart {
                order: 2;
                /* order: 1; */
            }
        }
    }



}