/* FOOTER — Footer bar and social links. */

footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: white;
    color: #000000;
    transform: translateY(-3px);
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
