/* static/css/footer.css */
/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #ffdd40;
}

.footer-logo small {
    font-size: 0.8rem;
    color: #bdc3c7;
    font-weight: normal;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffdd40;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #3a506b;
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-links {
        align-items: flex-start;
    }
}
