/* =====================================================
   EL MORDJENE - VIDEO HERO
   مستقل عن بنر سلة
   ===================================================== */

/* منع ظهور الـ Hero قبل جاهزيته */
.elm-video-hero {
    position: relative;
    width: 100%;
    height: 528px;
    overflow: hidden;
    background: #000;

    opacity: 0;
    transition: opacity .25s ease;
}

.elm-video-hero.elm-ready {
    opacity: 1;
}


/* الفيديو */
.elm-video-hero video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}


/* طبقة السواد */
.elm-video-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.62);

    z-index: 2;
    pointer-events: none;
}


/* محتوى النص */
.elm-video-hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 900px;

    text-align: center;

    color: #fff;

    z-index: 5;

    direction: rtl;
}


/* العنوان */
.elm-video-hero-title {
    margin: 0;

    color: #fff !important;

    font-size: clamp(28px, 4vw, 58px);

    font-weight: 700;

    line-height: 1.35;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, .9);

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.elm-video-hero-title.show {
    opacity: 1;

    transform: translateY(0);
}


/* الوصف */
.elm-video-hero-description {
    margin: 14px 0 0;

    color: #fff !important;

    font-size: clamp(15px, 1.5vw, 22px);

    line-height: 1.7;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, .9);

    opacity: 0;

    transform: translateY(15px);

    transition:
        opacity .6s ease .1s,
        transform .6s ease .1s;
}

.elm-video-hero-description.show {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   الجوال
   ===================================================== */

@media (max-width: 768px) {

    .elm-video-hero {
        height: 300px;
    }

    .elm-video-hero video {
        object-fit: cover;
        object-position: center center;
    }

    .elm-video-hero-overlay {
        background: rgba(0, 0, 0, 0.64);
    }

    .elm-video-hero-content {
        width: 88%;
    }

    .elm-video-hero-title {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.4;
    }

    .elm-video-hero-description {
        font-size: 15px;
    }
}


/* =====================================================
   منع أي مسافة غير مرغوبة حول الـ Hero
   ===================================================== */

.elm-video-hero + * {
    margin-top: 0;
}


/* =====================================================
   تحسين الجوال
   ===================================================== */

@media (max-width: 480px) {

    .elm-video-hero {
        height: 300px;
    }

    .elm-video-hero-content {
        width: 90%;
    }

    .elm-video-hero-title {
        font-size: 27px;
    }

    .elm-video-hero-description {
        font-size: 14px;
    }
}