/*---------------------------------------
Template created by Ladies Learning Code 
http://ladieslearningcode.com
-----------------------------------------*/


/* GLOBAL STYLES
-----------------*/
/* apply a natural box layout model to all elements */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: "Merriweather", serif;
  line-height: 1.5;
  background: url(../images/black_white_pattern.jpeg) no-repeat fixed;
  background-size: cover;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0;
}

section h1 {
  text-transform: uppercase;
}

h2 {
  text-transform: uppercase;
}

header h1 {
  font-family: "Pacifico", Georgia, cursive;
  font-size: 110px;
  font-weight: lighter;
  color: #ffffff;
  text-shadow: 3px 3px 5px #000000;
}

header h1 span {
  background-color: #cc9933;
}

header h2
{
  font-size: 32px;
  color: #cc9933;
  text-shadow: 3px 3px 5px #000000;
  text-transform: lowercase;
}

section h1 {
  font-size: 32px;
  font-weight: bold;
  color: #cc9933;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* every other section element, 
starting with the second section */
section:nth-child(2n+1) { 
  background: #fefefe;
}
section:nth-child(2n+2) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

a {
  color: #cc9933;
}
a:hover {
  color: white;
  text-decoration: none;
}

ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 5px;
}

.content-wrap {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
  padding: 45px 0; 
  overflow: auto;
}


/* HEADER
----------*/
header {
  color: #fff;
  line-height: 100px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 175px 50px;
}


/* ABOUT ME / PROFILE
----------------------*/
.profile h1 {
  color: #cc9933;
  text-transform: lowercase;
}

.profile .summary {
  float: left;
  width: 70%;
}
.profile-image {
  float: left;
  width: 20%;
  margin-right: 5%;
  padding: 1px;
  border: 2px solid #cc9933;
  border-radius: 50%;
}


/* WORK EXPERIENCE & EDUCATION
-------------------------------*/
/* job & education entries */
.item {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 20px 0;
}
.item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}


/* WORK EXPERIENCE
-------------------*/
.work-experience .date {
  margin: 5px 0 20px 0;
  font-size: 12px;
}
.work-experience h3 {
  line-height: 1.25;
  font-size: 16px;
}
.work-experience a:hover {
  color: black;
}
.work-experience .details {
  float: left;
  width: 30%;
  padding-right: 30px;
}
.work-experience .description {
  font-size: 14px;
  width: 70%;
  float: right;
  margin-top: 5px;
}
.work-experience .description p:first-child {
  margin-top: 3px;
}

.company {
  font-family: "Open Sans", Georgia, cursive;
  font-weight: bolder;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #33550f;
}

/* EDUCATION
-------------*/
.education h2 {
  text-transform: uppercase;
}
.education h3 {
  color: #9269B5;
  text-shadow: 2px 2px 5px #000000;
}


/* CONTACT & FOOTER 
--------------------*/
.contact {
  background: #111;
}
.contact p {
  margin: 0;
}
.contact p:first-of-type {
  margin-top: 35px;
}
.contact .social {
  width: 50%;
  float: right;
  text-align: right;
  font-size: 30px;
}
.contact .social a {
  margin: 0 8px;
}

footer {
  clear: both;
  font-size: 12px;
  margin-top: 50px;
}



/* MEDIA QUERIES
--------------------*/

@media (max-width: 1000px) {
  
}

@media (max-width: 800px) {

  header {
    padding: 75px 40px;
    line-height: 90px;
  } 

  h1 {
  font-size: 20px;

} 

  .profile h1 {
  font-size: 29px;  

}

  .profile-image {
    width: 45%;
    padding-right: 0px;
    float: left;
    margin: 0 0 0px 0%;
  }

  .profile .summary {
    width: 50%; /* resets the width setting */
    /* or could also use width: 50% - if you don't want the text to wrap */
    float: right; /* removes the float */
  }

  .work-experience .details {
  float: none; /* removed float */
  width: 100%; /* auto will work as well */
  padding-right: 1px; /* don't need padding anymore now that it spans across the page */
}

  .work-experience .description {
  width: 100%;
  float: none; /* removed float */
}
  }

@media (max-width: 600px) {

  header {
    padding: 75px 40px;
    line-height: 90px;
  } 
  header h1 {
    font-size: 80px;
    line-height: 90px;
  }
  header h2 {
    font-size: 24px;
  }

}


