/* 
    File: styles/footer.css
    Author: Yash Balotiya
    Description: This file contains the styles for the footer component.
    Created on: 03/06/2025
    Last Modified: 03/06/2025
*/

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footerDiv {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px;
    background-color: #042b8d;
    gap: 100px;
}

.footerLogo {
    height: 100px;
}

.footerLinksDiv {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

.footerLinksDiv a {
    text-decoration: none;
    color: lightgray;
    transition: all 0.3s ease;
}

.copywriteDiv {
    background-color: black;
    color: white;
    text-align: center;
    padding: 8px;
}

/* Responsiveness */
@media (max-width: 1205px) {
    .footerDiv {
        padding: 60px 20px;
        gap: 40px;
    }
}

@media (max-width: 1000px) {
    .footerDiv {
        padding: 90px 20px;
        gap: 40px;
    }

    .footerLogo {
        display: none;
    }
}

@media (max-width: 700px) {
    .footerDiv {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .footerLogo {
        display: block;
        width: 150px;
        height: auto;
    }
}