/* ===========================
   FOOTER
=========================== */
.site-footer {
    background-color: #3e2b28;
    color: #fff;
    padding: 60px 20px 40px;
    font-family: 'Quicksand', sans-serif;
    border-top: 1px solid #5a403c;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: #f3d9c4;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f2f2f2;
}

.footer-section ul{
    list-style-type: none;
    padding: 0;
    margin: 0;

}

.footer-section ul li {
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-section a {
    text-decoration: none;
    color: #f3e5d8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4b8a2;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #5a403c;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #a67c52;
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #d8d8d8;
}