/*Erica Talley, 5/5/2024, Hand In Hand KC and Process Page Styling*/
:root{
    box-sizing: border-box;
    width: 100%;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
/*adds in fonts and styles*/
h1{
    font-family: 'Maiandra GD', sans-serif;                                            
}
h2{
    font-family: 'Malgun Gothic Boot', sans-serif;
}
h3{
    font-family: 'Malgun Gothic Boot', sans-serif;
    font-weight: light;
}
h4{
    font-family: 'Malgun Gothic Boot', sans-serif;
    font-weight: lighter;
    font-size: 1.3em;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}
p{
    font-family: 'Source Sans Pro', sans-serif;                                            
}
a{
    font-family: 'Source Sans Pro', sans-serif;
}
/*sticky positioning*/
header{
    background-color: white;
    position: sticky;
    top: 0;
}
/*header grid display*/
.page-top{
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.5fr;
    grid-template-rows: 1fr;
}
/*header grid styles*/
#logo{
    display: flex;
    align-items: flex-end;
    width: 6em;
}
#title{
    display: flex;
    align-items: flex-end;
    font-size: 2em;
}
/* hamburger menu styles*/
#top-button{
    display: flex;
    flex-direction: column;
    background-color: #9e0c1e;
    margin-bottom:1.5em;
    margin-top: 1em;
    border-radius: 1em;
    border: 0.4em solid #9e0c1e;
    justify-content: center;
}
.top-button2{
    display: none;
    background-color: #FF6712;
    border-radius: 1em;
    margin-bottom:1.5em;
    margin-top: 1em;
    justify-content: center;
}
.top-button2 > a{
    align-self: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3em;
}
#top-button > #donate-option{
    display: none;
    align-items: center;
    align-self: center;
    flex-grow: 1;
    font-size: 1.5em;
    text-transform: uppercase;
    text-decoration: none;
}
.menu-lines{
    background-color: white;
    width: 85%;
    height: 0.4em;
    border-radius: 0.2em;
    margin: 0.25em;
    align-self: center;
}
/*donate button styles*/
.donate-button{
    display: flex;
    background-color: #FF6712;
    border-top: 1em solid #9e0c1e;
}
.donate-button :hover{
    background-color: #D94E00;
}
#donate-redirect{
    font-size: 1.2em;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    flex-grow: 1;
    padding: 1em 2em;
}
/*navigaton drop down styles*/
.dropdown-nav{
    background-color: #9e0c1e;
    display: none;
}
.dropdown-nav.clicked{
    display: block;
}
.nav-list{
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style-type: none;
    text-align: center;
    border: 0.1em solid black;
}
.nav-list>li{
    display: flex;
    border: 0.1em solid black;
    padding: 0.4em;
}
.nav-list> li> a{
    flex-grow: 1;
    text-decoration: none;
    color: white;
}
.nav-list> li> a:hover{
    text-decoration: underline;
}
/*adds margins to main content of page*/
main{
    margin: 1em;
}
/*breadcrumb styles*/
#breadcrumb{
    font-size: 0.8em;
}
#breadcrumb > a{
    text-decoration: none;
}
#breadcrumb > p > a{
    text-decoration: none;
}
/*main content flex box display and styles*/
.top-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-flex{
    display: flex;
    flex-direction: column;
    margin: 1em;
}
.sub-content{
    display: flex;
    flex-direction: column;
}
.subheading{
    text-align: center;
}
/*image styling*/
.topIMG{
    width: 95%;
}
.images{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 40%;
}
.subImages{
    max-width: 75%;
}
#updatedSitemap, #sitemap{
    justify-content: flex-end;
}
.images> *{
    margin-bottom: 1em;
    margin-top: 1em;
    align-self: center;
}
/*Inner Donate Button styling*/
.inner-donate{
    display: flex;
    background-color: #FF6712;
    border-radius: 0.6em;
    margin: 0 auto;
    padding: 0.4em;
}
#inner-donate-link{
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    flex-grow: 1;
}
.inner-donate :hover{
    background-color: #D94E00;
}
/*texl link styles*/
.text-link{
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}
.text-link:visited{
    color: purple;
}
.text-link:hover{
    color: orange;
}
/*form styles*/
#formDetail{
   margin-bottom: 2.5em; 
   font-size: 0.8em;
}
.contact-form{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.contact-form > #nameField, #emailField, #subjectField, #messageField, textarea{
    width: 18em;
}
/* right aligns submit button*/
#submit-button{
    align-self: flex-end;
    background-color: #FFAAAA;
    border-radius: 0.2em;
    border-color: #FFAAAA;
}
/*submit button clor change on hover*/
#submit-button:hover{
    background-color: #EA6A6A;
    border-color: #EA6A6A;
}
/*footer styles*/
footer{
    background-color: #9e0c1e;
    text-align: center;
    padding: 1em;
    font-size: 0.8em;
}
footer > p{
margin:0;
}
footer > a{
    text-decoration: none;
}
/*Process Page Styles*/
#processPage-header{
    background-color: #EA6A6A;
}
#processPage-title{
    text-align: center;
    font-size: 1.5em;
}
.process-mainFlex{
    display: flex;
    flex-direction: column;
}
.processHamburger{
    width: 6em;
    justify-self: end;
}
#audit, #styleTile, #designBrief, #conceptSketches, #formalSketches, #styleGuide, #mockups{
    margin-top: 3em;
    margin-bottom: 3em;
}
#nav-list-process{
    font-size: 0.8em;
}
/*medium viewport style changes*/
@media (min-width:768px){
    /*styles for content arrangement*/
    .subheading{
        text-align: left;
    }
    .sub-content{
        display: flex;
        flex-direction: row;
    }
    #sub-content{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .contactSections{
        margin: 2em 5em;
    }
    .sub-content> img{
        margin-left: 2em;
    }
    #paragraghsOnly{
        flex-direction: column;
    }
    .inner-donate{
        padding: 1em 3em;
    }
    #inner-donate-link{
        align-self: center;
    }
    .images> *{
        margin-left: 2em;
    }
    /* sizing styles*/
    #title{
        font-size: 2.3rem;
    }
    #logo{
        width: 8rem;
    }
    #breadcrumb{
        font-size: 1rem;
    }
    .nav-list> li> a{
        font-size: 1.1rem;
    }
    #donate-redirect{
        font-size: 1.3rem;
    }
    .contact-form > #nameField, #emailField, #subjectField, #messageField, textarea{
        width: 20em;
    }
    /*removing hamburger and replacing with horizontal nav*/
    #top-button{
        display: none;
    }
    .dropdown-nav{
        display: flex;
        justify-content: center;
    }
    .nav-list{
        flex-direction: row;
        border: none;
        padding-top: 1em;
    }
    .nav-list> li{
        display: block;
        border: none;
        margin-left: 0.4em;
        margin-right: 0.4em;
    }
    .nav-list> li> a{
        text-align: center;
    }
    /*moving top donate button*/
    .donate-button{
        display: none;
    }
    #top-button{
        display: none;
    }
    .top-button2{
        display: flex;
    }
}
@media (min-width: 1024px){
    /*styles for content arrangement*/
    .images{
        display: flex;
        flex-direction: row;
    }
    /* sizing and spacing styles*/
    #title{
        font-size: 3em;
    }
    #logo{
        width: 10em;
    }
    .nav-list> li{
        margin-left: 1.5em;
        margin-right: 1.5em;
    }
    .nav-list> li> a{
        font-size: 1.2rem;
    }
    #donate-redirect{
        font-size: 1.4rem;
    }
    h2{
        font-size: 1.4em;
    }
    h3{
        font-size: 1.3em;
    }
    .contact-form > #nameField, #emailField, #subjectField, #messageField, textarea{
        width: 25em;
    }
}





