/*
 * Beyond 'Biz' Experience - Footer Styles
 * 
 * @package Beyond_Biz_Experience
 * @author Susan Robichaud
 * @copyright Copyright © 2024 Susan Robichaud International
 * @version 1.0.0
 */

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* Footer widget area - flexbox layout */
.footer-widget-area {
    display: flex !important;
    flex-wrap: nowrap !important; /* Changed from wrap to nowrap */
    gap: 25px !important; 
    max-width: 1600px !important;
    margin: 0 auto !important;
    justify-content: center !important; /* Changed from flex-start to center */
    align-items: flex-start !important; 
    padding: 0 40px !important; /* Equal padding on both sides */


}

/* Individual footer widgets - 4 equal columns */
.footer-widget {
    flex: 0 1 auto !important; 
    min-width: 220px !important; 
    max-width: none !important;
    display: block !important;
    vertical-align: unset !important;
    width: auto !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}


/* Footer Widget Images - Control sizing */
.footer-widget img {
    max-width: 200px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 10px !important;
}

/* Links styling */
.footer-widget a { 
    text-decoration: none !important;
    color: #ffffff !important;
}

.footer-widget a:hover {
    text-decoration: none !important;
    color: #66c8d3;
    opacity: 0.8 !important;
}

/* Copyright styling */
.footer-copyright {
    text-align: center !important;
    margin: 0 !important;
    padding: 20px !important;
    font-size: 18px !important;
}


.footer-copyright * {
    font-size: 18px !important;
}

/* Copyright link styling */
.footer-copyright a {
    color: inherit !important;
    text-decoration: none !important;
}

.footer-copyright a:hover {
    text-decoration: none !important;
    color: #66c8d3;
    opacity: 0.8 !important;
}

/* RESPONSIVE FOOTER - Already in your responsive.css but ensuring consistency */
@media (max-width: 767px) {
    .footer-widget-area {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    
    .footer-widget {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
}