/* footer.css — Footer layout and sitemap styles */
.footer {
    background-color: var(--color-charcoal);
    padding: 60px 0 40px;
    color: var(--color-white);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-light-green);
}

.footer-sitemap {
    list-style: none;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    padding: 0;
    margin: 0;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 18px;
    color: var(--color-light-green);
}
