/* Footer Styling */

footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #000;
    /* Dark background */
    color: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 10;
}


/* Social Icons */

footer .socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* space between icons */
    margin: 15px 0;
    flex-wrap: wrap;
    /* wrap on mobile */
}

footer .socials a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
}

footer .socials a:hover {
    color: #8B0000;
    /* hover color */
    transform: scale(1.2);
    /* slight pop on hover */
}


/* Built by RDS text */

footer .built-by {
    margin-top: 10px;
    font-size: 14px;
}

footer .built-by a {
    color: #8B0000;
    /* highlight your brand link */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer .built-by a:hover {
    color: #fff;
}


/* Responsive Styling */

@media (max-width: 600px) {
    footer {
        padding: 25px 15px;
    }
    footer .socials a {
        font-size: 16px;
        margin: 0 8px;
    }
    footer .built-by {
        font-size: 12px;
    }
}