/*
 * File: shared/style/FooterStyle.css
 * Author: Yash Balotiya
 * Description: This file contains all the styling part of the Footer
 * Created on: 31/07/2024
 * Last Modified: 27/11/2024
**/

/* Main Footer */
#footerDiv {
    width: 100%;
    background-color: #01204E;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    color: white;
    margin-top: 100px;
}

/* Santani Logo Information */
#foundationInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

#footerLogo {
    width: 175px;
    height: 175px;
    border-radius: 50%;
}

#foundationInfo p {
    font-size: 14px;
    margin: 8px 0 0 0;
}

/* Importatant & Usefull links */
.linksDiv {
    display: flex;
    flex-direction: column;
}

.linksDiv a,
#contactDiv a,
#contactDiv p {
    color: lightgray;
    text-decoration: none;
    font-size: 14px;
}

.linksDiv a:hover,
#contactDiv a:hover {
    color: white;
}

.linksDiv h3,
#contactDiv h3 {
    margin-bottom: 8px;
}

/* Contact Us */
#contactDiv p {
    color: white;
    margin: 0;
}

.fa-location-dot {
    margin-top: 16px;
}

.fa-location-dot,
.fa-envelope {
    font-size: 20px;
    color: #b8e3ff;
}

/* Dev Info */
#devInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#devInfo h1 {
    font-size: 24px;
    cursor: pointer;
}

#devInfo p {
    font-size: 12px;
    margin: 0;
}

#algoDevsImg {
    width: 125px;
    border-radius: 50%;
    margin: 12px 0;
    cursor: pointer;
}

#aboutDevHeader {
    text-align: center;
}

/* Copywrite */
#copyFooter {
    width: 100%;
    height: 50px;
    background-color: black;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

/* Notis */
#noteSection {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    background-color: #f3f2f3;
    position: fixed;
    left: 0;
    bottom: 0;
}

#noteSection img {
    width: 48px;
    margin-right: 8px;
}

#noteSection b,
#noteText {
    display: inline-block;
    margin: 0;
}

#noteSection b {
    padding: 0 20px 0 0;
}

@media only screen and (max-width: 768px) {
    footer {
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footerDiv {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .linksDiv {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footerDiv div {
        margin: 12px 0;
    }

    #devInfo img {
        width: 200px;
    }

    .divider {
        width: 100%;
        margin: 8px 0;
        height: 1px;
        background-color: lightgray;
    }

    #aboutDevHeader {
        font-size: 20px;
    }
}