/* assets/css/footer.css */

/*
 * Footer Styles
 *
 * Separation of Concerns:
 * - این فایل فقط برای استایل Footer است
 * - هیچ منطقی ندارد
 * - فقط Presentation
 *
 * @author Senior Architect
 * @since 2026-04-06
 */

/* متغیرهای CSS */
:root {
    --footer-bg: #2c3e50;
    --footer-border: #34495e;
    --footer-text: #ecf0f1;
    --footer-text-muted: #95a5a6;
    --footer-link-hover: #ffffff;
    --footer-donation-bg: #34495e;
}

/* پایه */
.footer {
    background-color: var(--footer-bg);
    direction: rtl;
    font-family: 'Vazir', 'Tahoma', sans-serif;
    font-size: 0.9rem;
}

/* عنوان بخش‌ها */
.footer-title {
    color: var(--footer-text);
    font-weight: 600;
    font-size: 1rem;
}

/* لینک‌ها */
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    padding: 0.35rem 0;
}

.footer-links a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--footer-link-hover);
    padding-right: 5px;
    text-decoration: none;
}

/* آدرس */
.footer address {
    font-style: normal;
    line-height: 1.8;
}

.footer address a {
    transition: color 0.3s ease;
}

/* جعبه حمایت */
.donation-box {
    background-color: var(--footer-donation-bg);
    border-right: 3px solid #f39c12;
}

/* شبکه‌های اجتماعی */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--footer-text-muted);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--footer-link-hover);
    transform: translateY(-2px);
}

/* دکمه کپی */
.copy-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Alert */
.footer .alert {
    border-radius: 8px;
}

.footer .alert-warning {
    background-color: rgba(241, 196, 15, 0.15);
    border-color: #f39c12;
    color: #f39c12;
}

/* Responsive */
@media (max-width: 576px) {
    .footer {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }
}
