/* Footer Styles (für alle Geräte) */
.mobile-footer {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    padding: 15px 0 5px;
    margin-top: 30px;
}

.mobile-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.mobile-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

/* Für Desktop-Version: Logo und Social Icons untereinander */
@media (min-width: 768px) {
    .mobile-footer-top {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .mobile-footer-logo {
        margin-bottom: 5px;
    }
    
    .mobile-footer-logo img {
        height: 100px; /* Doppelt so großes Logo für Desktop */
    }
}

.mobile-footer-logo {
    display: flex;
    align-items: center;
}

.mobile-footer-logo img {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.mobile-footer-social {
    display: flex;
    gap: 15px;
}

.mobile-footer-social a {
    color: #e63e60;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-footer-social a:hover {
    transform: scale(1.2);
}

.mobile-footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

.mobile-footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-footer-nav a:hover {
    color: #e63e60;
}

.mobile-footer-bottom {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 10px;
    margin-top: 5px;
}

.mobile-footer-bottom p {
    margin: 0;
}

.mobile-footer-compiaz {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 11px;
}

.heart {
    display: inline-block;
    color: #ff0000;
    margin-left: 5px;
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Media Query für Mobile Footer */
@media (max-width: 991px) {
    .footer {
        display: none;
    }
    
    .mobile-footer {
        display: block;
    }
}
