/* =========================================================
   VISIT CHAMOLI
   MUST VISIT DESTINATIONS
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.vc-destinations-section {
    position: relative;

    width: 100%;

    padding:
        95px 0
        100px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.vc-destinations-container {
    width:
        min(
            1400px,
            calc(100% - 80px)
        );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.vc-destinations-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 45px;
}


.vc-destinations-heading {
    max-width: 650px;
}


.vc-destinations-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #9b7427;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1;
}


.vc-destinations-title {
    margin: 0;

    color: #163740;

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -2px;
}


.vc-destinations-title span {
    display: block;

    color: #7a918c;

    font-weight: 500;
}


/* =========================================================
   HEADER CONTENT
========================================================= */

.vc-destinations-header-content {
    width: 340px;

    flex: 0 0 340px;
}


.vc-destinations-header-content p {
    margin: 0 0 17px;

    color: #687977;

    font-size: 12px;

    line-height: 1.7;
}


.vc-destinations-view-all {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #173740;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;
}


.vc-destinations-view-all i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #e0a92c;

    color: #ffffff;

    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.vc-destinations-view-all:hover i {
    transform:
        translateX(5px);
}


/* =========================================================
   GRID
========================================================= */

.vc-destinations-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1fr;

    grid-template-rows:
        285px
        285px;

    gap: 14px;
}


/* =========================================================
   CARD
========================================================= */

.vc-destination-card {
    position: relative;

    display: block;

    min-width: 0;

    overflow: hidden;

    border-radius: 6px;

    background: #193942;

    color: #ffffff;

    text-decoration: none;

    isolation: isolate;

    transition:
        transform 0.45s
        cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}


/* Featured card */

.vc-destination-card-featured {
    grid-row:
        span 2;
}


/* =========================================================
   IMAGE
========================================================= */

.vc-destination-image {
    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.vc-destination-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}


/* =========================================================
   OVERLAY
========================================================= */

.vc-destination-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(3,20,25,0.08) 0%,
            rgba(3,20,25,0.08) 35%,
            rgba(3,20,25,0.90) 100%
        );

    transition:
        background 0.45s ease;
}


/* =========================================================
   HOVER
========================================================= */

.vc-destination-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 22px 45px
        rgba(15,45,51,0.18);
}


.vc-destination-card:hover
.vc-destination-image img {
    transform:
        scale(1.08);

    filter:
        saturate(1.08);
}


.vc-destination-card:hover
.vc-destination-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(3,20,25,0.10) 0%,
            rgba(3,20,25,0.18) 32%,
            rgba(3,20,25,0.95) 100%
        );
}


/* =========================================================
   TOP META
========================================================= */

.vc-destination-top {
    position: absolute;

    top: 20px;
    left: 21px;
    right: 21px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.vc-destination-number {
    color:
        rgba(255,255,255,0.72);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.vc-destination-type {
    padding:
        6px 9px;

    border:
        1px solid
        rgba(255,255,255,0.28);

    border-radius: 30px;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);

    color:
        rgba(255,255,255,0.88);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.9px;
}


/* =========================================================
   CONTENT
========================================================= */

.vc-destination-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        24px;
}


.vc-destination-location {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,0.68);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.vc-destination-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.5px;
}


.vc-destination-content p {
    max-width: 280px;

    margin:
        8px 0 0;

    color:
        rgba(255,255,255,0.72);

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   ARROW
========================================================= */

.vc-destination-arrow {
    position: absolute;

    right: 24px;
    bottom: 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(255,255,255,0.30);

    border-radius: 50%;

    color: #ffffff;

    font-size: 9px;

    transition:
        all 0.35s ease;
}


.vc-destination-card:hover
.vc-destination-arrow {
    border-color: #e0a92c;

    background: #e0a92c;

    color: #173740;

    transform:
        translate(3px, -3px);
}


/* =========================================================
   FEATURED CARD
========================================================= */

.vc-destination-card-featured
.vc-destination-content {
    padding: 30px;
}


.vc-destination-card-featured
.vc-destination-content h3 {
    font-size: 38px;
}


.vc-destination-card-featured
.vc-destination-content p {
    max-width: 360px;

    font-size: 10px;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.vc-destinations-footer {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;
}


.vc-destinations-footer-line {
    height: 1px;

    flex: 1;

    background:
        #d9dfdc;
}


.vc-destinations-footer span {
    color: #879794;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    white-space: nowrap;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .vc-destinations-section {
        padding:
            75px 0
            80px;
    }


    .vc-destinations-container {
        width:
            calc(100% - 50px);
    }


    .vc-destinations-grid {
        grid-template-rows:
            255px
            255px;
    }


    .vc-destination-content {
        padding: 20px;
    }


    .vc-destination-card-featured
    .vc-destination-content {
        padding: 24px;
    }


    .vc-destination-card-featured
    .vc-destination-content h3 {
        font-size: 32px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vc-destinations-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }


    .vc-destinations-header-content {
        width: auto;

        max-width: 550px;
    }


    .vc-destinations-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-template-rows:
            340px
            260px
            260px;
    }


    .vc-destination-card-featured {
        grid-column:
            span 2;

        grid-row:
            span 1;
    }


    .vc-destination-card-featured
    .vc-destination-content h3 {
        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vc-destinations-section {
        padding:
            65px 0
            70px;
    }


    .vc-destinations-container {
        width:
            calc(100% - 30px);
    }


    .vc-destinations-title {
        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .vc-destinations-grid {
        display: grid;

        grid-template-columns:
            1fr;

        grid-template-rows:
            none;

        gap: 12px;
    }


    .vc-destination-card,
    .vc-destination-card-featured {
        grid-column:
            span 1;

        grid-row:
            auto;

        height: 310px;
    }


    .vc-destination-card-featured {
        height: 350px;
    }


    .vc-destination-card-featured
    .vc-destination-content {
        padding: 22px;
    }


    .vc-destination-card-featured
    .vc-destination-content h3 {
        font-size: 31px;
    }


    .vc-destination-content {
        padding: 20px;
    }


    .vc-destination-content h3 {
        font-size: 25px;
    }


    .vc-destinations-footer {
        margin-top: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vc-destinations-title {
        font-size: 34px;
    }


    .vc-destination-card,
    .vc-destination-card-featured {
        height: 280px;
    }


    .vc-destination-card-featured {
        height: 320px;
    }


    .vc-destination-content h3,
    .vc-destination-card-featured
    .vc-destination-content h3 {
        font-size: 24px;
    }


    .vc-destination-content p {
        font-size: 8px;
    }


    .vc-destination-arrow {
        width: 30px;
        height: 30px;

        right: 18px;
        bottom: 18px;
    }


    .vc-destinations-footer span {
        font-size: 6px;

        letter-spacing: 1px;
    }

}