/* ============================================================
   VISIT CHAMOLI
   ABOUT PAGE
   VERSION 1.0

   IMPORTANT:
   Everything is scoped under #vc-about-page.
   This CSS does NOT style Map / Stats / Stories /
   Local Experiences sections.
============================================================ */


/* ============================================================
   BASE
============================================================ */

#vc-about-page {
    --vc-about-blue: #0a345c;
    --vc-about-blue-dark: #062b4e;
    --vc-about-green: #557b45;
    --vc-about-green-light: #d6df3d;
    --vc-about-text: #27343d;
    --vc-about-border: #dfe7eb;
    --vc-about-white: #ffffff;
    --vc-about-bg: #f6fafc;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: var(--vc-about-bg);

    color: var(--vc-about-text);
}


#vc-about-page *,
#vc-about-page *::before,
#vc-about-page *::after {
    box-sizing: border-box;
}


/* ============================================================
   HERO
============================================================ */

#vc-about-page .vc-about-hero {
    position: relative;

    width: 100%;

    min-height: 485px;

    overflow: hidden;

    background: #f7fafc;
}


#vc-about-page .vc-about-hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
    linear-gradient(
        90deg,
        #f7fafc 0%,
        rgba(247,250,252,.98) 25%,
        rgba(247,250,252,.82) 37%,
        rgba(247,250,252,.28) 55%,
        rgba(247,250,252,0) 70%
    ),
    url("https://visitchamoli.com/assets/images/about/about-chamoli.jpg");

    background-repeat: no-repeat;

    background-position:
        center,
        right center;

    background-size:
        cover,
        cover;
}


#vc-about-page .vc-about-hero-inner {
    position: relative;

    z-index: 2;

    width: min(1160px, 92%);

    min-height: 485px;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


#vc-about-page .vc-about-hero-content {
    width: 480px;

    padding: 40px 0;
}


#vc-about-page .vc-about-eyebrow {
    margin-bottom: 2px;

    color: var(--vc-about-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    line-height: 1;
}


#vc-about-page .vc-about-hero h1 {
    margin: 0;

    color: var(--vc-about-blue);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(62px, 7vw, 88px);

    font-weight: 700;

    line-height: .95;
}


#vc-about-page .vc-about-hero h2 {
    max-width: 520px;

    margin: 18px 0 0;

    color: #133a62;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 700;
}


#vc-about-page .vc-about-title-line {
    width: 55px;
    height: 3px;

    margin: 20px 0;

    background: var(--vc-about-green);
}


#vc-about-page .vc-about-hero p {
    max-width: 410px;

    margin: 0;

    color: #29363e;

    font-size: 16px;

    line-height: 1.55;
    
    padding-bottom: 40px;
}


/* ============================================================
   HIGHLIGHTS / STATS
============================================================ */

#vc-about-page .vc-about-highlights {
    position: relative;

    z-index: 10;

    width: min(1160px, 92%);

    margin: -75px auto 38px;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    padding: 18px 12px;

    border-radius: 15px;

    background: var(--vc-about-blue);

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);
}


#vc-about-page .vc-about-highlight {
    min-height: 110px;

    padding: 5px 16px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.30);
}


#vc-about-page .vc-about-highlight:last-child {
    border-right: 0;
}


#vc-about-page .vc-about-highlight-icon {
    margin-bottom: 7px;

    color: var(--vc-about-green-light);

    font-size: 28px;

    line-height: 1;
}


#vc-about-page .vc-about-highlight-number {
    margin-bottom: 5px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.1;

    font-weight: 700;
}


#vc-about-page .vc-about-highlight-year {
    font-size: 21px;
}


#vc-about-page .vc-about-highlight-text {
    color: #ffffff;

    font-size: 13px;

    line-height: 1.3;
}


#vc-about-page .vc-about-highlight-text small {
    display: block;

    margin-top: 1px;

    font-size: 10px;

    opacity: .9;
}


/* ============================================================
   COMMON CONTENT CARD
============================================================ */

#vc-about-page .vc-about-card {
    width: min(1160px, 92%);

    margin: 0 auto 14px;

    border:
        1px solid var(--vc-about-border);

    border-radius: 13px;

    overflow: hidden;

    background: rgba(255,255,255,.72);
}


