/* ==========================================================================
   07-FOOTER.CSS - Footer Styles
   ========================================================================== */

footer {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(180deg, transparent, rgba(0, 3, 35, 0.5));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    margin-top: var(--spacing-3xl);
}

.footer-logo {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--light-blue), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(56, 112, 168, 0.1);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    transition: all var(--transition-fast);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-links a svg {
    width: 24px;
    height: 24px;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--mint-green);
    color: var(--dark-blue);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(40, 255, 176, 0.3);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

/* Spezifische Hover-Farben für jede Plattform */
.social-links a[aria-label="E-Mail"]:hover {
    background: linear-gradient(135deg, #ea4335, #fbbc05);
    color: white;
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fcaf45);
    color: white;
}

.social-links a[aria-label="Linktree"]:hover {
    background: linear-gradient(135deg, #39e09b, #43e97b);
    color: #1e2330;
}