/* CUSTOM FONT */
/* Imports font from local folder */
@font-face {
    font-family: "Quiapo";
    src: url('/fonts/Quiapo/QuiapoFree2-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* FOOTER AREA STYLING */
footer {
    padding: 30px;

    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 20px;

    background-color: rgb(252, 239, 220);
    outline: solid 2px #01407e;
}


/* FOOTER SECTIONS CONTENT STYLING */
#footer-site-info {
    width: 25%;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

#footer-site-info img {
    width: 40%;

    padding-bottom: 20px;
}

/* Footer navigation links styling */
.footer-page-links {
    list-style: none;
}

.footer-page-links a {
    display: block;

    font-family: 'Quiapo', 'Trebuchet MS', Arial, sans-serif;
    font-size: 1.75rem;
    color: #01407e;
    text-decoration: none;
    text-transform: uppercase;
    text-align: left;
}

.footer-page-links a:hover {
    color: #fddf05;
}

/* Mobile view adjustments for footer navigation section */
@media (max-width: 800px) {
    footer {
        flex-direction: column;
        align-items: center;
    }

    #footer-site-info {
        width: 80%;
        padding: 40px;

        align-items: center;
        
        text-align: center;
    }

    #footer-site-info a {
        display: flex;
        justify-content: center;
    }

    #footer-site-info img {
        width: 50%;
    }

    .footer-page-links a {
        text-align: center;
    }
}