/* Footer Styles */
:root {
    --swamp-green-dark: #2d3a15;
    --accent-frog: #7a9a4a;
    --text-light: #e8e5d8;
}

.footer {
    background: rgba(45, 58, 21, 0.95);
    padding: 2rem 0;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    border-top: 2px solid rgba(122, 154, 74, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-frog);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--accent-frog);
}

.footer-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer {
        padding: 1.5rem 0;
    }
}

