/* ///////////////////////////////////////
==================== DESKTOP STYLING ====================
/////////////////////////////////////// */



/* ====================
///////////////////////////////////////
Footer Styling ///////////////////////////////////////
///////////////////////////////////////
==================== */

footer{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: var(--site-footer-height);

    background-color: var(--site-footer-background);

    position: relative;

    z-index: 99;

    padding: 2.5rem 0 2.5rem 0;
}


.auburn_winds_footer_wrapper{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: flex-start;

    position: relative;

    padding: var(--default-wrapper-padding);

    width: 100%;
    max-width: var(--default-wrapper-max-width);

    height: 100%;
}


/* ====================
///////////////////////////////////////
Footer Container(s) Styling ///////////////////////////////////////
///////////////////////////////////////
==================== */
.auburn_winds_footer_container{
    display: flex;
    flex-direction: column;

    flex-basis: 30%;
    height: 100%;

    justify-content: flex-start;
    align-items: flex-start;
}

.auburn_winds_footer_container h4{
    color: var(--site-white-clr);
}

.auburn_winds_footer_seperator{
    display: flex;

    width: 100%;
    height: 1px;

    background-color: var(--site-border-on-white-clr-strong);

    margin: 1rem 0 1rem 0;
}

.auburn_winds_footer_central_container{
    margin: 0px 0px 0px 0px;
}


/* ====================
///////////////////////////////////////
Footer Navigation Styling ///////////////////////////////////////
///////////////////////////////////////
==================== */

.auburn_winds_footer_navigation_items{
    display: flex;

    width: 100%;
    height: auto;
}

.auburn_winds_footer_navigation_items{
    display: flex;
    flex-direction: column;

    list-style: none;
}

.auburn_winds_footer_navigation_items a{
    text-decoration: none;
    color: var(--site-white-clr);

    font-weight: 300;
}

.auburn_winds_footer_navigation_item, .auburn_winds_footer_navigation_items ul li{
    margin: 2px 0px 2px 0px;
}

/* Style implemented IF default menu used, basically when user has not defined thir own menu */
.auburn_winds_footer_navigation_items ul{
    list-style: none;
}

.footer_link_icon{
    filter: invert(100%);

    width: 15px;

    color: white;
}


/* ====================
///////////////////////////////////////
Footer Bottom Styling ///////////////////////////////////////
///////////////////////////////////////
==================== */

.auburn_winds_footer_btm{
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 50px;

    background-color: var(--site-footer-btm-background) !important;
}

.auburn_winds_footer_btm_wrapper{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 100%;

    max-width: var(--default-wrapper-max-width);
    padding: var(--default-wrapper-padding);
}

.auburn_winds_footer_btm_container{
    display: flex;
    flex-direction: column;

    height: 100%;

    justify-content: center;
    align-items: flex-start;
}

.auburn_winds_footer_btm_text{
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
    font-size: 1rem;

    color: var(--site-text-clr-transparent-white) !important;
}

.auburn_winds_footer_btm_text a{
    color: var(--site-text-clr-transparent-white) !important;
    text-decoration: underline;
}



/* ///////////////////////////////////////
==================== MOBILE STYLING ====================
/////////////////////////////////////// */

@media (max-width: 1050px) {
    /* Footer wrapper styling */
    .auburn_winds_footer_wrapper{
        display: flex;
        flex-direction: column;
    
        justify-content: flex-start;
        align-items: flex-start;
    
        position: relative;
    
        padding: var(--default-wrapper-padding);
    
        width: 100%;
        max-width: var(--default-wrapper-max-width);
    
        height: 100%;
    }

    /* Footer wrapper internal container styling */
    .auburn_winds_footer_container{
        width: 100%;
    }

    .auburn_winds_footer_central_container{
        margin: 60px 0px 60px 0px;
    }

    /* Footer seperator styling */
    .auburn_winds_footer_seperator{
        width: 2.5rem;
    }

    /* Footer bottom styling */
    .auburn_winds_footer_btm{
        flex-direction: column;
    
        width: 100%;
        height: 80px;

        padding: 20px 0px 20px 0px;
    
        background-color: var(--site-footer-btm-background) !important;
    }
    
    .auburn_winds_footer_btm_wrapper{
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;
    }

    .auburn_winds_footer_btm_container{
        flex-direction: column;
    
        height: 100%;
    }
}







/* ///////////////////////////////////////
==================== LAPTOP STYLING ====================
/////////////////////////////////////// */
@media (min-width: 1050px) and (max-width: 1500px) {

}




