/* Footer */
.site-footer {
    background-color: #DFDEF7; /*Change this value to change the background color of the footer*/
    padding: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0.75rem 5%;
}

.footer-branding {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-contact h4,
.footer-legal h4,
.footer-social h4,
.footer-associations h4 {
    color: #49495C; /*Change this value to change the color of the header text elements in the footer*/
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-contact p, a,
.footer-legal p, a,
.footer-social p, a,
.footer-associations p, a {
    color: #49495C; /*Change this value to change the color of the simple text elements in the footer*/
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin-bottom: 0.7rem;
}

.footer-legal a {
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #A099D7;
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #392B2BFF; /*Change this value to change the background color of the social icons*/
    border-radius: 50%;
    color: #FFFFFFFF; /*Change this value to change the main color of the social icons*/
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #A099D7; /*Change this value to change the background color of the social icons when the mouse is hovering ontop*/
    transform: translateY(-3px);
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    padding: 0rem;
    border-top: 1px solid #FFFFFF1A;
    font-size: 0.9rem;
    color: #49495C; /*Change this value to change the color of the copyright text*/
}

/* Footer - Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-logo {
        display: flex;
        justify-content: center;
    }


    .footer-legal,
    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}