/*
Theme Name: TTA
Author: Brett Sauers
Description: TTA Theme based off of https://blankslate.me/.
Version: 2024.2
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html


TTA WordPress Theme, Copyright 2012 Joe Smith
TTA is distributed under the terms of the GNU GPL

TTA WordPress Theme is derived from BlankSlate WordPress Theme 2011-2024 , Copyright 2012 Joe Smith
BlankSlate is distributed under the terms of the GNU GPL
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

html,body{
    font-family: "Open Sans", sans-serif;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    background-color: #d4d4d3;
    color: black;
}

body *{
    box-sizing: border-box;
}

h1,h2,h3 {
    font-family: "Lato", sans-serif;
}

h1{
    font-size: 2.5rem;
    font-weight: 800;
}

#header{
    height: 150px;
    color:white;
    display: flex;
    position: relative;
    align-items: center;
    padding:0 50px;
    margin-bottom: -50px;
    z-index: 2;
    gap: 100px;
}

#header::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #c6af62;
    position: absolute;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 0%);
    z-index: -1;
}

#header::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #292a2a;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 55%, 0% 100%);
    z-index: -1;
}

#header #menu {
    margin-right: 100px;
}

#header #menu a{
    color: rgb(192, 192, 192);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}
#header #menu a:hover{
    color: white;
}

#header #menu ul {
    display: flex;
    list-style: none;
    column-gap: 20px;
    margin: 0;
    height: 100%;
    align-items: center;
}

#header #menu ul li {
    display: block;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition: all 0.2s linear;
    white-space: nowrap;
}

#header #menu ul li:hover {
    cursor: pointer;
}

#header #menu ul li ul {
    background-color: #000000;
    visibility: hidden;
    opacity: 0;
    min-width: 7rem;
    position: absolute;
    transition: all 0.2s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
    padding: 0;
    height: fit-content;
    box-shadow: 0 4px 10px -5px rgba(0, 0, 0, .2);
}

#header #menu ul li:hover > ul, #header #menu ul li:focus-within>ul, #header #menu ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

.logo{
    width: 85%;
    max-width: 300px;
}



#wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.front-page .featured{
    height: calc(100vh - 200px);
    overflow: hidden;
    position: relative;
    margin-bottom: -60px;
    display: flex;
    align-items: center;
}

.front-page .the-featured-content{
    position: absolute;
    max-width: 75ch;
    width: 90%;
    padding: 50px;
    margin-left: 50px;
    color: white;
    background: #292a2ade;
}

/* .front-page .featured::after {
    background: #ffffff66;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

.front-page .featured img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 100%;
    
}

.front-page .the-featured-content h2{
    font-size: 2.5rem;
    font-weight: 800;
}

.front-page .the-featured-content p{
    font-size: 1.2rem;
}

.front-page .the-featured-content a{
    color:#c6af62;
    font-weight: 700;
}

.inner-page{
    width: 90%;
    max-width: 1300px;
    margin:0 auto;
    margin-top: 100px;
    padding-bottom: 200px;
}

.inner-page .entry-title{
    margin-bottom: 60px;
}

.wp-block-column img{
width: 100%;
padding: 10%;
}

.wp-block-button__link{
    color: white;
    background-color: #292a2a;
    border-radius: 5px;
    box-shadow: none;
    text-decoration: none;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.wp-block-button__link:hover{
    background-color: black;
}

.wp-block-media-text {
    box-sizing: border-box;
    direction: ltr;
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: auto;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
}

.mobile-menu{
    display: none;
}







.mobile-menu {
    font-size: 10px;
    width: 3em;
    position: relative;
}

.menu-bar {
    width: 100%;
    height: 0.4em;
    transition: transform 0.2s ease-in-out;
    transform-origin: 50% 50%;
    position: relative;
    transition-delay: 0.2s;
    z-index: 10;
}

.menu-bar--middle {
    margin: 5px 0;
}

.mobile-menu input {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    z-index: 11;
    cursor: pointer;
    -webkit-touch-callout: none;
}

.menu-bar--inner {
    width: 100%;
    height: 100%;
    background: black;
    filter: invert(1) saturate(0) contrast(100);
    opacity: 0.9;
    position: absolute;
    transition: transform 0.2s ease-in-out;
    border-radius: 3px;
}

.mobile-menu input:hover~.menu-bar .menu-bar--inner {
    opacity: 1;
}

.mobile-menu input:checked~.menu-bar--top {
    transition-delay: 0s;
    transform: translateY(0.9em);
}

.mobile-menu input:checked~.menu-bar--top .menu-bar--inner {
    transition-delay: 0.2s;
    transform: rotate(-45deg);
}

.mobile-menu input:checked~.menu-bar--middle {
    transition-delay: 0s;
}

.mobile-menu input:checked~.menu-bar--middle .menu-bar--inner {
    transition-delay: 0.2s;
    transform: rotate(45deg);
}

.mobile-menu input:checked~.menu-bar--bottom {
    transition-delay: 0s;
    transform: translateY(-0.9em);
}

.mobile-menu input:checked~.menu-bar--bottom .menu-bar--inner {
    transition-delay: 0.2s;
    transform: rotate(45deg);
}


.mobile-menu input:checked~nav {
    top: 0;
}

.mobile-menu ul li ul{
    padding-left: 40px;
}

.mobile-menu a{
    font-size: 18px;
    font-weight: 700;
    color: white;
}



@media screen and (max-width: 1024px) {
    #menu{
        display: none;
    }
    .mobile-menu{
        display: block;
    }   #menu{
        display: none;
    }
    .mobile-menu{
        display: block;
    }

    .mobile-menu nav{
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        top: -150%;
        right: 0;
        background: #292a2a;
        box-shadow: 0 4px 10px -5px rgba(0, 0, 0, .2);
        padding: 200px 30px;
        z-index: -1;
        transition: all 0.2s ease-in-out;
    }

    .mobile-menu nav ul {
        flex-direction: column;
        padding: 0;
    }

    .mobile-menu nav li {
        width: 100%;
    }

    .mobile-menu nav ul li a {
        height: 60px;
        display: block;
    }

    #header{
        justify-content: space-between;
        gap: 0;
    }

    #header::after{
        clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    }


}



@media (max-width: 855px) {
    .wp-block-media-text.is-stacked-on-mobile {
        grid-template-columns: 100% !important;
        gap: 40px;
    }
    .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
        grid-column: 1;
        grid-row: 2;
    }

    .wp-block-media-text img{
        max-width: 500px;
    }

    .wp-block-media-text>.wp-block-media-text__media {
        display: flex;
        justify-content: center;
    }
    .front-page .featured{
        justify-content: center;
    }
   .front-page .the-featured-content{
    margin: 0;
   }
}

@media (max-width: 420px) {
    .front-page .the-featured-content h2 {
        font-size: 1.5rem;
        font-weight: 800;
    }
}

@media screen and (max-height: 840px) {
    .front-page .featured{
        height: calc(100vh - 100px);
    }
}

#footer{
    height: 300px;
    width: 100%;
    color:white;
    display: flex;
    position: relative;
    align-items: center;
    padding:0 50px;
    z-index: 1;
    padding-bottom: 50px;
}

#footer::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #c6af62;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(100% 100%, 100% 55%, 0% 0%, 0% 100%);

    z-index: -1;
}

#footer::after{
    content: '';
    width: 100%;
    height: 100%;
    
    background-color: #292a2a;
    position: absolute;
    right: 0;
    top: 0;
    clip-path: polygon(100% 100%, 100% 0%, 0% 30%, 0% 100%);
    z-index: -1;
}
.footer-widgets{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:40px;
    
}
.footer-widget-area{
    padding-top: 80px;
    width: 90%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin: 0 auto;
}

.footer-widget-area a {
    color: white;
}

.footer-widget-area h2{
    font-weight: 700;
    font-size: 20px;
}

/* .footer-widget-area div:last-child {
    margin-left: auto;
} */


.footer-widget-area img{
    width: 80%;
    max-width: 300px;
}


@media (max-width: 940px) {
    #footer{
        height: auto;
    }
    #footer::after{
        clip-path: none;
    }
    .footer-widget-area{
        flex-direction: column;
    }
}