/* =========================================================
   VISIT CHAMOLI
   ADVENTURE PAGE
   Completely Scoped CSS
========================================================= */

.vc-adventure-page {
    --vc-adventure-navy: #06284a;
    --vc-adventure-dark: #031b31;
    --vc-adventure-green: #526f31;
    --vc-adventure-lime: #91aa32;
    --vc-adventure-text: #18212a;
    --vc-adventure-light: #f7f9f6;
    --vc-adventure-white: #ffffff;

    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: var(--vc-adventure-text);
    font-family: Arial, Helvetica, sans-serif;
}

.vc-adventure-page *,
.vc-adventure-page *::before,
.vc-adventure-page *::after {
    box-sizing: border-box;
}

.vc-adventure-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.vc-adventure-hero {
    position: relative;
    min-height: 500px;

    background-image:
        url("../../images/adventure/adventure-hero.jpg");

    background-size: cover;
    background-position: center center;

    display: flex;
    align-items: center;
}

.vc-adventure-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 25, 47, .96) 0%,
            rgba(2, 25, 47, .88) 27%,
            rgba(2, 25, 47, .48) 50%,
            rgba(2, 25, 47, .05) 78%
        );
}

.vc-adventure-hero-content {
    position: relative;
    z-index: 2;

    width: 560px;
    max-width: 100%;

    padding: 65px 0 55px;

    color: #fff;
}

.vc-adventure-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;

    margin-bottom: 55px;

    font-size: 12px;
}

.vc-adventure-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: .9;
}

.vc-adventure-breadcrumb span {
    font-size: 8px;
    opacity: .7;
}

.vc-adventure-breadcrumb strong {
    font-weight: 600;
}

.vc-adventure-hero h1 {
    margin: 0 0 15px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(54px, 6vw, 82px);
    line-height: .95;
    font-weight: 700;
    letter-spacing: -2px;
}

.vc-adventure-hero h2 {
    margin: 0;

    color: #b2c92f;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    line-height: 1.25;

    font-style: italic;
    font-weight: 500;
}

.vc-adventure-hero-divider {
    width: 3px;
    height: 70px;

    margin: 17px 0 15px;

    background: #a2ba38;
}

.vc-adventure-hero p {
    max-width: 520px;

    margin: 0;

    color: #fff;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ALTITUDE SECTION
========================================================= */

.vc-adventure-altitude {
    padding: 40px 0 45px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #f9fbf8 100%
        );
}

.vc-adventure-altitude-grid {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 25px;
    align-items: stretch;
}

.vc-adventure-altitude-intro {
    padding: 8px 0;
}

.vc-adventure-section-icon {
    margin-bottom: 12px;

    color: var(--vc-adventure-green);

    font-size: 34px;
}

.vc-adventure-altitude-intro h2 {
    margin: 0;

    color: var(--vc-adventure-navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
}

.vc-adventure-title-line {
    width: 30px;
    height: 3px;

    margin: 16px 0;

    background: var(--vc-adventure-lime);
}

.vc-adventure-altitude-intro p {
    margin: 0;

    color: #333;

    font-size: 12px;
    line-height: 1.65;
}

.vc-adventure-experience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.vc-adventure-experience-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    border: 1px solid #e1e5e0;
    border-radius: 7px;

    overflow: hidden;

    background: #fff;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.vc-adventure-experience-top {
    min-height: 145px;

    padding: 15px 10px 10px;

    text-align: center;
}

.vc-adventure-experience-top > i {
    display: block;

    margin-bottom: 10px;

    color: var(--vc-adventure-green);

    font-size: 25px;
}

.vc-adventure-experience-top h3 {
    margin: 0 0 9px;

    color: #161616;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
    line-height: 1.15;
}

.vc-adventure-experience-top p {
    margin: 0;

    color: #333;

    font-size: 10px;
    line-height: 1.5;
}

.vc-adventure-experience-image {
    height: 150px;

    overflow: hidden;
}

