/***** BASE STYLES *****/
html {
	font-size: 16px;
}

body { padding: 0; margin: 0; };


body {
    color: #2b2b2b;
    font-family: 'Source Sans Pro', sans-serif;
}
main {
    display: flex;
    flex-direction: column;
}

/***** GRID *****/

.full-width {
    margin: 0 auto;
    overflow: auto; 
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
}

.half-width {
    float: left;
    width: 50%;
}

.third-width {
    /* float: left; */
    /* width: 33.33%; */
    display: flex;
}

/***** HEADER *****/

header {
    background: url('../img/full-background.png');
    background-position: center;
    background-size: cover;
    height: 800px;
}

header .full-width {
    flex-direction: column;
}

header h1 { 
    color: #bbc085;
    font-family:  'Lora', serif;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    padding: 65px 0 65px 25px;
}

.head {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    justify-content: center;
    flex-direction: row-reverse;
}

/***** NAV *****/
/**header .half-width {
    margin: 0 auto;
    overflow: auto;
    width: 100%;
}
nav {
    float: none; 
    padding: 55px;  
}



nav ul li{
    display: inline-block;
}**/

header nav {
    font-size: 2.125em;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row wrap;
    width: 98%;
  }
  
  header nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    width: 100%;
  }
  
  header nav ul li {
    font-size: 1.125em;
  }
nav ul li a {
    color: #a3a3a3;
    /*font-size: 14px;*/
    padding-left: 14px; 
	text-decoration: none;
    text-transform: uppercase; 
}

header h2 {
    clear: both;
    color: #9b9b9b;
    display: flex;
    justify-content: center;
    /* width: 98%; */
    font-family: 'Lora', serif;
    font-size: 72px;
    line-height: 80px;
    text-align: center;
    padding: 20px 0 20px 25px;
}

header h2 span {
    color: #2b2b2b;
}

/***** ABOUT *****/

#about .full-width {
    padding: 80px 0;
}

#about h2 {
    font-family:  'Lora', serif;
    font-size: 36px;
    padding-left: 50px;
}
 
#about p {
    font-size:  2em;
    color:#7f7f7f;
    line-height:  40px;
    padding-left:  50px;
    padding-right:  50px;
}

/***** WORK *****/

#work {
    background: #f9ceb7;
    text-align: center;
    display: flex;
}

#work .full-width {
    padding: 115px 0;
    justify-content: center;
}
#work .third-width {
    flex-direction: column;
    align-items: center;
}
 
#work img {
    padding-bottom: 30px;
}

#work h3 {
    font-size: 1.75em;
    line-height: 32px;
    margin: 0 auto;
    width: 15.5rem;    
}
 
#work p {
    font-family:  'Lora', serif;
    font-size: 1.75em;
    line-height: 30px;
    padding: 0 50px;
}

/***** CONTACT *****/

#contact {
    background: #ebebeb;
    text-align: center;
}

#contact .full-width {
    padding: 110px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    justify-content: space-around;
    
}

#contact img#contact-img {
    border: 12px solid #ffffff;
    margin-left: 25px;    
}

#contact h2, #contact #email-header, #contact #socialmedia-header, #contact ul {
    /*padding-left: 115px;*/
}
#contact #envelope {
    /*padding: 0 10px 0 115px;*/
}

#contact h2 {
    font-family: 'Lora', serif;
    font-size: 36px;
    line-height: 44px;
}
#contact #email-header{
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    margin: -30px 0 5px 0;
}
#contact #socialmedia-header {
    font-weight: bold;
    font-size: 29px;
    line-height: 44px;
    margin: 40px 0 0 0;
}
#contact a {
    color: #c49075;
    font-size: 28px;    
    font-weight: bold;    
    text-decoration: none;
}

#contact ul {
    list-style: none;
}
#contact ul li {
     display: inline-block;
}
#contact ul img {
    padding-right: 48px;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

   @media only screen and (min-width: 768px) {
    /*Tablet styles here*/
    /* General styles */
   }

@media only screen and (min-width: 1200px) {
    /*Desktop styles here*/
    /* General styles */
    header .head {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;

    }
    nav {
        /* float: right; */
        padding: 55px;  
        /* width: auto; */
        /* max-width: 300px; */
    }
    header nav ul {
        display: flex;
        justify-content: flex-end;
        list-style-type: none;
        width: auto;
    }
    header nav {
       width: auto;
       font-size: 1.4em;
    }

    .paragraph {
        display: flex;
        justify-content: space-between;
    }

    #about p {
        font-size: 1em;
    }

    #work .third-width {
        flex: 1;
    }

    #work p {
        font-size: 1em;
    }
    

    #contact .full-width {
        flex-direction: row;
    }

}