/* ================================================================
   FOOTER STYLES - verbraucher.app
   ================================================================ */

/* Main Footer Container */
.app-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    margin-top: auto; /* Pushes footer to bottom */
    font-size: 0.85rem;
    flex-shrink: 0; /* Prevents footer from shrinking */
    width: 100%; /* Volle Breite des Parents */
}

/* Main Footer Content Area */
.footer-main {
    padding: 1.5rem 0 1rem;
    background-color: #ffffff;
}

/* Footer container with same padding as main content */
.footer-container {
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: none;
    width: 100%;
}

/* Footer Headings */
.footer-heading {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-heading i {
    color: #6c757d;
}

/* Footer Description */
.footer-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Footer Features Badges */
.footer-features .badge {
    font-weight: normal;
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links.compact li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-links a i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Footer Contact Section */
.footer-contact {
    color: #6c757d;
}

.footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #007bff;
}

.footer-contact i {
    width: 20px;
    display: inline-block;
}

/* Status Indicators */
.footer-status {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

.footer-status h6 {
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-shadow-footer 2s ease-in-out infinite;
}

.status-dot.status-online {
    background-color: #28a745;
}

.status-dot.status-offline {
    background-color: #dc3545;
    animation: none;
}

.status-dot.status-warning {
    background-color: #ffc107;
}

@keyframes pulse-shadow-footer {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Technical Info Section */
.footer-tech-info {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 0.25rem;
    text-align: center;
}

/* Copyright Bar - Full Width */
.footer-bottom-full {
    background-color: #f1f3f5;
    color: #6c757d;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    border-top: 1px solid #dee2e6;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-heading {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .status-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-social {
        margin-top: 0.5rem;
    }
}

/* Dark Mode Support - deaktiviert für konsistentes helles Design
@media (prefers-color-scheme: dark) {
    // Dark mode styles auskommentiert
}
*/


/* Compact styles */
.footer-contact-compact {
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-contact-compact a {
    color: #495057;
    text-decoration: none;
}

.footer-contact-compact a:hover {
    color: #007bff;
}

.status-indicators-compact {
    font-size: 0.85rem;
}

.status-indicators-compact .status-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
