/* footer */
.footer {
    background-color: rgb(179, 147, 85);
    color: #000;
    font-family: "Overpass", serif;
    font-weight: 400;
    justify-content: center;
    text-transform: uppercase;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer .links {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 20px;
}

.footer .links a {
    font-weight: 400;
    font-style: normal;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: block;
}

.footer .links a:hover {
    color: white;
}

.footer .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: right;
    padding-bottom: 20px;
}

.footer .social-icons {
    display: flex;
}

.footer .social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.footer .social-icons a img:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .copyright {
        font-size: 1rem;
    }

    .footer .footer-content {
        text-align: center;
    }

    .footer .links {
        gap: 15px;
    }
}

.social a {
    font-weight: 400;
    font-style: normal;
    color: black;
    text-decoration: none;
    display: block;
}

.social a:hover {
    color: white;
}

.footer-link
{
    font-family: 'Sweet Sans Pro', sans-serif;
}