/* Footer Styles - Passend zum App Design */
.app-footer {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: auto;
    background: linear-gradient(180deg, rgba(18, 126, 145, 0.12) 0%, rgba(4, 160, 238, 0.287) 100%);

    display: flex;
    align-items: top;
    justify-content: top;
    gap: 50px;
    padding: 45px 40px;
    margin-top: 50px;
    margin-bottom: 0px;
    z-index: 50;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.footer-link {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 14px 24px;

    position: relative;
    letter-spacing: 0.5px;
    background: transparent;
}

.footer-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.footer-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.1);
}

.footer-divider {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.25) 50%, transparent 100%);
}

.footer-credit {
    color:#ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-footer {
        height: 52px;
        gap: 14px;
        padding: 0 18px;
    }
    
    .footer-link {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .footer-divider {
        height: 22px;
    }
    
    .footer-credit {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .app-footer {
        height: 50px;
        gap: 12px;
        padding: 0 15px;
    }
    
    .footer-link {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .footer-credit {
        font-size: 10px;
        opacity: 0.8;
    }
}

@media (max-width: 400px) {
    .app-footer {
        height: 90px;
        gap: 10px;
        padding: 0 12px;
        padding-top: 5px;
        padding-left: 58px;
    }
    
    .footer-divider {
        height: 20px;
        opacity: 0.7;
    }
    
    .footer-link {
        font-size: 10px;
        padding: 3px 8px;
        text-align: top;
    }
    
    .footer-credit {
        font-size: 9px;
        padding-top: 4px;
    }
}

/* Animation fÃ¼r Footer on Load */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-footer {
    animation: footerSlideUp 0.4s ease-out;
}