/* =========================================================
   VISIT CHAMOLI
   CUSTOM HERO SECTION
   File: assets/css/module-css/vc-hero.css
========================================================= */


/* =========================================================
   HERO WRAPPER
========================================================= */

.vc-hero-section {
    position: relative;

    width: 100%;
    min-height: 570px;

    overflow: hidden;

    background: #0b2538;

    color: #ffffff;

    isolation: isolate;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.vc-hero-background {
    position: absolute;

    inset: 0;

    z-index: -2;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #0b2538;
}


/* =========================================================
   BACKGROUND SLIDES
========================================================= */

.vc-hero-bg-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    opacity: 0;

    transition: opacity 1.2s ease-in-out;

    transform: scale(1.01);
}


/* =========================================================
   SLIDE 1
========================================================= */

.vc-hero-bg-slide-1 {
    background-image: url("../../images/banner/banner-1.jpg");
}


/* =========================================================
   SLIDE 2
========================================================= */

.vc-hero-bg-slide-2 {
    background-image: url("../../images/banner/banner-2.jpg");
}


/* =========================================================
   SLIDE 3
========================================================= */

.vc-hero-bg-slide-3 {
    background-image: url("../../images/banner/banner-3.jpg");
}


/* =========================================================
   ACTIVE SLIDE
========================================================= */

.vc-hero-bg-slide.active {
    opacity: 1;
}


/* =========================================================
   DARK CINEMATIC OVERLAY
========================================================= */

.vc-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(4, 20, 34, 0.88) 0%,
            rgba(4, 20, 34, 0.68) 28%,
            rgba(4, 20, 34, 0.20) 60%,
            rgba(4, 20, 34, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 19, 32, 0.45) 0%,
            rgba(3, 19, 32, 0.05) 35%,
            rgba(3, 19, 32, 0.45) 100%
        );
}


/* =========================================================
   MAIN HERO CONTAINER
========================================================= */

