/* Footer Styles */
.footer {
    background-color: var(--aa-navy);
    color: var(--aa-light);
    padding: 3rem 0 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 2.5rem;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.footer-links ul li a {
    color: var(--aa-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--aa-gold);
}

.footer-ruler {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--aa-gray);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}