/* =========================================================
   VISIT CHAMOLI
   EXPERIENCES SECTION
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.vc-experiences-section {
    position: relative;

    width: 100%;

    padding: 100px 0 110px;

    background: #f7f5ef;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.vc-section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 45px;
}


.vc-section-heading-left {
    max-width: 620px;
}


.vc-section-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #c69624;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.2;
}


.vc-section-title {
    margin: 0;

    color: #183449;

    font-family: "Urbanist", sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 800;

    letter-spacing: -1.5px;

    line-height: 1.02;
}


.vc-section-heading-right {
    width: 390px;

    flex-shrink: 0;
}


.vc-section-heading-right p {
    margin: 0 0 17px;

    color: #68747c;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.7;
}


.vc-section-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #183449;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.vc-section-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}


.vc-section-link:hover {
    color: #c69624;
}


.vc-section-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   EXPERIENCE GRID
========================================================= */

.vc-experiences-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    grid-template-rows: 270px 270px;

    gap: 14px;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.vc-experience-card {
    position: relative;

    display: block;

    min-height: 270px;

    overflow: hidden;

    border-radius: 3px;

    color: #ffffff;

    text-decoration: none;

    background: #183449;
}


/* Large card */

.vc-experience-card-large {
    grid-row: 1 / 3;
}


/* =========================================================
   IMAGE
========================================================= */

.vc-experience-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


.vc-experience-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}


.vc-experience-card:hover .vc-experience-image img {
    transform: scale(1.07);
}


/* =========================================================
   OVERLAY
========================================================= */

.vc-experience-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(9, 28, 42, 0.03) 10%,
            rgba(9, 28, 42, 0.18) 35%,
            rgba(5, 21, 34, 0.90) 100%
        );

    transition:
        background 0.4s ease;
}


.vc-experience-card:hover .vc-experience-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(9, 28, 42, 0.10) 10%,
            rgba(9, 28, 42, 0.25) 35%,
            rgba(5, 21, 34, 0.94) 100%
        );
}


/* =========================================================
   CARD CONTENT
========================================================= */

.vc-experience-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 25px;

    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: flex-end;

    gap: 16px;
}


.vc-experience-number {
    align-self: flex-start;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Urbanist", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


.vc-experience-label {
    display: block;

    margin-bottom: 6px;

    color: #f5b82e;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.vc-experience-content h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-family: "Urbanist", sans-serif;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.1;
}


.vc-experience-content p {
    max-width: 430px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   ARROW
========================================================= */

.vc-experience-arrow {
    width: 40px;

    min-width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    color: #ffffff;

    font-size: 11px;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.vc-experience-card:hover .vc-experience-arrow {
    background: #f5b82e;

    border-color: #f5b82e;

    color: #183449;

    transform: translateX(4px);
}


/* =========================================================
   LARGE CARD TYPOGRAPHY
========================================================= */

.vc-experience-card-large .vc-experience-content {
    padding: 30px;
}


.vc-experience-card-large .vc-experience-content h3 {
    font-size: 36px;
}


.vc-experience-card-large .vc-experience-content p {
    max-width: 500px;

    font-size: 12px;
}


/* =========================================================
   DESKTOP
========================================================= */

@media only screen and (max-width: 1199px) {

    .vc-experiences-section {
        padding: 80px 0 90px;
    }


    .vc-section-heading {
        gap: 35px;
    }


    .vc-section-heading-right {
        width: 340px;
    }


    .vc-experiences-grid {
        grid-template-columns: 1.3fr 1fr 1fr;

        grid-template-rows: 240px 240px;
    }


    .vc-experience-card {
        min-height: 240px;
    }


    .vc-experience-content {
        padding: 20px;
    }


    .vc-experience-card-large .vc-experience-content {
        padding: 25px;
    }


    .vc-experience-card-large .vc-experience-content h3 {
        font-size: 30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

    .vc-section-heading {
        display: block;

        margin-bottom: 35px;
    }


    .vc-section-heading-right {
        width: 100%;

        max-width: 650px;

        margin-top: 18px;
    }


    .vc-experiences-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 300px 230px 230px;
    }


    .vc-experience-card-large {
        grid-column: 1 / 3;

        grid-row: auto;
    }


    .vc-experience-card-large .vc-experience-content h3 {
        font-size: 32px;
    }


    .vc-experience-card {
        min-height: 230px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .vc-experiences-section {
        padding: 65px 0 70px;
    }


    .vc-section-title {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .vc-experiences-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 12px;
    }


    .vc-experience-card,
    .vc-experience-card-large {
        grid-column: auto;

        grid-row: auto;

        min-height: 300px;
    }


    .vc-experience-content,
    .vc-experience-card-large .vc-experience-content {
        padding: 22px;
    }


    .vc-experience-content h3,
    .vc-experience-card-large .vc-experience-content h3 {
        font-size: 27px;
    }


    .vc-experience-content p,
    .vc-experience-card-large .vc-experience-content p {
        font-size: 11px;
    }


    .vc-experience-arrow {
        width: 36px;

        min-width: 36px;

        height: 36px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media only screen and (max-width: 480px) {

    .vc-experiences-section {
        padding: 55px 0 60px;
    }


    .vc-section-title {
        font-size: 34px;
    }


    .vc-section-heading-right p {
        font-size: 12px;
    }


    .vc-experience-card,
    .vc-experience-card-large {
        min-height: 280px;
    }


    .vc-experience-content {
        grid-template-columns: auto 1fr auto;

        gap: 10px;

        padding: 18px;
    }


    .vc-experience-number {
        font-size: 10px;
    }


    .vc-experience-label {
        font-size: 8px;
    }


    .vc-experience-content h3,
    .vc-experience-card-large .vc-experience-content h3 {
        font-size: 24px;
    }


    .vc-experience-content p,
    .vc-experience-card-large .vc-experience-content p {
        font-size: 10px;
    }

}