/* ====== About Section ====== */

:root {
    --about-bg: transparent;
    /* يمكنك تغييره لاحقاً */
    --about-shadow: rgba(0, 0, 0, .08);
    --accent: #ff7d00;
}

.about-section {
    position: relative;
    background: var(--about-bg);
    padding: clamp(40px, 8vw, 90px) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 40px);
}


/* الصورة */

.about-media {
    flex: 0 0 48%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--about-shadow);
    transform: translateY(30px);
    /* ⬅️ تبدأ من الأسفل */
    opacity: 0;
    transition: transform .9s ease, opacity .9s ease;
}

.about-media img {
    width: 100%;
    height: clamp(260px, 45vh, 460px);
    object-fit: cover;
    display: block;
}


/* عند ظهور القسم */

.about-section.in .about-media {
    transform: translateY(0);
    /* ⬅️ تطلع لفوق */
    opacity: 1;
}


/* النص */

.about-content {
    flex: 0 0 52%;
    color: #222;
    transform: translateX(60px);
    /* يبدأ من اليمين */
    opacity: 0;
    transition: transform .9s ease, opacity .9s ease;
}

.about-title {
    margin: 0 0 12px;
    font-size: clamp(20px, 3.6vw, 26px);
    line-height: 1.25;
    font-weight: 800;
    color: #ffb15a;
    /* انسجاماً مع السلايدر */
    text-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.about-text {
    margin: 0 0 18px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.9;
    color: #444;
}

.about-btn {
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background .25s, color .25s, transform .2s, border-color .25s;
}

.about-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}


/* عندما تصبح في المشهد (يضيفها JS) */

.about-section.in .about-media {
    transform: translateX(0);
    opacity: 1;
}

.about-section.in .about-content {
    transform: translateX(0);
    opacity: 1;
    transition-delay: .2s;
    /* تأخير صغير يجعل دخول النص بعد الصورة */
}


/* RTL: عكس الاتجاهات ووضع النص يمين */

html[dir="rtl"] .about-wrap {
    flex-direction: row-reverse;
}

html[dir="rtl"] .about-media {
    transform: translateX(60px);
    /* تبدأ من اليمين في العربية */
}

html[dir="rtl"] .about-content {
    transform: translateX(-60px);
    /* والنص من اليسار */
    text-align: right;
}


/* استجابة */

@media (max-width: 992px) {
    .about-wrap {
        flex-direction: column;
    }
    html[dir="rtl"] .about-wrap {
        flex-direction: column;
    }
    .about-media,
    .about-content {
        flex: 0 0 100%;
        transform: translateY(20px);
    }
    .about-section.in .about-media,
    .about-section.in .about-content {
        transform: translateY(0);
    }
}