/**
 * ====================================
 * קובץ: css/footer.css
 * ====================================
 * תיאור: עיצוב פוטר מינימליסטי
 * כולל: קישורים משפטיים וזכויות יוצרים
 */

/* ===== פוטר ראשי ===== */
.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 20px;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

/* ===== קישורים משפטיים ===== */
.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 3px;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ===== זכויות יוצרים ===== */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* ===== התאמות למובייל ===== */

/* טאבלטים */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 20px 15px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
        padding: 4px 8px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

/* מובייל קטן */
@media screen and (max-width: 480px) {
    .site-footer {
        padding: 18px 12px;
        position: relative;
        flex-shrink: 0; /* וידוא שהפוטר לא מתכווץ */
    }

    .footer-container {
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .footer-links .separator {
        display: none;
    }

    .footer-links a {
        font-size: 12px;
        width: 100%;
        text-align: center;
        display: block;
    }

    .footer-copyright p {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* ===== הדפסה ===== */
@media print {
    .site-footer {
        background: none;
        color: black;
        border-top: 2px solid #333;
        padding: 15px 0;
        margin-top: 30px;
    }

    .footer-links a {
        color: black;
    }

    .footer-copyright p {
        color: black;
    }
}

/* ===== נגישות מתקדמת ===== */

/* הפחתת תנועה */
@media (prefers-reduced-motion: reduce) {
    .footer-links a {
        transition: none;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* ניגודיות גבוהה */
@media (prefers-contrast: high) {
    .site-footer {
        background: #000;
        border-top: 3px solid white;
    }

    .footer-links a {
        border: 1px solid white;
    }
}

/**
 * ====================================
 * סוף קובץ: css/footer.css
 * ====================================
 */