﻿/* ======= LITSSA / DALRRD Clean Footer ======= */

.footer {
    background-color: #f8f9fa; /* Neutral professional background */
    padding: 18px 0;
    border-top: 3px solid #007A33; /* Brand accent */
    font-size: 0.9rem;
}

/* Container */

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Text */

.footer-text {
    color: #495057; /* Professional neutral grey */
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

/* Footer Navigation */

.footer nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Footer Links */

.footer-link {
    color: #007A33;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.25s ease;
}

    /* Modern underline animation */

    .footer-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background-color: #007A33;
        transition: width 0.25s ease;
    }

    .footer-link:hover::after {
        width: 100%;
    }

    .footer-link:hover {
        color: #005A24;
    }

/* Responsive */

@media (max-width: 768px) {

    .footer nav {
        flex-direction: column;
        gap: 0.4rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }
}

.footer nav {
    border-top: 1px solid #dee2e6;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
}
