/*
    File: shared/style/footerStyle.css
    Author: Yash Balotiya
    Description: This file contains the styling part of the footer.
    Created on: 13/10/2024
    Last Modified: 27/05/2025
*/

.footer {
    width: 100%;
    background-color: #01204e;
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    align-items: start;
    padding: 40px;
    color: #9d9d9d;
}

.footer-aes-logo {
    width: 100px;
    border-radius: 50%;
}

#footerLogoText p {
    font-size: 14px;
    color: orange;
    margin: 0;
}

.footer-child-2 {
    display: flex;
    align-items: center;
}

.footer-child-2 h1 {
    font-size: 30px;
    margin-left: 20px;
    text-align: center;
    color: #f7f7f7;
}

.footer-child-1 p {
    margin: 20px 0 0 0;
    text-align: center;
}

.footer-child-3 {
    display: flex;
    flex-direction: column;
}

.footer-child-3 b {
    color: #f7f7f7;
}

.footer-child-3 a {
    text-decoration: none;
    color: #9d9d9d;
    transition: 0.2s all ease-in-out;
}

.footer-child-3 a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-child-3:nth-child(3) {
    width: 353px;
}

.copywrite-div {
    width: 100%;
    height: 40px;
    background-color: black;
    color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copywrite-div i {
    margin: 0 10px;
}

.copywrite-div p {
    margin: 0;
    font-size: 16px;
}

/* Dev */
#AlgoDevsImg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 12px 0;
    cursor: pointer;
}

#ybH1 {
    font-size: 26px;
    color: white;
    cursor: pointer;
}

.devDiv {
    align-items: center;
    text-align: center;
}

.devDiv b {
    font-size: 20px;
}

.footer-child-3 a, .footer-child-4{
    margin: 4px 0;
}

#devNameTxt {
    font-size: 16px;
    color: #9d9d9d;
    text-decoration: none;
}

/* Responsive */
@media(max-width: 1400px) {
    .footer {
        padding: 20px;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .footer-child-2 {
        flex-direction: column;
    }

    .footer-child-2 h1 {
        margin: 8px 0 0 0;
        font-size: 24px;
    }

    footer div p,
    footer div a {
        font-size: 14px;
    }

    .devDiv h1 {
        font-size: 20px;
    }
}

@media(max-width: 1100px) {
    .footer-child-1 {
        display: none;
    }
}

@media(max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-child-1 {
        display: block;
    }

    .footer-child-1,
    .footer-child-2,
    .footer-child-3 {
        text-align: center;
        margin: 20px 0;
    }
}

@media(max-width: 400px) {
    .footer {
        padding: 0;
    }
}