/* =========================================================
   VL ALL TOURS
========================================================= */

.vl-all-tours {
    --vl-green: #2f8c21;
    --vl-green-dark: #15551d;
    --vl-lime: #59ce02;
    --vl-orange: #fcae35;
    --vl-dark: #172019;
    --vl-text: #626c65;

    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 100% 40%,
            rgba(70, 145, 48, 0.08),
            transparent 23%
        ),
        #fff;
}


/* =========================================================
   INTRO
========================================================= */

.vl-tours-intro {
    max-width: 850px;
    margin: 0 auto 60px;
}

.vl-tours-kicker {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--vl-orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.vl-tours-intro h2 {
    margin: 0 0 14px;

    color: var(--vl-dark);

    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
}

.vl-tours-intro p {
    max-width: 720px;

    margin: auto;

    color: var(--vl-text);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.vl-tour-category {
    margin-top: 55px;
}

.vl-tour-category:first-of-type {
    margin-top: 0;
}

.vl-nature-category {
    margin-top: 80px;
}

.vl-category-title {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;
    padding-bottom: 15px;

    border-bottom: 1px solid #e5ece4;
}

.vl-category-title::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: 0;

    width: 80px;
    height: 3px;

    border-radius: 10px;

    background: var(--vl-orange);
}

.vl-category-title span {
    display: inline-flex;

    padding: 7px 13px;

    border-radius: 50px;

    background: #edf8e9;

    color: var(--vl-green);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.vl-category-title h3 {
    margin: 0;

    color: var(--vl-green-dark);

    font-size: 29px;
    font-weight: 800;
}


/* =========================================================
   TOUR CARD
========================================================= */

.vl-tour-card {
    height: 100%;

    background: #fff;

    border: 1px solid rgba(31, 85, 37, 0.08);
    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(26, 57, 30, 0.07);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vl-tour-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(26, 57, 30, 0.13);
}


/* =========================================================
   IMAGE
========================================================= */

.vl-tour-image {
    position: relative;

    display: block;

    height: 235px;

    background: #edf1ec;

    overflow: hidden;
}

.vl-tour-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(6, 29, 10, 0.48)
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.vl-tour-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.vl-tour-card:hover .vl-tour-image img {
    transform: scale(1.06);
}

.vl-tour-card:hover .vl-tour-image::after {
    opacity: 1;
}


/* TAG */

.vl-tour-tag {
    position: absolute;

    z-index: 3;

    top: 15px;
    left: 15px;

    padding: 7px 12px;

    border-radius: 50px;

    background: var(--vl-orange);

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;

    text-transform: uppercase;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);
}

.vl-tour-tag-nature {
    background: var(--vl-green);
}


/* IMAGE HOVER TEXT */

.vl-image-link {
    position: absolute;

    z-index: 4;

    left: 50%;
    bottom: 18px;

    padding: 8px 15px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.94);

    color: var(--vl-green-dark);

    font-size: 11px;
    font-weight: 800;

    opacity: 0;

    transform:
        translate(-50%, 15px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.vl-tour-card:hover .vl-image-link {
    opacity: 1;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   BODY
========================================================= */

.vl-tour-body {
    display: flex;
    flex-direction: column;

    min-height: 155px;

    padding: 22px;
}

.vl-tour-body h4 {
    margin: 0 0 20px;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.38;
}

.vl-tour-body h4 a {
    color: var(--vl-dark);

    text-decoration: none;

    transition: color 0.3s ease;
}

.vl-tour-body h4 a:hover {
    color: var(--vl-green);
}


/* =========================================================
   ACTIONS
========================================================= */

.vl-tour-actions {
    display: flex;
    gap: 10px;

    margin-top: auto;
}

.vl-tour-btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 43px;

    padding: 10px 19px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.vl-tour-btn:hover {
    transform: translateY(-2px);
}


/* GREEN */

.vl-tour-btn-primary {
    background:
        linear-gradient(
            135deg,
            #5bdc00,
            #43bd00
        );

    color: #fff !important;

    box-shadow:
        0 7px 17px rgba(70, 190, 0, 0.25);
}

.vl-tour-btn-primary:hover {
    background: var(--vl-green);

    box-shadow:
        0 10px 22px rgba(47, 140, 33, 0.3);
}


/* BOOK */

.vl-tour-btn-book {
    background:
        linear-gradient(
            135deg,
            #ffc846,
            var(--vl-orange)
        );

    color: #172019 !important;

    box-shadow:
        0 7px 17px rgba(252, 174, 53, 0.22);
}

.vl-tour-btn-book:hover {
    background: #f59a18;

    color: #fff !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .vl-all-tours {
        padding: 70px 0;
    }

    .vl-tour-image {
        height: 230px;
    }

}


@media (max-width: 767px) {

    .vl-all-tours {
        padding: 55px 0;
    }

    .vl-tours-intro {
        margin-bottom: 40px;
    }

    .vl-tours-intro h2 {
        font-size: 32px;
    }

    .vl-category-title {
        gap: 10px;
    }

    .vl-category-title h3 {
        font-size: 24px;
    }

    .vl-tour-image {
        height: 240px;
    }

    .vl-nature-category {
        margin-top: 60px;
    }

}


@media (max-width: 480px) {

    .vl-category-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .vl-tour-image {
        height: 220px;
    }

    .vl-tour-actions {
        width: 100%;
    }

    .vl-tour-btn {
        flex: 1;
    }

}