@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
/*@font-face {
    font-family: 'body';
    src: url('../fonts/FiraSans-Regular.woff');
    font-weight: normal;
    font-style: normal;
}*/
@font-face {
    font-family: 'body';
    src: url('../fonts/Roboto-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    src: url(../fonts/FiraSans-Regular.woff);
    font-family: headings;
}
:root {
    --neutralLight: #fff;
    --neutralMid: #fbf8f5; /*PINK-BEIGE*/
    --neutralDark: #000;
    --mainDark: #000000;
    --mainMid: #CA5F43; /*RUST-ORANGE*/
    --comp: #fda90e;
}
* {
	box-sizing: border-box;
}
html {
	height: 100%;
    overflow-y: scroll; /*FORCE VERTICAL SCROLL BAR FOR SHORT PAGES*/
}
body {
    font-family: body;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--neutralMid);
}
.grid {
    display: grid;
    grid-template-rows: auto auto 1fr auto; /*nav, header, main, footer*/
    grid-template-areas:
           "nav" 
           "header"
           "main"
           "footer";

    min-height: 100%;
}
nav {
    grid-area: nav;
}
footer {
    grid-area: footer;
    display: flex;
    background-color: var(--neutralDark);
    color: var(--neutralLight);
    justify-content: space-around;
}
footer a {
    color: var(--neutralLight);
}
main {
    grid-area: main;
    margin: 0 auto;
    padding: 1em 1em 15em 1em;
    width: 100%;
}
header {
    height: 89vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--neutralLight);
    grid-area: header;
    padding-top: 3.5rem;
    background-color: var(--mainDark);
    font-family: headings;
}
nav .fa {
    position: relative;
    top: .25rem;
}
nav .fa::before {
    color: var(--mainLight);
    font-size: 1.5rem;
    margin-right: .5rem;
    font-family: FontAwesome;
}
nav a {
    color: inherit;
    text-decoration: none;
}
/*header h1 {
    display: none;
}*/
header>div {
    flex: 1;
    height: 100%;
}
.tagline {
    font-size: 1.2rem;
    line-height: 2;
}
.imageholder {
    background-image: url(../images/logo.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.textholder {
    background-color: var(--neutralDark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.textholder a {
    color: var(--neutralLight);
    text-decoration: none;
    font-size: 5rem;
}
article {
    width: 70%;
    margin: 0 auto;
    line-height: 2;
}
#menubutton {
    display: none;
}
nav,
nav ul {
    color: var(--neutralLight);
}
nav {
    background-color: var(--mainMid);
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;/*WAS 2*/
    grid-area: nav;    
}
nav ul {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
nav ul a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 1em 1em 1.5em 1em;
    transition: .3s;
    min-height: 100%;
    display: flex;
    align-items: center;
}
.phone {
    padding-right: 1rem;
}
#contact nav ul a {
    min-height: auto;
}
nav ul a:hover:not(li.current a) {
    color: var(--mainDark);
}
nav .current a {
    background-color: var(--mainDark);
    cursor: context-menu;
}
p:has(img) {
    float: left;
    width: 50%;
    margin-right: 1rem;
}
section img {
    width: 100%;
}