.vc-adventure-experience-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.vc-adventure-experience-card:hover
.vc-adventure-experience-image img {
    transform: scale(1.06);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.vc-adventure-section-heading {
    text-align: center;

    margin-bottom: 28px;
}

.vc-adventure-heading-icon {
    margin-bottom: 5px;

    color: var(--vc-adventure-green);

    font-size: 25px;
}

.vc-adventure-section-heading h2 {
    margin: 0 0 7px;

    color: var(--vc-adventure-navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    line-height: 1.2;
}

.vc-adventure-section-heading p {
    margin: 0;

    color: #333;

    font-size: 12px;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.vc-adventure-destinations {
    padding: 0 0 35px;

    background: #fff;
}

.vc-adventure-destination-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 10px;
}

.vc-adventure-destination-card {
    position: relative;

    height: 190px;

    overflow: hidden;

    border-radius: 5px;

    background: #ddd;
}

.vc-adventure-destination-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.vc-adventure-destination-card:hover img {
    transform: scale(1.07);
}

.vc-adventure-destination-overlay {
    position: absolute;
    inset: auto 0 0 0;

    padding: 35px 10px 12px;

    color: #fff;

    text-align: center;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, .85)
        );
}

.vc-adventure-destination-overlay h3 {
    margin: 0 0 3px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;
}

.vc-adventure-destination-overlay span {
    display: block;

    color: #fff;

    font-size: 10px;
}


/* =========================================================
   MORE THAN ADVENTURE
========================================================= */

.vc-adventure-more {
    padding: 0 0 40px;

    background: #fff;
}

.vc-adventure-more-grid {
    display: grid;

    grid-template-columns: 43% 57%;

    align-items: stretch;
}

.vc-adventure-more-image {
    min-height: 260px;

    overflow: hidden;

    border-radius: 6px 0 0 6px;
}

.vc-adventure-more-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vc-adventure-more-content {
    padding: 35px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vc-adventure-more-content h2 {
    margin: 0;

    color: var(--vc-adventure-navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
}

.vc-adventure-more-content > p {
    max-width: 650px;

    margin: 0 0 25px;

    color: #333;

    font-size: 12px;
    line-height: 1.65;
}

.vc-adventure-more-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
}

.vc-adventure-more-feature {
    padding: 0 20px;

    text-align: center;

    border-right: 1px solid #ddd;
}

.vc-adventure-more-feature:first-child {
    padding-left: 0;
}

.vc-adventure-more-feature:last-child {
    padding-right: 0;

    border-right: 0;
}

.vc-adventure-more-feature i {
    display: block;

    margin-bottom: 10px;

    color: var(--vc-adventure-green);

    font-size: 28px;
}

.vc-adventure-more-feature h3 {
    margin: 0 0 5px;

    color: #202020;

    font-size: 12px;
}

.vc-adventure-more-feature p {
    margin: 0;

    color: #444;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   TRAVEL TIPS
========================================================= */

.vc-adventure-tips {
    padding: 25px 0 28px;

    background: #f8f9f7;
}

.vc-adventure-tips .vc-adventure-section-heading {
    margin-bottom: 20px;
}

.vc-adventure-tips-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);
}

.vc-adventure-tip {
    min-height: 105px;

    padding: 0 20px;

    text-align: center;

    border-right: 1px solid #d8dcd7;
}

.vc-adventure-tip:first-child {
    padding-left: 0;
}

.vc-adventure-tip:last-child {
    padding-right: 0;

    border-right: 0;
}

.vc-adventure-tip i {
    display: block;

    margin-bottom: 9px;

    color: var(--vc-adventure-green);

    font-size: 26px;
}

.vc-adventure-tip h3 {
    margin: 0 0 5px;

    color: #222;

    font-size: 12px;
}

.vc-adventure-tip p {
    margin: 0;

    color: #444;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   CTA
========================================================= */

.vc-adventure-cta {
    padding: 18px 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 23, 38, .94),
            rgba(3, 23, 38, .55)
        ),
        url("../../images/adventure/adventure-cta.jpg");

    background-size: cover;
    background-position: center;
}

.vc-adventure-cta-inner {
    display: grid;

    grid-template-columns: 110px 1fr auto;

    align-items: center;

    gap: 25px;
}

