/* --- /css/components/footer.css --- */

.site-footer {
    background-color: #1a1a1a;
    color: #d9d9d9;
    padding-top: 50px;
    font-size: 0.95rem;
}

.site-footer a {
    color: #d9d9d9;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
    color: #ffffff;
}

/* --- Footer Top (Social Media) --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #444;
}

.footer-follow-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* UPDATED: Styling now targets the <img> tag and sets the size to 26px */
.footer-social-links a img {
    width: 26px;
    height: 26px;
    transition: opacity 0.2s ease-in-out;
}

.footer-social-links a:hover img {
    opacity: 0.8; 
}

/* --- Footer Main (Link Columns) --- */
.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-details p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}

/* --- Footer Bottom (Copyright) --- */
.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Responsive Styles --- */
@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}