/* Footer styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    height: 10vh;
    overflow: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

/* Social icons in the footer */
.social-icons-footer a {
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons-footer a:hover {
    color: #FFC53C; /* Change color on hover */
}

/* Copyright text */
.copyright {
    text-align: center;
    font-size: 16px;
}

/* Contact info styling */
.contact-info {
    font-size: 16px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFC53C; /* Change color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

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

    footer {
        background-color: #000;
        color: #fff;
        padding: 20px 0;

        width: 100%;
        height: 30vh;
    }
    .social-icons-footer a {
        font-size: 20px;
        margin-right: 10px;
    }

    .copyright {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .contact-info {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 15px;
        font-family: "poppins";
    }

}
