/**
 * Footer CSS
 * 
 * Definiert die Footer-Styles mit Light Mode Design.
 */

.footer-main {
    background-color: var(--color-background);
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-text {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-text-made-in-germany {
    position: relative;
    display: inline-block;
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-text-made-in-germany::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform 0.3s ease;
}

.footer-text-made-in-germany:hover {
    color: var(--color-orange);
}

.footer-text-made-in-germany:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.footer-links {
    margin-top: 12px;
}

.footer-link {
    color: var(--color-link);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-link:hover {
    color: var(--color-link-hover);
}

