
footer {
    width: 100%;
    background-color: #111111;
    color: #d6d6d6;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #252525;
    margin-top: 30px;
    padding-top: 30px;
}

footer .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer .footer-left {
    display: flex;
    align-items: center;
}

footer .footer-left a {
    display: flex;
    align-items: center;
}

footer .footer-left img {
    width: 40px;
    height: auto;
    border-radius: 5px;
    margin-right: 10px;
}

footer .footer-left h3 {
    font-size: 20px;
    color: #f1f1f1;
    margin: 0;
}

footer .footer-left span {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

footer .footer-links {
    display: flex;
    gap: 25px;
}

footer .footer-links a {
    text-decoration: none;
    color: #d6d6d6;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #ffffff;
}

footer .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

footer .footer-social img {
    width: 25px;
    height: 25px;

    /* Gold icons only */
    filter: brightness(0) saturate(100%)
            invert(72%)
            sepia(45%)
            saturate(700%)
            hue-rotate(5deg)
            brightness(92%)
            contrast(90%);

    transition: transform 0.3s ease, opacity 0.3s ease;
}

footer .footer-social img:hover {
    transform: scale(1.2);
    opacity: 0.75;
}

footer .copy-text {
    font-size: 14px;
    color: #888888;
    text-align: center;
    margin-top: 10px;
}

footer .copy-text a {
    color: #bdbdbd;
}

footer .copy-text a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-left {
        margin-bottom: 20px;
    }

    footer .footer-links {
        align-items: center;
        gap: 10px;
    }

    footer .footer-social {
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 360px) {
    footer .footer-links {
        flex-direction: column;
    }
}

footer a {
    text-decoration: none;
    color: #d6d6d6;
    font-weight: bold;
    letter-spacing: 0.5px;
}

footer a:hover {
    color: #ffffff;
}
 
