/* ============================================================
   Full-bleed Video showcase page (ZHA-inspired)
   ============================================================ */
.zha-video-page {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 380px;
    overflow: hidden;
    background-color: var(--black-01);
}

.zha-video-page .carousel-inner,
.zha-video-page .carousel-item {
    width: 100%;
    height: 100%;
}

.zha-video-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.zha-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zha-video-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.zha-video-label {
    position: absolute;
    top: 130px;
    left: 40px;
    z-index: 2;
    color: var(--white-01);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.zha-video-caption {
    position: absolute;
    bottom: 50px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

.zha-video-caption h2 {
    color: var(--white-01);
    font-size: clamp(1.6rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.15;
    margin: 0 0 20px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    word-break: break-word;
}

.zha-video-caption .my-btn.btn-02 {
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--white-01);
    border-radius: 0;
    color: var(--white-01);
    padding: 14px 38px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .3s ease;
    text-align: center;
}

.zha-video-caption .my-btn.btn-02:hover,
.zha-video-caption .my-btn.btn-02:active {
    background-color: var(--color-01);
    border-color: var(--color-01);
    color: var(--white-01);
}

/* ---------- Tablet ---------- */
@media (max-width: 991px) {
    .zha-video-label {
        top: 110px;
        left: 28px;
        font-size: .75rem;
        letter-spacing: 3px;
    }
    .zha-video-caption {
        left: 28px;
        right: 28px;
        bottom: 36px;
    }
    .zha-video-caption h2 {
        margin-bottom: 16px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 575px) {
    .zha-video-page {
        min-height: 100vh;
        min-height: 100dvh;
    }
    .zha-video-label {
        top: 88px;
        left: 18px;
        font-size: .65rem;
        letter-spacing: 2px;
    }
    .zha-video-page::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.65) 100%);
    }
    .zha-video-caption {
        left: 18px;
        right: 18px;
        bottom: 24px;
    }
    .zha-video-caption h2 {
        font-size: 1.6rem;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }
    .zha-video-caption .my-btn.btn-02 {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: .7rem;
        letter-spacing: 2px;
    }
}

/* ---------- Reduced-data: skip the autoplaying video on metered/slow connections ---------- */
.zha-video-page.zha-save-data .zha-video-bg {
    display: none;
}
.zha-video-page.zha-save-data,
.zha-video-page.zha-save-data .zha-video-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
