.cafe-footer {
    background: #6B4F3B;
    color: #F3E9DE;
    padding: 60px 20px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-brand img {
    width: 160px;
    height: auto;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #DDC7B3;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1 1 200px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #C49C6C;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #F3E9DE;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #C49C6C;
}

.footer-contact p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.footer-social a {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #F3E9DE;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #C49C6C;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #DDC7B3;
}


/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .cafe-footer {
        padding: 40px 15px 15px;
    }

    .footer-brand img {
        width: 130px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        flex: 1 1 auto;
    }

    .footer-contact p {
        line-height: 1.5;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        gap: 30px;
    }

    .footer-brand {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        flex: 1 1 30%;
    }
}