/* ///////////////////////////////////////
==================== Font Imports ====================
/////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;600;700&family=Ysabeau+Infant:wght@100&display=swap');

/* 
font-family: 'Lexend', sans-serif - 100; 600; 700;
font-family: 'Ysabeau Infant', sans-serif - 100;
*/



/* ///////////////////////////////////////
==================== Global Styling ====================
/////////////////////////////////////// */

*{
    box-sizing: border-box;

    margin: 0;
    padding: 0;
}

body h1{
    font-family: 'Lexend', sans-serif;
    color: var(--site-title-clr-drk);
    font-size: var(--default-h1-size);
}

body h2{
    font-family: 'Lexend', sans-serif;
    color: var(--site-title-clr-drk);
    font-size: var(--default-h2-size);
    margin-bottom: 20px;
}

body h3{
    font-family: 'Lexend', sans-serif;
    color: var(--site-title-clr-drk);
    font-size: var(--default-h3-size);
    margin-bottom: 20px;
}

body h4{
    font-family: 'Lexend', sans-serif;
    color: var(--site-title-clr-drk);
    font-size: var(--default-h4-size);
    margin-bottom: 20px;
}

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

    color: var(--site-title-clr-drk);

    margin-bottom: var(--default_paragraph_spacer);
}

body a{
    font-family: 'Lexend', sans-serif;
    color: var(--site-orange-clr);
}

/* ///////////////////////////////////////
==================== Global Variables ====================
/////////////////////////////////////// */

:root{
    /* Size, Padding and Margin Variables */
    --site-header-height: 70px;
    --site-footer-height: auto;

    --default_paragraph_spacer: 0.8rem;
    --default_h1_spacer: 0.8rem;

    --default-wrapper-padding: 0px 20px 0px 20px;
    --default-wrapper-page-padding: 40px 20px 40px 20px;

    --default-wrapper-max-width: 70rem;
    --default-wrapper-post-width: 60rem;


    /* Colours & Shade Variables */
    --site-background: #ffffff;
    --site-foreground: #fefefe;
    --site-foreground-hover: #f8f8f8;

    --site-footer-background: #2e2e2e;
    --site-footer-btm-background: #424242;

    --site-foreground-dropdown-mob: #fefefe;
    --site-foreground-dropdown-hover-mob: #f5f5f5;

    --site-foreground-dropdown-sub-mob: #fcfcfc;
    --site-foreground-dropdown-hover-sub-mob: #f8f8f8;

    --site-border-on-white-clr: #ececec;
    --site-border-on-white-clr-strong: #7b7b7b;

    --site-white-clr: #f1f1f1;

    --site-orange-clr: #fad220;

    --site-title-clr-drk: #212121;
    --site-text-clr-drk: #1c1c1c;
    --site-text-clr-lighter: #3e3e3ec2;
    --site-text-clr-transparent-white: #ffffffc3;

    --site-menu-items-clr-drk: #2e2e2e;

    --site-icons-clr-drk: #212121;


    --default-h1-size: 40px;
    --default-h2-size: 35px;
    --default-h3-size: 30px;
    --default-h4-size: 25px;
}


/* ///////////////////////////////////////
==================== Global Animations ====================
/////////////////////////////////////// */

@keyframes topToBottomSmall{
    0%{
        transform: translateY(-20%);
    }
    100%{
        transform: translateY(0%);
    }
}


@keyframes dropDown{
    0%{
        opacity: 0;
        transform: translateY(-100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes hamBarActiveState{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(160deg);
    }
}


@keyframes slideInFromRight{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}


/* ///////////////////////////////////////
==================== Shortcut Styles ====================
/////////////////////////////////////// */

.link_no_underline{
    text-decoration: none;
}

.emph_element{
    color: var(--site-orange-clr) !important;
}


/* ///////////////////////////////////////
==================== Page/Single/Other Page Styles ====================
/////////////////////////////////////// */
body{
    display: block;
    flex-direction: column;

    height: auto;
    width: 100%;
}

/* <main> */
.auburn_winds_page{
    margin-top: var(--site-header-height) !important;
    top: 0px;

    display: flex;
    flex-direction: column;

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

    width: 100%;
    height: auto;

    position: relative;
}

/* Default page wrapper */
.auburn_winds_page_content_wrapper{
    display: flex;
    flex-direction: column;

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

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

    height: 100%;

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

    position: relative;
}

.site_content_seperator{
    display: flex;

    width: 100%;
    height: 1px;

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

    margin: 1.5rem 0 1.5rem 0;
}

/* ///////////////////////////////////////
==================== Sidebar Styles ====================
/////////////////////////////////////// */
/* Main sidebar container */
.auburn_winds_page_sidebar_container{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    margin: 0.5rem 0 0.5rem 0;
}

/* Sidebar Post stylings */
.auburn_winds_sidebar_main_content{
    display: flex;
    flex-direction: row;

    justify-content: space-between;

    width: 100%;
    height: auto;

}

.auburn_winds_h4_title_margin{
    margin-bottom: 0.8rem;
}

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

    list-style: none;

    flex-basis: 30%;

}

.auburn_winds_internal_sidebar_central_container{
    margin: 0px 40px 0px 40px;
}


/* ///////////////////////////////////////
==================== Sidebar Features Styles ====================
/////////////////////////////////////// */
.auburn_winds_sidebar_topic_container{
    display: flex;
    flex-direction: row;

    flex-wrap: wrap;
}

.auburn_winds_sidebar_topic_item{
    display: flex;

    width: auto;
    height: 40px;

    background-color: none;
    border: 1px solid var(--site-border-on-white-clr-strong);

    margin: 0px 10px 10px 0px;
    padding: 10px 15px 10px 15px;

    color: var(--site-text-clr-drk);
    text-decoration: none;

    font-family: 'Lexend';
    font-weight: 300;
    font-size: 0.9rem;
}

.auburn_winds_share_btns_container{
    display: flex;
    flex-direction: row;
    
    width: 100%;
    height: auto;
}

.auburn_winds_share_button{
    display: flex;
    
    height: 40px;
    width: 40px;

    margin: 0 10px 10px 0;
    padding: 5px;

    background-color: #ffffff00;

    border: none;
    cursor: pointer;

    position: relative;
    overflow: hidden;
}

.auburn_winds_share_button img{
    position: relative;
    overflow: hidden;
}

#facebook_btn_share{
    background-color: #1877f2 !important;
}

