/* ===== باب الدخول (Intro Door) ===== */

#door-wrap {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
}

#door-wrap.door-active {
    pointer-events: all;
}

.door-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #0a5c2e; /* أخضر جدًا - عدّليه للدرجة اللي عايزاها */
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* تعطيل مؤقت للأنيميشن (مستخدم لما الصفحة ترجع من bfcache عشان الفتح يبقى فوري) */
#door-wrap.door-no-anim .door-panel,
#door-wrap.door-no-anim #door-center {
    transition: none !important;
}

.door-left  { left: 0;  transform: translateX(0); }
.door-right { right: 0; transform: translateX(0); }

#door-wrap.door-open .door-left  { transform: translateX(-100%); }
#door-wrap.door-open .door-right { transform: translateX(100%); }

/* اللوجو + الجملة في نص الشاشة */
#door-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 1;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 0 20px;
}

#door-wrap.door-open #door-center {
    opacity: 0;
}

#door-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: #eafff0;
    padding: 8px;
}

#door-tagline {
    color: #eafff0;
    font-size: 15px;
    font-weight: 500;
    max-width: 260px;
    line-height: 1.6;
}
