footer {
    background: var(--secondary-brown);
    color: white;
}

footer .footer-container {
    padding: 0 16px;
    max-width: 1120px;
}

footer .footer-content {
    padding: 16px 0;
}

footer a {
    color: white;
}

footer a:hover {
    color: var(--text-color);
}

footer .mentions {
    margin-top: 8px;
    width: 100%;
}

footer .menus-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 32px 0;
}

footer h3 {
    margin-bottom: 16px;
    color: white;
    font-size: 15px;
}

footer .footer-menu nav,
footer .footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-menu nav a,
footer .footer-menu ul p {
    font-weight: 450;
    line-height: 1;
}

footer .bottom-container {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-top: var(--border);
}

footer .bottom-container p,
footer .bottom-container a {
    font-size: 12px;
    font-weight: 400;
}

footer .bottom-container nav {
    display: flex;
    gap: 24px;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        footer .footer-container {
            padding: 0 40px;
        }

        footer .footer-content {
            padding: 32px 0 ;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        footer .logo-container {
            width: max-content;
        }

        footer .mentions {
            margin: 8px 0;
            max-width: 300px;
        }

        footer .menus-container {
            padding: 0 0 40px 0;
            gap: 80px;
        }

        footer h3 {
            font-size: 16px;
        }

        footer .bottom-container {
            padding-top: 16px;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
        }

        footer .bottom-container p,
        footer .bottom-container a {
            font-size: 13px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            footer .footer-container {
                padding: 0 56px;
            }

            footer .mentions {
                max-width: 400px;
            }

            footer .menus-container {
                width: max-content;
                gap: 120px;
            }

            footer h3 {
                margin-bottom: 16px;
                font-size: 17px;
            }

            footer .footer-menu nav,
            footer .footer-menu ul {
                gap: 16px;
            }

            footer .bottom-container {
                width: 100%;
                padding-top: 16px;
            }

            footer .bottom-container p,
            footer .bottom-container a {
                font-size: 14px;
            }
        }