:root {
    --primary-color: #497e76; /* Deine Hauptfarbe */
    --primary-dark: #2e635b; /* Dunklere Variante für Hover-Effekte */
    --primary-light: #8bc3bb;
    --secondary-color: #f3f4f6; /* Ein helles Grau */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Links */

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
    display: inline-block;

}

/* Bottom Bereich */

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Logo */

.footer-icon {
    height: 24px;
    width: 24px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        padding: 0 20px;  
    }

    .footer-bottom img {
        padding-right: 5px;
    }
}