/* Copyright Section */
.copyright-container {
    width: 100%;
    padding: 25px 0;
    text-align: center;
}

.copyright {
    text-transform: uppercase;
    color: var(--medium-grey)
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    padding: 50px 0;
    border-top: 11px var(--light-grey) solid;
    color: var(--medium-grey);
}

.site-footer a {
    color: var(--medium-grey);
}

.site-footer a:hover {
    color: var(--primary-color);
}

#footer-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.footer-contact, .footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.footer-info {
    gap: 20px;
}

.footer-logo {
    width:70px;
    height: 70px;
}
.social-icons {
    display: flex;
}
.social-icon {
    width:35px;
    height: 35px; 
}

.location {
    margin-top: 20px;
    text-align: center;
    white-space: nowrap;
}
 
@media (min-width: 769px) {
    #footer-container {
        flex-direction: row;
        justify-content: space-around;
        gap: unset;
    }
}