/* Footer */
footer {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}
.footer-logo {
    font-family: var(--font-main-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(var(--accent-primary-rgb), 0.5);
}
.footer-logo span { color: var(--accent-primary); }
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 8px rgba(var(--accent-primary-rgb),0.7);
}
.social-icons a {
    margin: 0 12px;
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration:none;
}
.social-icons a svg {
    width: 26px;
    height: 26px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}
.social-icons a:hover svg {
    fill: var(--accent-primary);
}
.social-icons a:hover {
    transform: translateY(-3px);
}
.copyright {
    font-size: 0.9rem;
    margin-top: 30px;
}

@media (max-width: 768px) {
	.footer-links { flex-direction: column; gap: 15px; }
}