#twitter_btn_share{
    background-color: black !important;
}

/* ///////////////////////////////////////
==================== Default searchbar styling ====================
/////////////////////////////////////// */
.auburn_winds_default_search_box_container{
    display: flex;
    flex-direction: column;

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

    width: 100%;
}

.auburn_winds_default_search_box_input{
    display: flex;
    
    width: 100%;
    height: 40px;

    border: 1px solid var(--site-border-on-white-clr-strong);
    padding: 10px;

    font-family: 'Lexend';
    font-weight: 300;
    font-size: 0.9rem;
}

.auburn_winds_default_search_box_submit{
    display: flex;
    
    justify-content: center;
    align-items: center;

    background-color: #ffffff00;

    font-family: 'Lexend';
    font-weight: 300;
    font-size: 0.9rem;

    border: 1px solid var(--site-border-on-white-clr-strong);

    height: 30px;
    width: 5rem;

    text-align: right;

    padding: 0 10px 0 10px;
    margin: 10px 0 0 0 ;

    cursor: pointer;
}

/* ====================
///////////////////////////////////////
Breadcrumbs container styling ///////////////////////////////////////
///////////////////////////////////////
==================== */
.auburn_winds_breadcrumbs_container{
    margin-bottom: 0.5rem;
}

.auburn_winds_breadcrumbs p, .auburn_winds_breadcrumbs a{
    color: var(--site-text-clr-lighter) !important;
    font-size: 1rem;
}

.auburn_winds_breadcrumbs{
    display: flex;
    flex-direction: row;
}

.breadcrumb_seperator{
    margin: 0px 10px 0px 10px;
}

/* ====================
///////////////////////////////////////
Button styling ///////////////////////////////////////
///////////////////////////////////////
==================== */
.auburn_winds_basic_button{
    display: flex;

    width: 100px;
    height: 40px;

    background-color: #ffffff00;
    border: 1px solid var(--site-border-on-white-clr-strong);

    padding: 10px 15px 10px 15px;

    color: var(--site-text-clr-drk);
    text-decoration: none;

    font-family: 'Lexend';
    font-weight: 300;
    font-size: 0.9rem;

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

    cursor: pointer;
}

.auburn_winds_basic_button_margin_top{
    margin-top: 10px;
}

/* ///////////////////////////////////////
==================== WORDPRESS INTERNAL STYLING ====================
/////////////////////////////////////// */
.wp-block-heading{
    margin-bottom: 10px;
}




/* ///////////////////////////////////////
==================== ELEMENTS INTERNAL STYLING ====================
/////////////////////////////////////// */
.auburn_winds_custom_html_container{
    display: flex;

    width: 100%;
    height: auto;

    flex-direction: column;
}

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

    flex-wrap: wrap;

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

    width: 100%;
    height: 100%;
}

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

    flex: 1 1 calc(50% - 20px); /* 3 items per row */
    margin: 20px 5px 20px 5px;
}



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

@media (max-width: 1050px) {
    /* Sidebar content and features styling */
    .auburn_winds_sidebar_main_content{
        flex-direction: column;
    }

    .auburn_winds_h4_title_margin{
        margin-bottom: 0.8rem;
    }
    
    .auburn_winds_internal_sidebar_container{
        display: flex;
        flex-direction: column;
    
        flex-basis: 100%;
    }
    
    .auburn_winds_internal_sidebar_central_container{
        margin: 3rem 0px 3rem 0px;
    }


    /* Global search form styling */
    




    /* Elements Internal Styling */
    .auburn_winds_custom_html_container{
        display: flex;
    }
    
    .auburn_winds_multi_container_grid{
        display: flex;
        flex-direction: column;

        justify-content: space-around;
        align-items: flex-start;
    
        width: 100%;
        height: 100%;
    }
    
    .auburn_winds_multi_container_grid_container{
        display: flex;
        flex-direction: column;
    
        flex: 1;
        margin: 20px 0px 20px 0px;
    }

}
