@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*
.libre-franklin-<uniquifier> {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/




*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    
}

.seo-only{
    display: none;
}











/* Global CSS variables */
:root {
    /* Main site dimensions */
    --header-height: 70px;



    /* Main Site Colours */
    --transparent-color: #00000000;
    --ontop-of-overlay-border-color: rgba(102, 102, 102, 0.5);
    --ontop-of-overlay-icon-color: rgba(102, 102, 102, 0.5);

    --menu-screen-menu-background-colour: rgb(255, 255, 255);
    --menu-screen-overlay-background-color: rgba(22, 22, 22, 0.795);
    --menu-screen-overlay-border-color: rgba(0, 0, 0, 0.705);
    --menu-screen-menu-parent-item-text-color: rgb(26, 26, 26);
    --menu-screen-menu-sub-parent-item-text-color: rgb(61, 61, 61);

    --header-colour: white;
    --header-border-color: rgba(110, 110, 110, 0.226);
    --footer-colour: rgb(26, 26, 26);

    --hamburger-icon-color-white: rgb(255, 255, 255);
    --hamburger-icon-color-black: rgb(22, 22, 22);

    --top-hero-overlay-background-color: rgba(0, 0, 0, 0.5);

    --call-to-action-button-hover-background-color: #1a1a1a;
    --call-to-action-button-hover-on-drk-bg-background-color: white;






    /* Main site font sizes */
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.25rem;
    --h6-font-size: 1rem;
    --p-font-size: 1rem;

    --small-font-size: 0.875rem;
    --x-small-font-size: 0.75rem;

    --menu-font-size: 1.5rem;
    --sub-menu-font-size: 1.2rem;

    --hero-font-size: 3.5rem;
    --hero-front-page-dynamic-font-size: 2rem;
    --hero-subtitle-font-size: 1rem;

    --footer-quote-font-size: 1rem;
    --footer-title-font-size: 1.5rem;

    --call-to-action-button-font-size: 1rem;





    /* Main site fonts */
    --header-font: "Libre Franklin", sans-serif;
    --hero-font: "Libre Franklin", sans-serif;
    --body-font: 'Montserrat', sans-serif;
    --menu-link-font: "Libre Franklin", sans-serif;





    /* Main site font weights */
    --title-font-weight: 700;
    --hero-font-weight: 700;

    --menu-link-weight: 700;
    --sub-menu-font-weight: 500;

    --footer-quote-font-weight: 400;
    --footer-title-font-weight: 700;

    --call-to-action-button-font-weight: 500;





    /* Main site font colouring */
    --primary-text-color: #1a1a1a;
    --hero-font-color: white;
    --on-dark-bg-text-color: white;



    /* Main site font styles */
    --title-font-text-transform: uppercase;
    --hero-font-text-transform: uppercase;
    --menu-link-text-transform: uppercase;
    --sub-menu-link-text-transform: uppercase;
    --call-to-action-button-text-transform: uppercase;
    --body-font-text-transform: none;







    /* Main site padding and margins */
    --header-padding: 0 20px;
    --header-padding-single: 20px;
    --footer-padding: 50px 20px 50px 20px;
    --all-page-padding: 0px 100px 0px 100px;
    
    --paragraph-text-margin: 15px;
    --text-font-margin: 15px;



    /* Main transition times */
    --default-transition-time: 0.2s;
}




/* CSS Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    };

}


@keyframes menu-overlay-animate {
    0% {
        opacity: 0;
        transform: translateY(100vh);
    }

    50%{
        opacity: 0.5;
        transform: translateY(0vh); 
    }

    100% {
        opacity: 1;
        transform: translateY(0vh);
    }
}


@keyframes header-animate-onscroll{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0%);
    }
}


@keyframes front-page-top-hero-dynamic-text-animate{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}


@keyframes top-hero-scroll-cta-animate{
    0%{
        opacity: 0.5;
        transform: translateY(4px);
    }
    50%{
        opacity: 1;
        transform: translateY(0px);
    }
    100%{
        opacity: 0.5;
        transform: translateY(4px);
    }
}











/* Global elements styling */
/* --------- Global generic classes ---------- */
.full-width{
    width: 100% !important;
}



/* -------- Auburnwinds hamburger menu -------- */
.auburnwinds-menu-hamburger-btn{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 45px;
    height: 45px;

    padding: 1px;

    z-index: 1100;

    background-color: var(--transparent-color);
    border: none;

    cursor: pointer;
}

.auburnwinds-menu-hamburger-btn.scrolled{
    transition: var(--default-transition-time);
    border: none;
}

