/* Footer Sosyal Medya Bölümü Stilleri */
.footer-social-section {
    background-color: #1a1a1a;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-social-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2d2d2d;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon-link:hover::before {
    opacity: 1;
}

.social-icon-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #3d3d3d;
}

.social-icon-link i {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icon-link:hover i {
    transform: scale(1.2);
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-social-section {
        padding: 30px 0;
    }
    
    .footer-social-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-social-icons {
        gap: 15px;
    }
    
    .social-icon-link {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-link i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-social-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-social-icons {
        gap: 12px;
    }
    
    .social-icon-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-link i {
        font-size: 16px;
    }
}