.vc-hero-container {
    position: relative;

    width: 100%;
    max-width: 1280px;

    min-height: 570px;

    margin: 0 auto;

    padding: 125px 40px 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


/* =========================================================
   LEFT HERO CONTENT
========================================================= */

.vc-hero-content {
    position: relative;

    z-index: 3;

    width: 62%;
    max-width: 720px;

    margin-top: 20px;
}


/* =========================================================
   WELCOME TEXT
========================================================= */

.vc-hero-welcome {
    display: block;

    margin-bottom: 0;

    color: #f6b52d;

    font-family: "Seaweed Script", cursive;

    font-size: 42px;

    font-weight: 400;

    line-height: 1.05;

    transform: rotate(-2deg);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.vc-hero-title {
    margin: 2px 0 4px;

    color: #ffffff;

    font-family: "Urbanist", sans-serif;

    font-size: clamp(70px, 7vw, 108px);

    font-weight: 900;

    letter-spacing: -4px;

    line-height: 0.9;

    text-transform: uppercase;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   TAGLINE
========================================================= */

.vc-hero-tagline {
    margin: 15px 0 14px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;

    font-weight: 400;

    line-height: 1.2;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.vc-hero-description {
    max-width: 610px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.94);

    font-family: "Inter", sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.65;

    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   HERO CTA AREA
========================================================= */

.vc-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.vc-hero-btn {
    min-height: 49px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding: 0 20px;

    border-radius: 7px;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.25px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.vc-hero-btn-primary {
    background: #f5b82e;

    border: 1px solid #f5b82e;

    color: #14283a;
}


.vc-hero-btn-primary:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #14283a;

    transform: translateY(-2px);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.vc-hero-btn-outline {
    background: rgba(5, 25, 40, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.72);

    color: #ffffff;
}


.vc-hero-btn-outline:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #14283a;

    transform: translateY(-2px);
}


/* =========================================================
   BUTTON ICON
========================================================= */

.vc-hero-btn i {
    font-size: 12px;

    transition: transform 0.3s ease;
}


.vc-hero-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RIGHT INFORMATION PANEL
========================================================= */

.vc-hero-info {
    position: relative;

    z-index: 3;

    width: 245px;

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    gap: 19px;
}


/* =========================================================
   INFORMATION ITEM
========================================================= */

.vc-hero-info-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    min-height: 43px;
}


/* =========================================================
   INFORMATION ICON
========================================================= */

.vc-hero-info-icon {
    width: 32px;

    min-width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 17px;

    border: 1px solid rgba(255, 255, 255, 0.72);

    border-radius: 50%;
}


/* =========================================================
   INFORMATION CONTENT
========================================================= */

.vc-hero-info-content {
    display: flex;

    flex-direction: column;

    padding-top: 1px;
}


/* =========================================================
   INFORMATION LABEL
========================================================= */

.vc-hero-info-label {
    display: block;

    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.72);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 500;

    line-height: 1.25;
}


/* =========================================================
   INFORMATION VALUE
========================================================= */

.vc-hero-info-content strong {
    display: block;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   WATCH VIDEO
========================================================= */

.vc-hero-video {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-top: 2px;

    color: #ffffff;

    text-decoration: none;
}


.vc-hero-video-icon {
    width: 42px;

    min-width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.15);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.vc-hero-video-icon i {
    margin-left: 2px;

    font-size: 12px;
}


.vc-hero-video-text {
    display: flex;

    flex-direction: column;
}


.vc-hero-video-text strong {
    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


.vc-hero-video-text small {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.75);

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 400;
}


.vc-hero-video:hover {
    color: #ffffff;
}


.vc-hero-video:hover .vc-hero-video-icon {
    background: #f5b82e;

    border-color: #f5b82e;

    color: #14283a;

    transform: scale(1.06);
}


/* =========================================================
   SLIDER NAVIGATION
========================================================= */

.vc-hero-slider-nav {
    position: absolute;

    left: 50%;

    bottom: 18px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    transform: translateX(-50%);
}


/* =========================================================
   SLIDER DOT
========================================================= */

.vc-hero-slider-dot {
    width: 24px;

    height: 3px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.38);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}


.vc-hero-slider-dot.active {
    width: 38px;

    background: #ffffff;
}


/* =========================================================
   HERO CONTENT ANIMATION
========================================================= */

.vc-hero-content,
.vc-hero-info {
    animation: vcHeroFadeUp 0.9s ease both;
}


.vc-hero-info {
    animation-delay: 0.15s;
}


@keyframes vcHeroFadeUp {

    from {
        opacity: 0;

        transform: translateY(20px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media only screen and (max-width: 1400px) {

    .vc-hero-container {
        max-width: 1200px;

        padding-left: 30px;

        padding-right: 30px;
    }


    .vc-hero-content {
        width: 60%;
    }


    .vc-hero-title {
        font-size: 92px;
    }


    .vc-hero-welcome {
        font-size: 38px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media only screen and (max-width: 1199px) {

    .vc-hero-section {
        min-height: 530px;
    }


    .vc-hero-container {
        min-height: 530px;

        padding-top: 100px;

        padding-bottom: 70px;

        gap: 30px;
    }


    .vc-hero-content {
        width: calc(100% - 250px);
    }


    .vc-hero-title {
        font-size: 76px;

        letter-spacing: -3px;
    }


    .vc-hero-welcome {
        font-size: 34px;
    }


    .vc-hero-tagline {
        font-size: 25px;
    }


    .vc-hero-description {
        font-size: 14px;
    }


    .vc-hero-info {
        width: 225px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

    .vc-hero-section {
        min-height: 650px;
    }


    .vc-hero-background {
        background-position: 58% center;
    }


    .vc-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 20, 34, 0.92) 0%,
                rgba(4, 20, 34, 0.70) 55%,
                rgba(4, 20, 34, 0.45) 100%
            ),
            linear-gradient(
                180deg,
                rgba(3, 19, 32, 0.40) 0%,
                rgba(3, 19, 32, 0.30) 100%
            );
    }


    .vc-hero-container {
        min-height: 650px;

        padding-top: 90px;

        padding-bottom: 80px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 35px;
    }


    .vc-hero-content {
        width: 100%;

        max-width: 700px;

        margin-top: 0;
    }


    .vc-hero-info {
        width: 100%;

        max-width: 650px;

        margin-top: 0;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 15px 30px;
    }


    .vc-hero-video {
        grid-column: span 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .vc-hero-section {
        min-height: 720px;
    }


    .vc-hero-background {
        background-position: 62% center;
    }


    .vc-hero-container {
        min-height: 720px;

        padding: 95px 20px 65px;

        gap: 28px;
    }


    .vc-hero-content {
        width: 100%;
    }


    .vc-hero-welcome {
        font-size: 31px;
    }


    .vc-hero-title {
        margin-top: 5px;

        font-size: clamp(55px, 17vw, 76px);

        letter-spacing: -2px;
    }


    .vc-hero-tagline {
        margin-top: 13px;

        font-size: 21px;
    }


    .vc-hero-description {
        margin-bottom: 22px;

        font-size: 13px;

        line-height: 1.55;
    }


    .vc-desktop-break {
        display: none;
    }


    .vc-hero-actions {
        gap: 9px;
    }


    .vc-hero-btn {
        min-height: 45px;

        padding: 0 15px;

        gap: 11px;

        font-size: 9px;
    }


    .vc-hero-info {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 14px 15px;
    }


    .vc-hero-info-item {
        gap: 8px;
    }


    .vc-hero-info-icon {
        width: 29px;

        min-width: 29px;

        height: 29px;

        font-size: 13px;
    }


    .vc-hero-info-label {
        font-size: 8px;
    }


    .vc-hero-info-content strong {
        font-size: 10px;
    }


    .vc-hero-video {
        grid-column: 1 / -1;
    }


    .vc-hero-video-icon {
        width: 38px;

        min-width: 38px;

        height: 38px;
    }


    .vc-hero-slider-nav {
        bottom: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media only screen and (max-width: 480px) {

    .vc-hero-section {
        min-height: 760px;
    }


    .vc-hero-container {
        min-height: 760px;

        padding: 85px 16px 60px;
    }


    .vc-hero-welcome {
        font-size: 28px;
    }


    .vc-hero-title {
        font-size: 56px;
    }


    .vc-hero-tagline {
        font-size: 19px;
    }


    .vc-hero-description {
        font-size: 12px;
    }


    .vc-hero-actions {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .vc-hero-btn {
        width: 100%;
    }


    .vc-hero-info {
        grid-template-columns: 1fr;
    }


    .vc-hero-video {
        grid-column: auto;
    }

}