.auburnwinds-menu-hamburger-btn span{
    display: block;

    width: 30px;
    height: 2px;

    margin: 5px 0;

    background-color: var(--hamburger-icon-color-black);
    border-radius: 2px;
}

.auburnwinds-menu-hamburger-btn.active{
    display: flex;
    justify-content: space-around;
}




/* ONLY ON HOMEPAGE - SPAN DIFFERENT COLOR */
body.home .auburnwinds-menu-hamburger-btn span{
    background-color: var(--hamburger-icon-color-white) !important;
    transition: var(--default-transition-time);
}

/* ONLY ON HOMEPAGE - SPAN CHANGE COLOR ON ACTIVE CLASS ADDED */
body.home .auburnwinds-menu-hamburger-btn.active span{
    background-color: var(--hamburger-icon-color-black) !important;
}

/* ONLY ON HOMEPAGE - SPAN DIFFERENT COLOR ON SCROLL */
body.home .auburnwinds-menu-hamburger-btn.scrolled span{
    background-color: var(--hamburger-icon-color-black) !important;
}





.auburnwinds-menu-hamburger-btn.active span:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}
.auburnwinds-menu-hamburger-btn.active span:nth-child(2) {
    display: none;
}
.auburnwinds-menu-hamburger-btn.active span:nth-child(3) {
    position: absolute;
    transform: rotate(-45deg);
}




/* --------- Auburnwinds Typography --------- */
h1, h2, h3, h4, h5, h6{
    font-family: var(--header-font);
    text-transform: var(--title-font-text-transform);
    color: var(--primary-text-color);
    margin-bottom: var(--text-font-margin) !important;
}

p{
    font-family: var(--body-font);
    font-size: var(--p-font-size);
    text-transform: var(--body-font-text-transform);
    color: var(--primary-text-color);
    margin-bottom: var(--paragraph-text-margin) !important;
}




/* --------- Auburnwinds Buttons --------- */
.auburnwinds-call-to-action-button{
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    padding: 10px 20px;

    font-family: var(--body-font);
    font-size: var(--call-to-action-button-font-size);
    font-weight: var(--call-to-action-button-font-weight);
    text-transform: var(--call-to-action-button-text-transform);
    color: var(--primary-text-color);

    background-color: var(--transparent-color);
    border: 1px solid var(--primary-text-color);

    border-radius: 0px;

    cursor: pointer;
}

.auburnwinds-call-to-action-button:hover{
    background-color: var(--call-to-action-button-hover-background-color);
    color: var(--on-dark-bg-text-color);
    transition: var(--default-transition-time);
}

.drk-bg-btn{
    color: var(--on-dark-bg-text-color);
    border: 1px solid var(--on-dark-bg-text-color);
}

.drk-bg-btn:hover{
    background-color: var(--call-to-action-button-hover-on-drk-bg-background-color) !important;
    color: var(--primary-text-color) !important;
    transition: var(--default-transition-time);
}

/* EDITOR INSERTED Button transitions */
.wp-block-button__link,
.wp-element-button {
    transition: var(--default-transition-time);
}


































/* ==========

* * * * * * * * * *
Header styling 
* * * * * * * * * *

========== */

/* Generic header and wrapper styles */
.auburnwinds-header {
    background-color: var(--header-colour);

    display: flex;
    flex-direction: column;

    width: 100%;
    height: var(--header-height);
    
    position: fixed;
    top: 0;
    z-index: 1000;

    /* background-color: var(--header-colour); */
    border-bottom: 1px solid var(--header-border-color);
}

.auburnwinds-header.menu-active{
    background: var(--header-colour);
    transition: var(--default-transition-time);
}

.auburnwinds-header.scrolled{
    background: var(--header-colour);
    transition: var(--default-transition-time);
    animation: header-animate-onscroll 0.3s ease-in-out;
}

body.home .auburnwinds-header {
    background: transparent !important;
}

/* White header on homepage after scroll */
body.home .auburnwinds-header.scrolled {
    background: var(--header-colour) !important;
}

/* White header on homepage when menu active */
body.home .auburnwinds-header.menu-active {
    background: var(--header-colour) !important;
}

.auburnwinds-header-wrapper{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 100%;

    padding: var(--header-padding);
}


/* Header Logo container styles */
.auburnwinds-header-logo-container{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100px;
    height: 100%;

    position: relative;
    overflow: hidden;
}

.auburnwinds-header-logo{
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-text-color);
}




/* Header menu container styles */
.auburnwinds-header-menu-container{
    display: flex;
    flex-direction: column;
}

