* 
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #A79965;
    font-family: 'Roboto Condensed', sans-serif;
    border-color: #A79965;
}


body.nav-open
{
    overflow: hidden;
}

.section-seperator
{
    width: 100%;
    height: 10px;
    background-color: #A79965;
}

p
{
    margin-top: 16px;
    line-height: 28px;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}

a{
    text-decoration: none;
}

h1{
    font-size: 2.4rem;
    font-weight: 300;
    color: rgb(51, 52, 53);
    letter-spacing: 0;
    
}

h2
{ 
    display: inline-block;
    padding: 7px 24px;
    background-color: rgba(167, 153, 101, 0.7);
    transform: skewX(-15deg);
    color: rgb(51, 52, 53);
    font-size: 1.3rem;
    font-weight: 300;
}

.fas, .fab
{
    color: #3E546C;
    margin: 10px;
    cursor: pointer;
    font-size: 20px;
}

.fas:hover, .fab:hover
{
    color: white;
}

#page-container
{
    display: flex;
    flex-direction: column;
}

#logo-container span
{
    color:white;
}

#header
{
    background-image: url("/img/banner-sm.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;  
    flex-direction: column; 
    justify-content: flex-start;
}

#top-bar-container
{
    display: flex;
    justify-content: space-between;
}

#header-social-icons
{
    display: flex;
    justify-content: flex-start;
    height: auto;
    margin-right: 20px;
}

#email-icon-container
{
    cursor: pointer;
    position: absolute;
    right: 20px;
    top:20px;
    z-index: 950;
    
}

#email-icon-container i
{
    cursor: pointer;
    color: #A79965;
    font-size: 1.7rem;
}

#header-content-container
{
    transform: translateY(-40px);
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#header-text-container
{
    padding: 10px 30px;
    background-color: rgba(167, 153, 101, 0.7);
    transform: skewX(-15deg);
}


#header-contact-button-section
{
    transform: translateX(15px) translateY(-10px) skew(-15deg);
    height: auto;
    background-color: rgba(0,0,0,.7);
    padding: 10px 10px;
}

#header-contact-button-section a
{
    border-radius: 10px;
    font-size: .8rem;
}

#header-content-container
{
    transition: all 0.5s ease;
}

#header-content-container.nav-open
{
    opacity: 1;
}

#bio-section
{
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    justify-content: space-evenly;
    align-items: center;    
    background-color: rgb(243, 243, 243);
}

#bio-section-header
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#bio-section img
{
    width: 150px;
    height: 150px;
}


#bio-section h2
{
    margin-bottom: 20px;
}

#bio-section p
{
    color: rgb(97, 93, 93);
}

#bio-section span
{
    color: #3E546C;
}

#bio-item-list
{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

#bio-item-list span
{
    color: #3E546C;
}

#contact-photos-container
{
    padding: 100px 30px;
    background-image: url('/img/contact-section-background.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-container
{
    width: 90%;
}



#contact-container h2.nav-open,
#bio-section h2.nav-open
{
    opacity: 0;
}

#contact-container form{
    padding-top: 10px;
}

#contact-container form input
{
    border: solid 1px rgb(100, 92, 60);
    background-color:rgba(25, 26, 26,.9);
    color: rgb(243, 243, 243);
    width: 100%;
    font-size: .8rem;
    margin-top: 10px;
    padding: 15px;
}

#contact-container form input::placeholder
{
    color: rgb(82, 82, 82);
}

#contact-buttons-container
{
    padding-top: 20px;
    display: flex;
}

button
{
    width: auto;
    padding:10px 20px;
    margin-right: 20px;
    border: 2px solid  rgb(100, 92, 60);
    font-size: .7rem;
    cursor: pointer;
    background-color: rgba(25, 26, 26,.9);
    color: rgb(102, 103, 104);
    transition: all .3s ease;
}

button:hover
{
    background-color: rgb(167, 153, 101);
    border-color: rgb(167, 153, 101);
    color: rgb(243, 243, 243);
}

#contact-container textarea
{
    margin-top: 10px;
    background-color:rgba(25, 26, 26,.9);
    color: rgb(243, 243, 243);
    border: solid 1px rgb(100, 92, 60); 
    padding: 15px;
    font-size: .7rem;
    width: 100%;
    height: 200px;
}

#contact-container textarea::placeholder
{
    color: rgb(82, 82, 82);
}

footer{
    padding: 10px 30px;
    background-color: rgb(26, 27, 27);
}

footer span
{
    font-size: .5em;
}

footer a
{
    text-decoration: underline;
}

.modal
{
    display:none;
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    justify-content: center;
    align-items: center;
    background-color: rgb(0,0,0, .8);
    z-index: 1000;
}

.modal.open
{
    display: flex;
}

.modal-container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.modal i
{
    color: #eee;
}

.modal.error i
{
    color: red;
}

.modal.email-sent i
{
    color: green;
}

.modal.warning i
{
    color: rgb(255, 255, 107);
}

.modal-button
{
    margin-top: 10px;
}

@media all and (min-width: 400px)
{
    html
    {
        font-size: 20px;
    }
}

@media all and (min-width: 700px)
{
    html
    {
        font-size: 26px;
    }
}

@media all and (min-width: 768px)
{

    #bio-section
    {
        flex-direction: row;
        align-items: flex-start;
    }

    #bio-section-body
    {
        border-left: solid 1px rgb(131, 125, 125);
    }

    #bio-section-header
    {
        display: flex;
        flex-direction: column;
    }

    #bio-section-body
    {
        width: 50%;
        padding-left: 40px;
    }

    #contact-container
    {
        width: 70%;
    }
}