/* ============================================================
   ABOUT SECTION — Final CSS
   Layout: Text Left (Aligned with Logo) | Video/Image Right
============================================================ */

/* 1) SECTION BASE */
#about-section .section {
    position: relative;
    width: 100vw;
    height: 100vh;
    left: 50%;
    transform: translateX(-50%);
    background: #050509; 
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 2) INNER CONTAINER (نفس محاذاة اللوجو 6vw) */
.about-inner {
    display: flex; 
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between; 
    padding: 0 6vw; 
    gap: 4vw; 
}

/* ===== 3) LEFT: النص ===== */
.about-content {
    flex: 0 0 45%; 
    max-width: 550px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.about-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 55px; /* توحيد المقاس مع قسم الإيجار */
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff; /* رجعنا اللون الأبيض */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 15px; /* رجعنا المقاس الأصلي بتاعك */
    color: #fff; /* رجعنا اللون الأبيض */
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* رجعنا المقاس الأصلي بتاعك */
    line-height: 1.8;
    color: #fff; /* رجعنا اللون الأبيض */
}

/* ===== 4) RIGHT: الميديا ===== */
.about-media {
    flex: 0 0 45%; 
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
}

.about-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px; 
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* ✅ الـ card اللي بتحتوي الفيديو */
.about-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px; 
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.55), 
        0 0 0 1px rgba(255, 255, 255, 0.07); 
    border: 1px solid rgba(201, 168, 76, 0.25); /* إطارك الأصلي */
}

.about-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 40px); 
    height: calc(100% + 40px);
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}

/* ===== 5) RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-content { flex: 0 0 48%; }
    .about-media { flex: 0 0 48%; }
    .about-title { font-size: 42px; }
}

@media (max-width: 900px) {
    .about-inner {
        flex-direction: column; 
        height: auto;
        padding: 100px 24px 80px;
        justify-content: center;
        gap: 40px;
    }

    .about-content {
        flex: none;
        max-width: 100%;
        text-align: center; 
        align-items: center;
    }

    .about-media {
        flex: none;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .about-title {
        font-size: 32px;
    }
}