.auburnwinds-header-menu-overlay{
    display: none;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    position: absolute;
    top: var(--header-height);
    right: 0;

    width: 100%;
    height: calc(100vh - var(--header-height)); /* Fix: only below header */

    animation: menu-overlay-animate var(--default-transition-time) ease-in-out;
}


/* Header menu overlay functionallity for JS OPEN AND CLOSE */
.auburnwinds-header-menu-overlay.active{
    display: flex;
}


.auburnwinds-header-menu-overlay-dimmed-side{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 80%;
    height: 100%;

    background-color: var(--menu-screen-overlay-background-color);
}


.auburnwinds-header-menu-overlay-menu-side{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 20%;
    height: 100%;
    padding: 0 var(--header-padding-single);

    background-color: var(--menu-screen-menu-background-colour);
    position: relative;
    overflow-y: auto;
}


.auburnwinds-header-menu{
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-end;

    width: 100%;
    height: 100%;
    padding: 20px 0px;

    font-family: var(--menu-link-font);
    font-size: var(--menu-font-size);
    font-weight: var(--menu-link-weight);
    text-transform: var(--menu-link-text-transform);

    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.auburnwinds-header-menu ul{
    list-style: none;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    width: 100%;
    height: 100%;

    background-color: none;
}

.auburnwinds-header-menu ul li{
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    width: 100%;
}


.auburnwinds-header-menu ul li a{
    font-family: var(--menu-link-font);
    font-weight: var(--menu-link-weight);
    color: var(--menu-screen-menu-parent-item-text-color);

    text-align: right;
    text-decoration: none;
    text-transform: var(--menu-link-text-transform);

    width: 100%;
    height: 100%;

    padding: 20px 10px 20px 10px;
    
    cursor: pointer;
}

.auburnwinds-header-menu ul li a::before{
    content: ' ';
    display: inline-block;
}

.auburnwinds-header-menu ul li a:hover::before{
    content: '//';

    display: inline-block;
    position: relative;
    right: 40px;
    animation: fade-in 0.2s ease-in-out;
}

.auburnwinds-header-menu ul li.menu-item-has-children > a::before{
    content: ' ';
    display: inline-block;
}

.auburnwinds-header-menu ul li.menu-item-has-children > a:hover::before{
    content: '++';

    display: inline-block;
    position: relative;
    right: 40px;
    animation: fade-in 0.2s ease-in-out;
}

.auburnwinds-header-menu ul li ul li a{
    color: var(--menu-screen-menu-sub-parent-item-text-color) !important;
    font-size: var(--sub-menu-font-size) !important;
    font-weight: var(--sub-menu-font-weight) !important;

    animation: fade-in 0.3s ease-in-out;
}


.auburnwinds-header-menu ul li.menu-item-has-children .sub-menu{
    display: none;
}
/* NOTE - THIS CSS ONLY WORKS IF .menu-item-has-children HAS ADDED CLASS OF 'ACTIVE' */
.auburnwinds-header-menu ul li.menu-item-has-children.active .sub-menu{
    display: flex;
}

/* Auburn winds header socials */
.auburnwinds-header-menu-overlay-socials-container{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100px;

    margin-bottom: calc(0px + var(--header-padding-single));
    padding: 0 var(--header-padding-single);
}

.auburnwinds-header-socials{
    display: flex;
    flex-direction: row;

    justify-content: flex-end;
    align-items: center;

    width: 100%;
    height: 100%;
}

.auburnwinds-header-socials img{
    width: 40px;
    height: 40px;

    margin-left: 15px;

    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(70%) contrast(70%);
}




































/* ==========

* * * * * * * * * *
Footer styling 
* * * * * * * * * *

========== */


/* Generric footer and wrapper styling */
.auburnwinds-footer{
    display: flex;
    flex-direction: column;

    height: auto;
    width: 100%;

    /* BELOW IS TEMP FOR THEME - DELETE AFTER COMPLETION */
    top: 0;
    bottom: 0px;
    /* DELET ABOVE */

    background-color: var(--footer-colour);
}

.auburnwinds-footer-wrapper{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: flex-start;

    width: 100%;
    height: auto;

    padding: var(--footer-padding);
}

.auburnwinds-footer-logo-container{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 300px;
    height: 70px;

    position: relative;
    overflow: hidden;

    margin-bottom: 10px;
}

.auburnwinds-footer-logo{
    width: 100%;
    height: auto;
}

.auburnwinds-footer-quote-text{
    font-size: var(--footer-quote-font-size);
    color: var(--on-dark-bg-text-color);

    font-weight: var(--footer-quote-font-weight);
    margin-bottom: 40px !important;
}

.auburnwinds-footer-container{
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    height: auto;
    padding: 0 20px;

    overflow: hidden;
}

.auburnwinds-footer-container-has-sub-containers{
    display: flex;
    flex-direction: row;

    width: 100%;
    height: 100%;

    justify-content: space-around;
    align-items: flex-start;
}

#auburnwinds-footer-container-1{
    width: 30%;
}