.vc-adventure-cta-icon {
    color: #a5bd32;

    font-size: 65px;

    text-align: center;
}

.vc-adventure-cta-content h2 {
    margin: 0 0 6px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
}

.vc-adventure-cta-content p {
    margin: 0;

    color: #fff;

    font-size: 11px;
    line-height: 1.5;
}

.vc-adventure-cta-button {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 12px 20px;

    border-radius: 4px;

    background: #6b9b2d;

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: all .3s ease;
}

.vc-adventure-cta-button:hover {
    background: #86b93b;
    color: #fff;
}


/* =========================================================
   STATS
========================================================= */

.vc-adventure-stats {
    padding: 30px 0;

    background: #031d34;
}

.vc-adventure-stats-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);
}

.vc-adventure-stat {
    min-height: 105px;

    padding: 0 25px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.18);
}

.vc-adventure-stat:first-child {
    padding-left: 0;
}

.vc-adventure-stat:last-child {
    padding-right: 0;

    border-right: 0;
}

.vc-adventure-stat i {
    display: block;

    margin-bottom: 10px;

    color: #a7bf31;

    font-size: 27px;
}

.vc-adventure-stat h3 {
    margin: 0 0 5px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
}

.vc-adventure-stat p {
    margin: 0;

    color: #fff;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vc-adventure-altitude-grid {
        grid-template-columns: 1fr;
    }

    .vc-adventure-altitude-intro {
        max-width: 500px;
    }

    .vc-adventure-experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vc-adventure-destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vc-adventure-more-grid {
        grid-template-columns: 1fr;
    }

    .vc-adventure-more-image {
        min-height: 300px;
        border-radius: 6px 6px 0 0;
    }

    .vc-adventure-more-content {
        padding: 30px;
    }

    .vc-adventure-cta-inner {
        grid-template-columns: 80px 1fr;
    }

    .vc-adventure-cta-button {
        grid-column: 2;
        justify-self: start;
    }

    .vc-adventure-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 25px;
    }

    .vc-adventure-stat:nth-child(3) {
        border-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vc-adventure-container {
        width: min(100% - 28px, 600px);
    }

    .vc-adventure-hero {
        min-height: 560px;

        background-position: 62% center;
    }

    .vc-adventure-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2,25,47,.94),
                rgba(2,25,47,.68)
            );
    }

    .vc-adventure-hero-content {
        padding: 40px 0;
    }

    .vc-adventure-breadcrumb {
        margin-bottom: 45px;
    }

    .vc-adventure-hero h1 {
        font-size: 52px;
    }

    .vc-adventure-hero h2 {
        font-size: 20px;
    }

    .vc-adventure-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vc-adventure-destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vc-adventure-more-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vc-adventure-more-feature,
    .vc-adventure-more-feature:first-child,
    .vc-adventure-more-feature:last-child {
        padding: 15px 0;

        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .vc-adventure-more-feature:last-child {
        border-bottom: 0;
    }

    .vc-adventure-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vc-adventure-tip,
    .vc-adventure-tip:first-child,
    .vc-adventure-tip:last-child {
        padding: 10px;

        border-right: 0;
    }

    .vc-adventure-tip:nth-child(odd) {
        border-right: 1px solid #d8dcd7;
    }

    .vc-adventure-cta-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .vc-adventure-cta-icon {
        font-size: 45px;
    }

    .vc-adventure-cta-button {
        grid-column: auto;
        justify-self: center;
    }

    .vc-adventure-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vc-adventure-stat,
    .vc-adventure-stat:first-child,
    .vc-adventure-stat:last-child {
        padding: 10px;

        border-right: 0;
    }

    .vc-adventure-stat:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.18);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vc-adventure-experience-grid {
        grid-template-columns: 1fr;
    }

    .vc-adventure-destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vc-adventure-experience-top {
        min-height: auto;
    }

    .vc-adventure-experience-image {
        height: 180px;
    }

    .vc-adventure-more-content {
        padding: 25px 20px;
    }

    .vc-adventure-tips-grid {
        grid-template-columns: 1fr;
    }

    .vc-adventure-tip:nth-child(odd) {
        border-right: 0;
    }

}