/*
    Newhouse Solution - Centered Footer Styles
    This file centralizes the footer styling for the entire website.
*/

#footer .footer-wrap {
    text-align: center; /* Center everything */
}
#footer .footer-logo {
    max-height: 50px; /* Adjust logo size */
    margin-bottom: 25px;
}
#footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
#footer .footer-nav li {
    display: inline-block;
    margin: 0 10px;
}
#footer .footer-nav a {
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
#footer .footer-contact {
    margin-bottom: 20px;
    color: #777;
}
#footer .footer-contact a {
    color: #555;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}
#footer .footer-contact a:hover {
    color: #000;
}
#footer .footer-contact span {
    margin: 0 15px;
}
#footer .footer-contact i {
    margin-right: 8px;
}
#footer .footer-social-centered {
    margin-bottom: 25px;
}
#footer .footer-social-centered a {
    font-size: 1.4em;
    margin: 0 12px;
    color: #555;
    transition: color 0.3s ease;
}
#footer .footer-social-centered a:hover {
    color: #000;
}
#footer .footer-copyright {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
    color: #777;
    font-size: 0.9em;
} 