/* ============================================
   Modern Footer
   ============================================ */

.footer {
    background: rgba(15, 36, 21, 0.9); /* Biraz daha opak - footer için */
}

[data-theme="light"] .footer {
    background: rgba(255, 255, 255, 0.7); /* Daha şeffaf - particles görünsün */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
}

.social-link {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: var(--spacing-md);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

