/* ===== FOOTER STYLES ===== */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #ffffff;
    font-family: 'Times New Roman', Verdana, sans-serif;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.8rem 0.5rem;
    margin: 0 auto;
    width: 97%;
    height: 8.5rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    line-height: 1;
    direction: ltr;
}

/* حذف سایه‌های اضافی و استفاده از opacity برای زیبایی */
.site-footer a {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 3px 3px 3px #400040;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-footer a:hover {
    color: #f1c40f;
    border-bottom-color: #f1c40f;
    text-shadow: 0 0 8px rgba(241, 196, 15, 0.6);
}

/* جداکننده با CSS (به جای خط تیره) */
.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    width: 60%;
    margin: 0.8rem auto;
}

/* استایل عنوان Founder & Chief Architect */
.founder-title {
    font-size: 0.7rem;
    font-weight: normal;
    opacity: 0.85;
    display: inline-block;
    margin-left: 0.3rem;
    text-shadow: 3px 3px 3px #400040;
}

/* استایل حقوقی */
.legal-text {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-footer {
        font-size: 0.75rem;
        padding: 0.8rem 0.3rem;
        width: 100%;
        border-radius: 0;
    }
    .founder-title {
        font-size: 0.6rem;
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
    }
    .footer-divider {
        width: 80%;
    }
}

/* ===== PRINT STYLES ===== 
@media print {
    .site-footer {
        background: #ffffff !important;
        color: #000000 !important;
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
    .site-footer a {
        color: #000000 !important;
        border-bottom: 1px dotted #000;
    }*/
}