/* ============================================================
   COMMON CONTENT
============================================================ */

#vc-about-page .vc-about-content,
#vc-about-page .vc-about-card-intro {
    padding: 25px;
}


#vc-about-page .vc-about-round-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vc-about-green);

    color: #ffffff;

    font-size: 20px;
}


#vc-about-page .vc-about-card h2 {
    margin: 0 0 14px;

    color: #12385e;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.15;
}


#vc-about-page .vc-about-card p {
    margin: 0 0 10px;

    color: #29363e;

    font-size: 14px;

    line-height: 1.5;
}


/* ============================================================
   SACRED JOURNEYS
============================================================ */

#vc-about-page .vc-about-sacred {
    display: grid;

    grid-template-columns: 260px minmax(0, 1fr);

    gap: 20px;

    padding: 14px;
}


#vc-about-page .vc-about-sacred .vc-about-card-intro {
    padding: 15px;
}


#vc-about-page .vc-about-place-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 6px;
}


#vc-about-page .vc-about-place {
    position: relative;

    min-height: 215px;

    overflow: hidden;

    border-radius: 9px;

    background: #dfe4e6;
}


#vc-about-page .vc-about-place img {
    width: 100%;
    height: 100%;

    min-height: 215px;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;
}


#vc-about-page .vc-about-place:hover img {
    transform: scale(1.06);
}


#vc-about-page .vc-about-place::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 60%;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0),
            rgba(0,0,0,.85)
        );
}


#vc-about-page .vc-about-place-overlay {
    position: absolute;

    z-index: 2;

    left: 12px;
    right: 8px;
    bottom: 10px;
}


#vc-about-page .vc-about-place-overlay h3 {
    margin: 0 0 2px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.2;
}


#vc-about-page .vc-about-place-overlay span {
    color: #ffffff;

    font-size: 10px;

    line-height: 1.2;
}


/* ============================================================
   NATURE
============================================================ */

#vc-about-page .vc-about-nature {
    display: grid;

    grid-template-columns:
        minmax(0, 46%)
        minmax(0, 54%);

    padding: 0;
}


#vc-about-page .vc-about-large-image {
    min-height: 300px;

    overflow: hidden;
}


#vc-about-page .vc-about-large-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


#vc-about-page .vc-about-nature .vc-about-content {
    padding: 28px;
}


#vc-about-page .vc-about-feature-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 18px;

    padding-top: 14px;

    border-top:
        1px solid #dce3e7;
}


#vc-about-page .vc-about-feature-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 5px 12px;
}


#vc-about-page .vc-about-feature-item + .vc-about-feature-item {
    border-left:
        1px solid #d4dde2;
}


#vc-about-page .vc-about-feature-item > i {
    color: #557b45;

    font-size: 23px;
}


#vc-about-page .vc-about-feature-item div {
    display: flex;

    flex-direction: column;
}


#vc-about-page .vc-about-feature-item strong {
    color: #19395d;

    font-size: 13px;

    line-height: 1.2;
}


#vc-about-page .vc-about-feature-item span {
    margin-top: 2px;

    color: #3b464d;

    font-size: 10px;

    line-height: 1.3;
}


/* ============================================================
   ADVENTURE
============================================================ */

#vc-about-page .vc-about-adventure {
    display: grid;

    grid-template-columns:
        minmax(0, 46%)
        minmax(0, 54%);

    padding: 0;
}


#vc-about-page .vc-about-adventure .vc-about-content {
    order: 1;
}


#vc-about-page .vc-about-adventure .vc-about-large-image {
    order: 2;
}


#vc-about-page .vc-about-adventure-list {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 8px;

    margin-top: 20px;
}


#vc-about-page .vc-about-adventure-list > div {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    text-align: center;
}


#vc-about-page .vc-about-adventure-list i {
    color: #557b45;

    font-size: 20px;
}


#vc-about-page .vc-about-adventure-list span {
    color: #2d3940;

    font-size: 10px;

    line-height: 1.2;
}


/* ============================================================
   CULTURE
============================================================ */

