/* footer.css — Footer / Contact section */

footer {
    background-color: #0a0a0a;
    border-bottom: none;
    scroll-snap-align: start;
}

.footer-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-content p {
    color: #888;
    max-width: 500px;
    margin: 0 auto 30px;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-links a:active {
    transform: scale(0.9);
}

.social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.social-links a:hover img {
    filter: brightness(0) invert(1) brightness(1.4);
}

.copyright {
    font-size: 0.85rem;
    color: #444;
}