/* main.css */
:root{
    --background-color: #FFF;
    --light-background:  #D9D9D9;
    --dark-background: #555;
    --accent-color: #FFCE22;
    --dark-accent: #FFBD12;
    --shadow-color: #999;
    --header-height: 95px;
    --default-font: 'Open Sans', sans-serif;
}
body{
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: var(--default-font);
}
h1, h3{
    padding: 0;
    margin: 0px;
    font-weight: 800;
}
h1{ font-size: 126px; }
h3{ font-size: 32px; }
section {
    width: 100%;
    display: flex;
    justify-content: center;
}
nav{
    display: flex;
    align-items: center;
}
button{ cursor: pointer; }
input, textarea{
    box-sizing: border-box; 
    outline: none;
    border: none;
    border-radius: 7px;
    padding: 20px;
    margin: 5px 0;
    width: 350px;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-background);
}
.center-content{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header{
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: var(--header-height);
    box-shadow: 0 2px 10px -3px var(--shadow-color);
}
.container{
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1100px;
}
.spread{
    display: flex;
    justify-content: space-between;
}
.fill{ height: 100%; }
.logo{
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.light-shadow{ -webkit-filter: drop-shadow(2px 2px 4px var(--shadow-color)); }
.logo-img{ width: 70px; }
.nav-list{
    list-style-type: none;
    padding: 0;
    margin:0;
    display: flex;
    align-items: center;
}
.nav-item{ 
    box-sizing: border-box;
    padding: auto;
}
.btn{
    border: none;
    background: none;
    outline: none;
    height: 100%;
    font-weight: 800;
    font-size: 22px;
    padding: 1em;
    position: relative;
}
.btn.btn-underline::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7px;
    background-color: var(--accent-color);
    margin: 0 1em;
    transition: transform 350ms;
    transform: scaleX(0);
}
.btn.btn-underline:hover::before,
.btn.btn-uncerline:focus::before{ transform: scaleX(1); }
.cta-btn{
    background: var(--accent-color);
    box-sizing: border-box;
    padding: 10px 15px;
    border-radius: 7px;
    transition: all 0.1s ease-in;
}
.cta-btn:hover{ background: var(--accent-color); }
.cta-btn:active{ 
    transform: translateY(2px);
    box-shadow: none;
}
.hero{
    max-height: 620px;
    background: var(--light-background);
}
.hero-text{ 
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1;
    position: relative;
}
#hero-name{ padding-top: 110px; }
#name-cursor{ position: absolute; }
#tag-line{ 
    padding-bottom: 90px;
    line-height: 1.6;
    color: #404040;
}
.contact-section{
    background: var(--dark-background);
    color: white;
    padding: 50px 0px;
}
.call-to-action{
    text-align: center;
}
.underline{
    background-color: var(--accent-color);
    height: 3px;
    margin: 50px 0 20px 0;
    width: 100%;
}
.input-label{
    color: #AAA;
    font-weight: 800;
}
.contact-msg{
    resize: none;
    width: 100%;
    font-family: var(--default-font);
}
