/* footer.css - النسخة النهائية الموزعة حسب الطلب */

/* 1. الخط الذهبي السميك الفاصل العلوي */
.footer-top-border-thick {
    height: 6px;
    background: linear-gradient(90deg, transparent, #d4af37, #fcf6ba, #d4af37, transparent);
    box-shadow: 0 -3px 15px rgba(212, 175, 55, 0.6);
    position: relative;
    z-index: 5;
}

/* 2. حاوية الفوتر الرئيسية */
.main-footer {
    position: relative;
    padding: 50px 20px 20px;
    background: url('../photo-video/photo/zelidj.jpg') center/cover no-repeat fixed;
    overflow: hidden;
    color: #fcf6ba;
}

.footer-overlay-red {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(128, 0, 32, 0.65); /* أحمر عنابي شفاف بنسبة 65% */
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- السطر الأول: شعار الجمعية --- */
.footer-row-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.mini-gold-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.mini-gold-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- السطر الثاني: تحميل الموقع (يمين) وصفحاتنا (يسار) --- */
.footer-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    gap: 20px;
}

.footer-title {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 800;
}

/* زر التحميل على اليمين */
.footer-download-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* توسيط تحت العنوان */
}

.download-btn {
    background: linear-gradient(135deg, #d4af37, #b38728);
    color: #003223;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* التواصل الاجتماعي على اليسار */
.footer-social-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* توسيط تحت العنوان */
}

.social-icons-row {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.social-btn {
    font-size: 1.8rem;
    color: #d4af37;
    transition: 0.3s;
}

.social-btn:hover {
    color: #fff;
    transform: scale(1.2);
}

/* --- السطر الثالث: شركاؤنا --- */
.footer-row-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.sponsor-rectangle-frame {
    width: 160px;
    height: 85px;
    border: 2px solid #d4af37;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.sponsor-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* لملأ الإطار بالكامل */
    transition: opacity 0.8s ease;
}

/* --- السطر الرابع: حقوق النشر والخط الفاصل --- */
.copyright-divider {
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    margin: 30px auto 20px;
}

.footer-copyright {
    text-align: center;
    font-size: 1rem;
    color: #fcf6ba;
    letter-spacing: 0.5px;
}

/* --- التوافق مع الهواتف (Responsive) --- */
@media (max-width: 768px) {
    .footer-row-2 {
        flex-direction: column; /* ترتيب عمودي في الهاتف */
        gap: 40px;
    }
    
    .footer-title {
        font-size: 1.15rem;
    }

    .download-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .mini-gold-circle {
        width: 70px;
        height: 70px;
    }

    .sponsor-rectangle-frame {
        width: 140px;
        height: 75px;
    }
}