/* Footer-Styles - Professioneller Footer über volle Breite */

.widget-footer {
    width: 100%;
    min-height: 80px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: none;
}

.widget-footer-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0 40px;
}

.widget-footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

.widget-footer-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.widget-footer-separator {
    color: #ffffff;
    margin: 0 20px;
    font-size: 16px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .widget-footer {
        min-height: 60px;
        padding: 20px 0;
    }
    
    .widget-footer-content {
        padding: 0 20px;
    }
    
    .widget-footer-link {
        font-size: 14px;
    }
    
    .widget-footer-separator {
        margin: 0 12px;
    }
}

@media (max-width: 576px) {
    .widget-footer {
        padding: 15px 0;
    }
    
    .widget-footer-content {
        padding: 0 15px;
    }
    
    .widget-footer-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .widget-footer-separator {
        margin: 0 8px;
    }
}