/* CAMPAIGN HERO SLIDER */

.nv-hero-campaign {

    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    background: #000;

}



.nv-campaign-slide {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    transition: opacity 1.5s ease-in-out, transform 6s ease-out;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 1;

}

.nv-campaign-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

/* Intro Slide (Noise/Chaos) */
.nv-slide-intro {
    background-color: #111;
    background-image: url('../../assets/img/hero/santis_hero_main_v2.png');
    /* 404 Fix */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide Specific Backgrounds */
.nv-slide-lab {
    background-image: url('../../assets/img/social/post1.jpg');
}

.nv-slide-hammam {

    background-image: url('../../assets/img/social/post2.jpg');

}



.nv-slide-therapy {

    background-image: url('../../assets/img/social/post3.jpg');

}



/* Overlay gradient for readability */

.nv-hero-overlay {

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 80%);

    z-index: 2;

    pointer-events: none;

}



/* Captions similar to the animatic */

.nv-hero-content-dynamic {

    position: absolute;

    bottom: 15%;

    left: 10%;

    z-index: 10;

    color: #fff;

    max-width: 800px;

    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}



.nv-hero-caption {

    font-family: var(--font-body);

    font-size: 14px;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--gold);

    margin-bottom: 20px;

    display: block;

    opacity: 0;

    transform: translateY(20px);

    transition: all 1s ease 0.5s;

    border-left: 3px solid var(--gold);

    padding-left: 15px;

}



.nv-hero-title-dynamic {

    font-family: var(--font-heading);

    font-size: 72px;

    line-height: 1.1;

    font-weight: 400;

    margin: 0;

    opacity: 0;

    transform: translateY(20px);

    transition: all 1s ease 0.8s;

}



/* Active State for Text */

.nv-campaign-slide.active .nv-hero-caption,

.nv-campaign-slide.active .nv-hero-title-dynamic {

    opacity: 1;

    transform: translateY(0);

}



/* Progress Bar */

.nv-campaign-progress {

    position: absolute;

    bottom: 0;

    left: 0;

    height: 4px;

    background: var(--gold);

    width: 0%;

    z-index: 20;

    transition: width 0.1s linear;

}



@media (max-width: 768px) {

    .nv-hero-title-dynamic {

        font-size: 42px;

    }



    .nv-hero-content-dynamic {

        bottom: 20%;

        left: 5%;

        width: 90%;

    }

}