/*
Theme Name: Talk to Tara
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: A plain-vanilla &amp; lightweight theme for Elementor page builder
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 2.6.1.1668714132
Updated: 2022-11-17 19:42:12

*/

/*LOAD CUSTMOM WEBFONT*/

@font-face { font-family: FashionModif;
    src: url('https://dgouveavianna.vccdigitalmedia.ca/talk-to-tara-workshop/wp-content/themes/talk-to-tara/fonts/Fashion-Modish.woff2') format('woff2'),
    url('https://dgouveavianna.vccdigitalmedia.ca/talk-to-tara-workshop/wp-content/themes/talk-to-tara/fonts/Fashion-Modish') format('woff'),
    url('https://dgouveavianna.vccdigitalmedia.ca/talk-to-tara-workshop/wp-content/themes/talk-to-tara/fonts/Fashion-Modish') format('truetype');
    font-weight: normal;
  }


::selection{
    background: #5c8100;
    color: black;
}

/* CUSTOM HEADER STYLES*/

.site-header .site-navigation ul.menu .button-green a {
    background: var(--e-global-color-accent);
    padding: 12px 40px;
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
}

.site-header .site-navigation ul.menu .button-green a:hover {
   background: var(--e-global-color-primary);
   color: var(--e-global-color-accent);
}

.site-header .site-navigation ul.menu a{
    text-decoration: none;
}

#menu-primary-navigation{
    align-items: center;
    gap: 20px;
}

/* CUSTOM H1 */

.custom-font h2,
.custom-font h1 {
    font-family: FashionModif;
}

.span-white-text span {
    color: var(--e-global-color-ff8f2e3);
}


/* CUSTOM BLOG POST STYLES ----------------------- */


/* turn layout into flexbox */
.blog-posts-container .eael-grid-post-holder-inner {
    display: flex;
    }
    
    /* style the image section */
    .blog-posts-container .eael-entry-media {
    width: 33.3%;
    align-self: flex-start;
    margin-top: 20px;
    }
    
    /* set max-height on image so it doesn't span full column height in case columns aren't the same height */
    .blog-posts-container .eael-entry-media img {
    max-height: 210px;
    }
    
    /* style the blog post content section */
    .blog-posts-container .eael-entry-wrapper {
    width: 66.6%;
    padding-left: 40px;
    }
    
    /* add border to the top of all of the posts */
    .blog-posts-container .eael-grid-post {
    border-top: 3px solid var(--e-global-color-primary);
    }
    
    /* add a border to the bottom of the last two posts */
    .blog-posts-container .eael-grid-post:nth-last-child(-n+2) {
    border-bottom: 3px solid var(--e-global-color-226f460);
    }
    
    /* add spacing to top and bottom of post */
    .blog-posts-container .eael-grid-post-holder {
    margin: 55px 0;
    }
    
    
    /* IF TIME FOR MEDIA QUERY */
    @media (min-width: 1200px) {
    .blog-posts-container .eael-post-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    .blog-posts-container .eael-post-grid-container .eael-post-grid .eael-grid-post {
    width: 48%;
    }
    }
    
    
    /* fix something that came with the plugin - remove circle */
    .blog-posts-container .eael-posted-on:before {
    display: none;
    }
    
    /* bold the post date */
    .blog-posts-container .eael-posted-on {
    font-weight: bold;
    }
    
    
    /* CUSTOM INSTAGRAM STYLES ----------------------- */
    
    /* add border to the left of each of the posts to fake build out a border */
    .instagram-feed .sbi_item {
    border-left: 10px solid var(--e-global-color-ff8f2e3);
    }

    /* CUSTOM FOOTER STYLES ----------------------- */


/* set spacing, font size and border on the footer tag */
.custom-footer {
    margin-top: 60px;
    font-size: 18px;
    border-top: 3px solid var(--e-global-color-primary);
    }
    
    
    /* add text decoration to all links */
    .custom-footer a {
    color: var(--e-global-color-primary);
    text-decoration: underline;
    }
    
    
    /* add spacing and width to the inner container, display flex for columns */
    .footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    padding: 140px 0;
    }
    
    /* set width of inner sections */
    .footer-logo {
    width: 35%;
    }
    
    .land-acknowledgement {
    width: 45%;
    }
    
    .social-media-icons {
    width: 20%;
    }
    
    /* style icon container */
    .social-media-icons ul {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    }
    
    .social-media-icons ul li {
    list-style: none;
    }
    
    /* icons are fonts, set the font size */
    .social-media-icons ul li a {
    font-size: 30px;
    }
    
    
    /* style the motivational quote area */
    .custom-footer .subfooter {
    text-align: center;
    padding: 36px 0;
    border-top: 3px solid var(--e-global-color-primary);
    }
    
    .custom-footer .subfooter p {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    }
    
    
    /* add custom heart icons through font awesome before and after properties */
    .custom-footer .subfooter p:before,
    .custom-footer .subfooter p:after {
    font-family: 'Font Awesome 5 Free';
    content: '\f004';
    padding: 0 20px;
    
    }