/*
 * الفوتر الجديد: تصميم بسيط ونظيف
 * بدون transforms / backface / فلاتر / حركات تسبب وميضاً عند التمرير
 */

/* الفوتر الأساسي */
.site-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* صف الفوتر الرئيسي */
.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px 28px;
}

/* اسم الموقع + حقوق النشر */
.site-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer-site-name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.site-footer-copyright {
    font-size: 13px;
    opacity: 0.75;
}

.site-footer-copyright a {
    color: inherit;
    text-decoration: none;
}

.site-footer-copyright a:hover {
    text-decoration: underline;
}

/* روابط الفوتر */
.site-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-menu a {
    color: inherit;
    opacity: 0.85;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s ease;
}

.site-footer-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* معلومات المطور */
.site-footer-credit {
    font-size: 12.5px;
    opacity: 0.7;
}

.site-footer-credit a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer-credit i {
    font-size: 13px;
}

/* زر العودة للأعلى */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    filter: brightness(1.1);
}

.back-to-top i {
    font-size: 17px;
}

/* الشاشات الصغيرة */
@media (max-width: 768px) {
    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer-menu {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
