/* ...existing code... */
.site-footer {
    background: #111;
    color: #fff;
    padding: 32px 2px 16px 2px;
    text-align: center;
    margin-top: 48px;
    font-family: 'Playfair Display', serif;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 1px;
}

.footer-link {
    color: #fff;
    margin: 0 8px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.footer-link.facebook:hover { color: #1877f3; }
.footer-link.instagram:hover { color: #e4405f; }
.footer-link.spotify:hover { color: #1db954; }
.footer-link.soundcloud:hover { color: #ff5500; }

.footer-copyright {
    font-size: 0.95rem;
    color: #bbb;
    margin-top: 8px;
    letter-spacing: 1px;
}
/* ...existing code...