@import url(./style.css);

.newheader {
    background-color: transparent;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    .newhead {
        width: 1200px;
        margin: auto;
        border: 0;
        padding: 10px 20px;
    }

    .left {
        max-width: fit-content;
        background-color: var(--fourth-color);
        border-radius: 100px 0 0 100px;
        padding: 15px 30px;

        img {
            width: 150px;
        }
    }

    .right {
        background-color: var(--primary-color);
        padding: 15px 30px 15px 20px;
        border-radius: 0 100px 100px 0;
        cursor: pointer;

        span {
            font-size: 12px !important;
        }

        a {
            color: var(--fourth-color) !important;
            font-weight: 700;
            line-height: 1.5;
        }

        p {
            line-height: 1.5;
            color: var(--fourth-color) !important;
        }

        div {
            margin: auto 0;
        }

        .fa-phone {
            background-color: var(--fourth-color);
            padding: 10px;
            border-radius: 50%;
            font-size: 25px;
        }
    }

    .right:hover {
        background-color: var(--secondary-color);
    }
}

.newheader.scrolled {
    background-color: var(--fourth-color);
}

.navigate {
    padding: 20px;
    border-left: 1px solid var(--secondary-color);
    background-color: var(--fourth-color);

    ul {
        display: flex;
        list-style-type: none;
        gap: 10px;
        justify-content: center;
        margin-bottom: 0;
    }

    a {
        font-size: 16px;
        color: var(--fifth-color) !important;
        transition: border-color 0.5s ease-in-out;
        cursor: pointer;
    }

    li {
        margin: 0;
        padding: 0 10px;
        cursor: pointer;
    }

    li:hover {
        a {
            text-decoration: underline !important;
            color: var(--secondary-color) !important;
        }
    }
}

