/* در فایل about-style.css یا بخش استایل */
.site-footer {
    background: linear-gradient(135deg, #f8f9fa 50%, #e8f1f3 50%);
    padding: 3rem 2rem;
    /* border-top: 3px solid var(--accent); */
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(43, 92, 111, 0.2));
    transition: 0.3s;
}

.social-link:hover .social-icon {
    filter: drop-shadow(0 8px 20px rgba(255, 166, 48, 0.4));
}

.social-link span {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.social-link span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.social-link:hover span::after {
    width: 100%;
}

.footer-copyright p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 2rem;
    position: relative;
}

.footer-copyright p::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent);
}

.footer-copyright a {
    position: relative;
    display: block;
    color: purple;
    transition: all 0.5s;
    padding: 10px;
}

.footer-copyright a::after {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    /* background: black; */
    /* background: #d1eff5; */
    background-color: var(--accent);
    left: 0;
    top: 0;
    transform: skew(-19deg);
    transition: all 0.5s;
    z-index: -1;
    border-radius: 10px;
}
.footer-copyright:hover a::after {
    width: 100%;
    /* box-shadow: 0 3px 3px black; */
    transform: skew(-19deg);
}

.footer-copyright a:hover {
    transform: translateX(-5px);
    color: rgb(251, 255, 0);
    color: purple;
    font-weight: bolder;
    /* text-shadow: 0 3px 3px black; */
}

/* ریسپانسیو */
@media (max-width: 767px) {
    .footer-social {
        flex-direction: column;
        gap: 2rem;
    }
    
    .social-link {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-icon {
        margin-bottom: 0;
    }
}