/* Footer Styles */

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-subtitle);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

/* Small inline email next to copyright */
.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-left: 0.6rem;
    font-family: var(--font-subtitle);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-links {
        gap: 1.5rem 1.25rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom a {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1.25rem 1.25rem;
    }

    .footer-links {
        gap: 1.25rem 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}
