﻿/* === MODERNER FOOTER === */
.modern-footer {
    background: linear-gradient(135deg, var(--neutral-950), var(--neutral-900));
    color: var(--text-inverse);
    position: relative;
    overflow: hidden;
}

    .modern-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        animation: backgroundMove 30s linear infinite;
    }

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-6);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section h3 {
    color: var(--text-inverse) !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    position: relative;
}

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
        border-radius: var(--radius-full);
    }

.footer-section p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

/* SOCIAL MEDIA LINKS */
.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-inverse);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: var(--primary-500);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }

    .social-link:hover::before {
        width: 100px;
        height: 100px;
    }

    .social-link:hover {
        transform: translateY(-4px) scale(1.1);
        border-color: var(--primary-400);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }

    .social-link i {
        position: relative;
        z-index: 1;
        transition: transform var(--transition-base);
    }

    .social-link:hover i {
        transform: scale(1.1);
    }

    /* PLATFORM-SPEZIFISCHE FARBEN */
    .social-link.linkedin:hover::before {
        background: #0077b5;
    }

    .social-link.linkedin:hover {
        border-color: #0077b5;
        box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
    }

    .social-link.facebook:hover::before {
        background: #1877f2;
    }

    .social-link.facebook:hover {
        border-color: #1877f2;
        box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
    }

/* QUICK LINKS */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .quick-links li {
        margin-bottom: var(--space-3);
    }

    .quick-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all var(--transition-fast);
        position: relative;
        padding-left: var(--space-6);
    }

        .quick-links a::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-400);
            transition: all var(--transition-fast);
        }

        .quick-links a:hover {
            color: var(--text-inverse);
            padding-left: var(--space-8);
        }

            .quick-links a:hover::before {
                color: var(--primary-300);
                transform: translateX(4px);
            }

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.875rem;
        transition: all var(--transition-fast);
        position: relative;
    }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-400);
            transition: width var(--transition-base);
        }

        .footer-links a:hover {
            color: var(--text-inverse);
        }

            .footer-links a:hover::after {
                width: 100%;
            }

/* DEVELOPER CREDIT */
.developer-credit {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    .developer-credit p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.75rem;
        margin: 0;
    }

    .developer-credit a {
        color: var(--primary-300);
        text-decoration: none;
        font-weight: 600;
        transition: all var(--transition-fast);
    }

        .developer-credit a:hover {
            color: var(--primary-200);
            text-decoration: underline;
        }

/* RESPONSIVE DESIGN FÜR FOOTER */
@media (max-width: 768px) {
    .footer-container {
        padding: var(--space-12) var(--space-4);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-4);
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
