/* Footer Social Icons & Improvements */

.footer-social-icons {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Flex container for icons */
.footer-social-icons ul {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.footer-social-icons li {
    margin: 0;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none;
    opacity: 1;
    color: #ffffff !important;
}

/* SVG Styling */
.footer-social-icons svg {
    width: 31px !important;
    height: auto;
    transition: all 0.3s ease;
}

/* Hover Effects for Icons: Minimal */
.footer-social-icons a:hover {
    background: transparent !important;
    opacity: 0.8;
}

/* General Footer Link Styling */
.site-footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.site-footer a:hover {
    text-decoration: underline !important;
}

/* Specific overrides if needed to ensure white color persists */
.site-footer .widget_nav_menu ul li a,
.site-footer .widget_links ul li a,
.site-footer .widget_meta ul li a,
.site-info a {
    color: #ffffff !important;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .footer-social-icons {
        padding: 15px 0;
    }
}