/* ============ FOOTER ============ */

footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h2,
.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #5e4b3c;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #333;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
    color: #a0724f;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-section {
        max-width: 90%;
    }
}