#vc-about-page .vc-about-culture {
    display: grid;

    grid-template-columns:
        minmax(0, 40%)
        minmax(0, 60%);

    padding: 0;
}


#vc-about-page .vc-about-culture .vc-about-large-image {
    min-height: 290px;
}


#vc-about-page .vc-about-culture .vc-about-content {
    padding: 26px;
}


#vc-about-page .vc-about-culture-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 15px;

    border-left:
        1px solid #d9e0e4;
}


#vc-about-page .vc-about-culture-list > div {
    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 14px;

    border-bottom:
        1px solid #d9e0e4;
}


#vc-about-page .vc-about-culture-list > div:nth-child(odd) {
    border-right:
        1px solid #d9e0e4;
}


#vc-about-page .vc-about-culture-list i {
    width: 28px;

    flex-shrink: 0;

    color: #557b45;

    text-align: center;

    font-size: 18px;
}


#vc-about-page .vc-about-culture-list span {
    color: #28363d;

    font-size: 11px;

    line-height: 1.3;
}


/* ============================================================
   FINAL EXPLORE SECTION
============================================================ */

#vc-about-page .vc-about-explore {
    position: relative;

    width: 100%;

    min-height: 335px;

    margin-top: 15px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;
}


#vc-about-page .vc-about-explore-bg {
    position: absolute;

    inset: 0;

    background-image:
        url("https://visitchamoli.com/assets/images/about/about-explore.jpg");

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;
}


#vc-about-page .vc-about-explore-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.88),
            rgba(255,247,238,.58),
            rgba(255,255,255,.82)
        );
}


#vc-about-page .vc-about-explore-content {
    position: relative;

    z-index: 2;

    width: min(800px, 90%);

    padding: 50px 20px;

    text-align: center;
}


#vc-about-page .vc-about-explore-heading {
    margin-bottom: 2px;

    color: #173c61;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    font-weight: 700;
}


#vc-about-page .vc-about-explore-content h2 {
    margin: 0 0 12px;

    color: #173c61;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
}


#vc-about-page .vc-about-explore-content p {
    max-width: 760px;

    margin: 0 auto 10px;

    color: #293840;

    font-size: 14px;

    line-height: 1.5;
}


#vc-about-page .vc-about-explore-script {
    max-width: 650px;

    margin: 0 auto;

    color: #4e7046;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    font-style: italic;

    line-height: 1.35;
}


#vc-about-page .vc-about-explore-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 16px;

    padding: 11px 24px;

    border-radius: 30px;

    background: #123b62;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px;

    transition:
        background .25s ease,
        transform .25s ease;
}


