/* 
Modern Footer Stylesheet 
*/

.modern-footer {
    background-color: #2c3e50; /* Dark blue-grey background */
    color: #bdc3c7; /* Light grey text for readability */
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.modern-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.modern-footer .footer-column h3 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 2px solid #3498db; /* Accent color border */
    padding-bottom: 10px;
}

.modern-footer .footer-column p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.modern-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer .footer-column ul li {
    margin-bottom: 10px;
}

.modern-footer .footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.modern-footer .footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.modern-footer .social-icons {
    margin-top: 20px;
}

.modern-footer .social-icons a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.2s ease;
}

.modern-footer .social-icons a:hover {
    transform: scale(1.1);
}

.modern-footer .social-icons img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%) brightness(150%); /* White monochrome icons */
    transition: filter 0.2s ease;
}

.modern-footer .social-icons a:hover img {
    filter: none; /* Full color on hover */
}

.modern-footer .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.9em;
    color: #7f8c8d;
}
