/* Footer styling with creek background and light text */
footer {
    background-color: var(--creek);
    color: var(--snow);
    border-top: none !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

footer a:hover,
footer a:focus {
    color: var(--wm-red) !important;
}

/* Animated underline on hover */
footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--wm-red);
    transition: width 0.3s ease;
}

footer a:hover::after,
footer a:focus::after {
    width: 100%;
}

/* Social icons if needed */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--snow) !important;
    transition: all 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
    background-color: var(--wm-red);
    color: var(--snow) !important;
}

.social-links a::after {
    display: none;
}