#vc-about-page .vc-about-explore-button:hover {
    background: #557b45;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    #vc-about-page .vc-about-hero {
        min-height: 470px;
    }


    #vc-about-page .vc-about-hero-inner {
        min-height: 470px;
    }


    #vc-about-page .vc-about-hero-bg {
        background-position:
            center,
            65% center;
    }


    #vc-about-page .vc-about-highlights {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        margin-top: -45px;
    }


    #vc-about-page .vc-about-highlight:nth-child(3) {
        border-right: 0;
    }


    #vc-about-page .vc-about-highlight:nth-child(4),
    #vc-about-page .vc-about-highlight:nth-child(5) {
        border-top:
            1px solid rgba(255,255,255,.15);

        margin-top: 8px;

        padding-top: 15px;
    }


    #vc-about-page .vc-about-sacred {
        grid-template-columns: 1fr;
    }


    #vc-about-page .vc-about-place-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }


    #vc-about-page .vc-about-nature,
    #vc-about-page .vc-about-adventure,
    #vc-about-page .vc-about-culture {
        grid-template-columns: 1fr;
    }


    #vc-about-page .vc-about-adventure .vc-about-content {
        order: 1;
    }


    #vc-about-page .vc-about-adventure .vc-about-large-image {
        order: 2;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    #vc-about-page .vc-about-hero {
        min-height: 590px;
    }


    #vc-about-page .vc-about-hero-bg {
        background-image:
            linear-gradient(
                180deg,
                rgba(247,250,252,.97) 0%,
                rgba(247,250,252,.88) 40%,
                rgba(247,250,252,.30) 68%,
                rgba(247,250,252,.04) 100%
            ),
            url("https://visitchamoli.com/assets/images/about/about-chamoli.jpg");

        background-position:
            center,
            center bottom;

        background-size:
            cover,
            auto 100%;
    }


    #vc-about-page .vc-about-hero-inner {
        min-height: 590px;

        align-items: flex-start;
    }


    #vc-about-page .vc-about-hero-content {
        width: 100%;

        padding-top: 42px;
    }


    #vc-about-page .vc-about-eyebrow {
        font-size: 34px;
    }


    #vc-about-page .vc-about-hero h1 {
        font-size: 60px;
    }


    #vc-about-page .vc-about-hero h2 {
        max-width: 350px;

        font-size: 18px;
    }


    #vc-about-page .vc-about-hero p {
        max-width: 340px;

        font-size: 14px;
    }


    /* HIGHLIGHTS */

    #vc-about-page .vc-about-highlights {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        margin-top: -35px;

        padding: 10px;
    }


    #vc-about-page .vc-about-highlight {
        min-height: 110px;

        padding: 8px;

        border-right:
            1px solid rgba(255,255,255,.25);

        border-bottom:
            1px solid rgba(255,255,255,.25);
    }


    #vc-about-page .vc-about-highlight:nth-child(2n) {
        border-right: 0;
    }


    #vc-about-page .vc-about-highlight:nth-child(4),
    #vc-about-page .vc-about-highlight:nth-child(5) {
        margin-top: 0;

        border-top: 0;
    }


    #vc-about-page .vc-about-highlight:last-child {
        grid-column: 1 / -1;

        border-right: 0;
        border-bottom: 0;
    }


    #vc-about-page .vc-about-highlight-number {
        font-size: 21px;
    }


    #vc-about-page .vc-about-highlight-year {
        font-size: 18px;
    }


    /* COMMON */

    #vc-about-page .vc-about-card {
        width: 92%;
    }


    #vc-about-page .vc-about-content,
    #vc-about-page .vc-about-card-intro {
        padding: 20px;
    }


    #vc-about-page .vc-about-card h2 {
        font-size: 23px;
    }


    /* SACRED */

    #vc-about-page .vc-about-sacred {
        padding: 8px;
    }


    #vc-about-page .vc-about-place-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 7px;
    }


    #vc-about-page .vc-about-place {
        min-height: 210px;
    }


    #vc-about-page .vc-about-place img {
        min-height: 210px;
    }


    #vc-about-page .vc-about-place:last-child {
        grid-column: 1 / -1;
    }


    /* NATURE */

    #vc-about-page .vc-about-large-image {
        min-height: 220px;
    }


    #vc-about-page .vc-about-feature-list {
        grid-template-columns: 1fr;
    }


    #vc-about-page .vc-about-feature-item {
        padding: 10px 0;
    }


    #vc-about-page .vc-about-feature-item + .vc-about-feature-item {
        border-left: 0;

        border-top:
            1px solid #dce3e7;
    }


    /* ADVENTURE */

    #vc-about-page .vc-about-adventure-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    /* CULTURE */

    #vc-about-page .vc-about-culture-list {
        grid-template-columns: 1fr;
    }


    #vc-about-page .vc-about-culture-list > div:nth-child(odd) {
        border-right: 0;
    }


    /* CTA */

    #vc-about-page .vc-about-explore {
        min-height: 390px;
    }


    #vc-about-page .vc-about-explore-heading {
        font-size: 29px;
    }


    #vc-about-page .vc-about-explore-content h2 {
        font-size: 20px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    #vc-about-page .vc-about-hero {
        min-height: 560px;
    }


    #vc-about-page .vc-about-hero-inner {
        min-height: 560px;
    }


    #vc-about-page .vc-about-hero h1 {
        font-size: 52px;
    }


    #vc-about-page .vc-about-eyebrow {
        font-size: 31px;
    }


    #vc-about-page .vc-about-place-grid {
        grid-template-columns:
            1fr 1fr;
    }


    #vc-about-page .vc-about-adventure-list {
        grid-template-columns:
            1fr 1fr;
    }


    #vc-about-page .vc-about-explore-heading {
        font-size: 27px;
    }

}