form {
    .pass {
        margin: auto 0 auto auto;
        gap: 10px;
    }

    .radio {
        display: flex;
        gap: 20px;

        input {
            width: 15px;
            margin-left: 0 !important;
        }

        label {
            margin-top: 0;
            margin-left: 20px;
        }
    }

    ::placeholder {
        color: var(--fifth-color);
    }

    input,
    select,
    textarea {
        line-height: 1em !important;
        background-color: var(--fourth-color);
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: 1px solid #cacaca;
        border-radius: 5px;
    }

    label {
        flex: 1;
        font-family: var(--secondary-font);
        font-size: 16px;
        margin-top: 10px;
        text-align: left;
        font-weight: 400;
    }

    button {
        width: 100%;
    }

    div {
        gap: 5px;
    }

    .dropdown-container {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .dropdown-input {
        padding: 10px;
        font-size: 15px;
        border: 1px solid #ddd;
        cursor: pointer;
    }

    .dropdown-content {
        padding: 10px;
        border-radius: 10px;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border: 1px solid #ddd;
    }

    .dropdown-content .dropdown-group {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .dropdown-content .dropdown-group:last-child {
        border-bottom: none;
    }

    .dropdown-content label {
        margin-right: 10px;
    }

    .qty {
        cursor: pointer;
        width: 30px;
        text-align: center;
    }

    .qtyminus,
    .qtyplus {
        background-color: #f1f1f1;
        border: 1px solid #ccc;
        font-size: 18px;
    }

    .dropdown-content input[type="text"] {
        width: 50px;
        text-align: center;
    }

    .form-control {
        border: 1px solid #cacaca;
        padding: 5px !important;
    }
}

.herobg {
    background-image: linear-gradient(to right, rgba(20, 20, 20, 0.5), rgba(20, 20, 20, 0.5)), url(../images/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    h1 {
        color: var(--fourth-color);
    }

    .row1 {
        padding-top: 150px;
    }
}

.contact {
    form {
        margin-top: 10px;

        button {
            width: 100px;
        }

        input {
            padding: 15px;
            border: 1px solid #cacaca;
            border-radius: 5px;
        }
    }

    .right {
        background-color: var(--primary-color);
        padding: 20px;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        max-width: 35%;

        h2 {
            color: var(--fourth-color) !important;
            padding: 5px;
            border-bottom: 1px solid #cacaca;
        }

        h3 {
            background-color: var(--fourth-color);
            border-radius: 50px;
            margin: auto 0;
            z-index: 1;
        }

        p {
            background-color: var(--third-color);
            color: var(--fourth-color);
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            margin-left: -6px !important;
        }

        .flex {
            margin-top: 10px;
        }

        a,
        a:hover {
            color: var(--fourth-color);
        }
    }

    h3,
    p {
        margin: auto 0 !important;
    }
}

.cta {
    background-color: var(--secondary-color);
    padding: 15px;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    margin: 10px;
    border-radius: 10px;

    i {
        background-color: var(--primary-color);
        color: var(--fourth-color);
        padding: 10px;
        border-radius: 100%;
    }

    div {
        margin: auto 0;
    }

    h3,
    p {
        margin: auto 0 !important;
        color: var(--fourth-color) !important;
        padding: 0 !important;
        line-height: 1.5;
    }

    h4 {
        color: var(--fourth-color) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5;
    }

    img {
        border-radius: 100%;
        justify-content: end;
        margin: auto 0 auto auto;
        width: 60px;
        border: 2px solid var(--primary-color);
        padding: 2px;
    }
}

.bg1 {
    background-image: url(../images/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    .row1 {
        padding-top: 200px;
        padding-bottom: 150px;
    }

    .radio {
        background-color: var(--third-color);
        width: fit-content;
        margin: auto;
        padding: 10px 25px;
        border-radius: 10px 10px 0 0;
        clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);

        label {
            color: var(--fourth-color);
        }
    }

    .col3 {
        background-color: var(--fourth-color);
        padding: 7px 15px;
        border-radius: 50px;
        gap: 0;

        .column {
            flex: 1;
            gap: 0;
        }

        input, .form-control {
            border: none;
            border-radius: 0;
        }

        input:nth-child(even) {
            border-inline: 1px solid #cacaca;
        }

        button {
            width: fit-content;
            margin: auto 0;
            padding-block: 5px;
        }
    }
h1 {
    text-shadow: none;
}
}

.usps {
    text-align: center;
    h2 {
        background-color: var(--third-color);
        color: var(--fourth-color) !important;
        width: fit-content;
        margin: 0 auto !important;
        text-align: center;
        padding: 15px 30px;
        border-radius: 50px;
    }

    .d-flex {
        div {
            margin: auto 0;
            flex: 1;
        }
    }

    .grid {
        margin-top: 40px;

        .column {
            background-color: rgb(255, 90, 22, 0.1);
            padding: 0 30px 30px 30px;
            border-radius: 10px 10px 0 0;
            border-bottom: 2px solid var(--third-color);
            cursor: pointer;
        }

        i {
            font-size: 25px;
            margin-bottom: 15px;
            margin-top: -25px;
            padding: 17px 15px;
            background-color: var(--fourth-color);
            border-radius: 50%;
            box-shadow: 0 0 3px 3px rgba(20, 20, 20, 0.2);
        }

        .column:hover {
            background-color: var(--third-color);

            h3, p {
                color: var(--fourth-color) !important;
            }
        }
    }
}

.topdeals {
    background-color: #f7f7f7;

    h2 {
        background-color: var(--third-color);
        color: var(--fourth-color) !important;
        width: fit-content;
        margin: 0 auto !important;
        text-align: center;
        padding: 15px 30px;
        border-radius: 50px;
    }

    .d-flex {
        div {
            margin: auto 0;
        }
    }

    .innerrow {
        .column {
            box-shadow: 0 0 4px 4px rgba(20, 20, 20, 0.1);
            border-radius: 15px;
            cursor: pointer;

            div {
                padding: 15px;
            }

            div:last-child {
                background-color: var(--primary-color);
                border-radius: 0 15px 15px 0;

                i {
                    font-size: 20px;
                    color: var(--secondary-color);
                }

                p, h4 {
                    color: var(--fourth-color) !important;
                }
            }

            div:first-child {
                flex: 1;
                p {
                    font-size: 14px;
                }
            }
        }

        .column:hover {
            box-shadow: 0 0 4px 4px rgba(20, 20, 20, 0.2);
        }

        span {
            font-size: 14px;
        }

        p {
            line-height: 1.5;
        }
    }
}

.destinations {
    text-align: center;
    .column {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 15px;
        padding: 20px;
        cursor: pointer;
    }
    
    .innercontent {
        border-radius: 15px;
        padding: 80px 20px;
        background-color: rgba(20, 20, 20, 0.7);
    }

    button {
        margin-top: 10px;
    }

    h3 {
        color: var(--fourth-color) !important;
    }

    .column:hover {
        .innercontent {
            background-color: rgba(20, 20, 20, 0.2);
        }
    }
}

.ctasec {
    background-image: linear-gradient(to right, rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0)), url(../images/offer-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    h3, h2, p {
        color: var(--fourth-color) !important;
    }

    button {
        margin-block: 10px;
    }
}