/* Palette 
#fff    White
#ede8e2 Ivory
#ead5c4 Champagne
#d3a5a5 Rose Gold
#a78b88 Taupe
#b47377 Mauve
#675553 Leather
*/

.footer {
    background-color: #675553;
    color: #ede8e2;
    padding: 40px 20px 20px;
    font-family: sans-serif;
}

.footer__container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__column {
    margin-bottom: 15px;
    font-size: 18px;
    columns: #FFF8E8;
}

.footer h3 {
    color: #d3a5a5;
    margin-bottom: 12px;
}

.opening-time li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.opening-time .day {
    min-width: 100px;
    font-weight: 600;
    color: #d3a5a5
}

.opening-time .time {
    color: #ede8e2;
    line-height: 1.4;
}

.social-link li {
    margin-bottom: 8px;
}

.footer a {
    color: #ede8e2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.social-link a i {
    width: 18px;
    margin-right: 10px;
    text-align: center;
}

.footer a:hover {
    color: #d3a5a5;
}

@media (max-width: 650px) {
    .footer__container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer__column {
        width: 100%;
        max-width: 320px;
    }

    .opening-time li {
        justify-content: center;
    }

    .social-link a {
        justify-content: center;
    }
}