#auburnwinds-footer-container-2{
    width: 70%;
}


.auburnwinds-footer-sub-container{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;
}

.auburnwinds-footer-sub-container-title{
    font-size: var(--footer-title-font-size);
    font-weight: var(--footer-title-font-weight);
    color: var(--on-dark-bg-text-color);

    margin-bottom: 20px !important;
}

.auburnwinds-footer-seperator{
    width: 10%;
    height: 1px;

    background-color: rgba(255, 255, 255, 0.2);

    margin: 10px 0px;
}

.auburnwinds-footer-sub-container-list{
    list-style: none;

    display: flex;
    flex-direction: column;
}

.auburnwinds-footer-sub-container-list-item{
    margin: 10px 0px;
}

.auburnwinds-footer-sub-container-list-item a{
    font-family: var(--body-font);

    text-decoration: none;
    color: var(--on-dark-bg-text-color);

    margin-bottom: 10px !important;
}































/* ==========

* * * * * * * * * *
Page styling (PAGE, POSTS, INDEX, SEARCH, ALL OTHER)
This includes template parts for pages/posts such as top-hero.php
* * * * * * * * * *

========== */

/* MARGIN-TOP SET TO HEADER HEIGHT ON ALL PAGES ASIDE FROM HOME PAGE DUE TO TRANSPARENT HEADER  */
body:not(.home) main {
    margin-top: var(--header-height);
}

.auburnwinds_main_content_area{
    /* margin-top: var(--header-height); */

    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    justify-content: flex-start;
    align-items: center;

    overflow: hidden;
}

.auburnwinds_main_content_area_wrapper{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    width: 70%;
    height: 100%;

    margin: 40px 0px 40px 0px;
}


/* Auburnwinds top hero  styling*/
.auburnwinds-top-hero{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 400px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.auburnwinds-top-hero-overlay{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    background-color: var(--top-hero-overlay-background-color);
}

.auburnwinds-top-hero-wrapper{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 80%;
    height: 100%;
}

.auburnwinds-top-hero-titles-wrapper{
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    height: auto;
    width: auto;
}

.auburnwinds-top-hero-title{
    font-family: var(--hero-font);
    font-size: var(--hero-font-size);
    font-weight: var(--hero-font-weight);
    color: var(--hero-font-color);
    text-align: center;
    margin-bottom: 0px !important;

    padding: 0px 7.5px 0px 7.5px;
}

.auburnwinds-top-hero-title-dynamic{
    font-family: var(--hero-font);
    font-size: var(--hero-font-size) !important;
    font-weight: var(--hero-font-weight);
    color: var(--hero-font-color);
    text-align: center;
    margin-bottom: 0px !important;
}

.auburnwinds-top-hero-subtitle, .auburnwinds-top-hero-subtitle p{
    font-family: var(--body-font);
    font-size: var(--hero-subtitle-font-size);
    font-weight: 400;
    color: var(--hero-font-color);
    text-align: center;

    margin-top: 0px;
}


/* Auburnwinds simple about styling*/
















/* ==========

* * * * * * * * * *
Home page styling 
* * * * * * * * * *

========== */

.front-page-hero-title-margin{
    margin-top: var(--header-height);
    margin-bottom: 10px !important;
}

.auburnwinds-front-page-hero{
    height: 600px;

    position: relative;
}

.auburnwinds-top-hero-cta-wrapper{
    display: flex;
    flex-direction: column;

    position: absolute;
    justify-content: center;
    align-items: center;

    width: 200px;
    height: 50px;

    bottom: 20px;
}

.auburnwinds-top-hero-cta-scroll-button{
    font-family: var(--body-font);
    font-weight: var(--menu-link-weight);

    font-size: var(--p-font-size);
    color: var(--hero-font-color);

    text-decoration: none;
    text-transform: uppercase;

    animation: top-hero-scroll-cta-animate 3s ease-in-out infinite;

    padding: 20px 20px 20px 20px;
}

.auburnwinds-top-hero-cta-scroll-button:hover{
    animation: none;
}

.front-page-top-hero-dynamic-text-animate{
    animation: front-page-top-hero-dynamic-text-animate 1s ease-in-out;
}