@import url('https://fonts.googleapis.com/css?family=Charm|Julius+Sans+One|Tangerine');

*{
    box-sizing: border-box;
    margin: 0;
}

:root{
    --color-white: #fff !important;
    --color-white-rgba: rgba(255, 255, 255, 0.5) !important;
    --color-green: 	#7c916d !important;
    --color-green-rgba: rgba(124, 145, 109, 0.3) !important;
    --color-quote-back: rgba(124, 145, 109, 0.45) !important;
    --color-brown: #727167;
    --color-brown-rgba: rgba(114, 113, 103, 0.5);
    --color-back:#E9E6E1!important; 
    --shadow: 0 1px 4px rgba(80,80,80,0.8);
    --color-whitish: rgba(230, 229, 226, 0.5);
    --color-black: black !important;
  
}

body{
    font-family: 'Julius Sans One', sans-serif;
  background-color: var(--color-back);
  margin: 0;
}



footer{
    grid-area: foot;
}

.p-footer{
    text-align: center;
    background-color: var(--color-back);
    padding: 30px;
    margin-bottom: 0;
    border-top: var(--color-white) 2px solid;
}
.wrapper-home{
    grid-area: home;
    background-color: var(--color-green-rgba);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fill);
    grid-template-areas: 
    "header header header header" 
    "banner banner banner banner"
    "overview overview overview overview"
    "foot foot foot foot"
   
}

.banner{
    grid-area: banner;
    background-image: url(../images/boxed_ivy_cropped.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
}

header{
    grid-area: header;
    width: 100%;
    position: absolute; 
    z-index: 5;
}

.menu-wrapper{
    position: fixed;
    width: 100%;
    background-color: var(--color-brown-rgba);
}
.logo{
    height: 15vh;
    padding: 10px;
}
.jenna{
    color: var(--color-white);
    padding-top: 0.5em;

}
nav ul{
    list-style-type: none;
    display: flex;
    padding: 0;

}
nav ul li{
    flex:1;
    
}
nav a{
    text-decoration: none;
    color:var(--color-white);
    display: block;
    padding:1em;
    text-align: center;
    transition: all 0.3s; 
    font-size: 22px;
    padding-top: 1.3em;

}

nav a:hover{
    text-decoration: none;
    color:var(--color-white);
    display: block;
    padding:1em;
    text-align: center;
    transition: all 0.2s;
    font-size: 25px;
    padding-top: 1.3em;

}
nav ul li ul{
    display: none;
}
nav ul li:hover ul{
    display: block;
    position: absolute;
    font-size: 15px;
    background-color: var(--color-brown-rgba);
}

nav ul li ul li:hover a{
    position: relative;
    font-size: 25px;
 
}

.quote-wrapper{
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-quote-back);
    margin-top: 20em;
    margin-left: 24em;
    margin-right: 24em;
    border-radius: 10px;
}
.quote{
    font-size: 35px;
    font-family: 'Tangerine', cursive;
    padding: 20px;
    
}

.overview{
    grid-area: overview;
    border-top: white solid 2px;
    

}

.options-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 2fr;
    grid-gap: 3em;
    margin: 8em 4em 8em 4em;
    
}

.box{
    text-align: center;
    box-shadow: var(--shadow);
    background-color: var(--color-back);
    position: relative;

}

h4.heading{
    position: absolute;
   color: var(--color-white);
   font-family: 'Tangerine', cursive;
   font-size: 5em;
   padding-top: .8em;
   padding-left: .5em;
   text-decoration: ;
}

.box-img{
    height: 40vh;
    margin: 1em;
    background-image: url(../images/rain_window.jpg);
    background-size: cover;
    background-position: relative;
}

.box-img1{
    height: 40vh;
    margin: 1em;
    background-image: url(../images/sylvia\(9\).jpg);
    background-size: cover;
}

.box-img2{
    height: 40vh;
    margin: 1em;
    background-image: url(../images/potted_plants.jpg);
    background-size: cover;
}

.box-img3{
    height: 40vh;
    margin: 1em;
    background-image: url(../images/coffee_building.jpg);
    background-size: cover;
}




.p-button{
    position: absolute;
    margin: 12em 0em 10em 60%;
    
}

.button{
    background-color: var(--color-green);
    color: var(--color-white);
    border-radius: 10px;
    padding: 10px;

}

.button:hover{
    background-color: var(--color-green-rgba);
    color: var(--color-white);
    text-decoration: none;
}

/* End of Home */

.wrapper-about{
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 1fr 1fr auto auto;
    grid-template-areas:
    "header header"
    "title title"
    "aboutsection aboutsection"
    "foot foot"
}

.title{
    grid-area: title;
}

.about-title{
    text-align: center;
}

.about{
    font-family: 'Tangerine', cursive;
    font-size: 90px;
    color: var(--color-brown);
    margin: 10px;
}

.about-section{
    grid-area: aboutsection;

}


.about-div{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 2fr;
    grid-row-gap: 2em;
    background-color: var(--color-green-rgba);
    border-bottom: 1px var(--color-white) solid;
    border-top: 2px var(--color-white) solid;
    grid-template-areas: 
    "photo head"
    "photo substance"
}


.about-heading{
    grid-area: head;
    text-align: left;
    color: var(--color-white);
    margin-top: 10%;
    font-size: 40px;

}

.substance{
     grid-area: substance;
}

.bio{
    background-color: var(--color-white-rgba);
    border-radius: 5%;
    padding: 2em;
    margin-right: 8em;

 
}

.me{
    grid-area: photo;
    height: 70%;
    background-repeat: no-repeat;
    border-radius: 100%;
    margin-top: 15%;
    justify-self: center;
}

/* End of About */



.wrapper-gallery{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr auto auto auto;
    grid-template-areas:
    "header"
    "title"
    "gallery"
    "page"
    "foot"

}



.gallery-title{
    text-align: center;


}

.gallery{
    font-family: 'Tangerine', cursive;
    font-size: 90px;
    color: var(--color-brown);
    margin: 10px;
}

.container-gallery{
    grid-area: gallery;
    border-top: 2px var(--color-white) solid;
    background-color: var(--color-green-rgba);
    padding: 5em 15em 5em 15em;
}

.slider-wrapper{
    background-color: var(--color-back);
    box-shadow: var(--shadow);
    width: 100%;
    padding: 2em 5em 2em 0;

}
.slider{
    position: relative;
    width: 100%;
   margin-left: 5%;

}

.slide-img{
    position: absolute;
   width: 120vh;
 
    text-align: center;
}


.page-turner-wrapper{
    grid-area: page;
}


.bar{
    display: grid;
    grid-template-columns: repeat(6, 5em);
    grid-column-gap: 0.5em;
    margin: 2em 0px 2em 25%;

}
.page-box{
    list-style-type: none;
    background-color: var(--color-white);
    padding: 9px 8px 8px 0px;
    text-align: center;
}
.page-box a{
    font-family: 'Tangerine', cursive;
    color: var(--color-black);
    font-size: 30px;
    text-decoration: none;
}

.page-box:hover{
    text-decoration: none;
    background-color: var(--color-green-rgba);
}
.active-box{
    background-color: var(--color-green);

}



/* End of Slide Show */

.wrapper-gallery1{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1fr 1fr auto auto auto;
    grid-template-areas:
    "header"
    "title"
    "gallery"
    "page"
    "foot"

}

.container-gallery1{
    grid-area: gallery;
    border-top: 2px var(--color-white) solid;
    background-color: var(--color-green-rgba);
}

.card-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 2em;
    margin: 5em;
}

.cards img{
    width: 100%;
    box-shadow: var(--shadow);
}

/* START OF BAUGETTE */

#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease; }
    #baguetteBox-overlay.visible {
      opacity: 1; }
    #baguetteBox-overlay .full-image {
      display: inline-block;
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center; }
      #baguetteBox-overlay .full-image figure {
        display: inline;
        margin: 0;
        height: 100%; }
      #baguetteBox-overlay .full-image img {
        display: inline-block;
        width: auto;
        height: auto;
        max-height: 100%;
        max-width: 100%;
        vertical-align: middle;
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
           -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
                box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }
      #baguetteBox-overlay .full-image figcaption {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        line-height: 1.8;
        white-space: normal;
        color: #ccc;
        background-color: #000;
        background-color: rgba(0, 0, 0, 0.6);
        font-family: sans-serif; }
      #baguetteBox-overlay .full-image:before {
        content: "";
        display: inline-block;
        height: 50%;
        width: 1px;
        margin-right: -1px; }
  
  #baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease; }
    #baguetteBox-slider.bounce-from-right {
      -webkit-animation: bounceFromRight .4s ease-out;
              animation: bounceFromRight .4s ease-out; }
    #baguetteBox-slider.bounce-from-left {
      -webkit-animation: bounceFromLeft .4s ease-out;
              animation: bounceFromLeft .4s ease-out; }
  
  @-webkit-keyframes bounceFromRight {
    0% {
      margin-left: 0; }
    50% {
      margin-left: -30px; }
    100% {
      margin-left: 0; } }
  
  @keyframes bounceFromRight {
    0% {
      margin-left: 0; }
    50% {
      margin-left: -30px; }
    100% {
      margin-left: 0; } }
  
  @-webkit-keyframes bounceFromLeft {
    0% {
      margin-left: 0; }
    50% {
      margin-left: 30px; }
    100% {
      margin-left: 0; } }
  
  @keyframes bounceFromLeft {
    0% {
      margin-left: 0; }
    50% {
      margin-left: 30px; }
    100% {
      margin-left: 0; } }
  
  .baguetteBox-button#next-button, .baguetteBox-button#previous-button {
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
    height: 60px; }
  
  .baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    border: 0;
    -moz-border-radius: 15%;
         border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease; }
    .baguetteBox-button:focus, .baguetteBox-button:hover {
      background-color: rgba(50, 50, 50, 0.9); }
    .baguetteBox-button#next-button {
      right: 2%; }
    .baguetteBox-button#previous-button {
      left: 2%; }
    .baguetteBox-button#close-button {
      top: 20px;
      right: 2%;
      right: calc(2% + 6px);
      width: 30px;
      height: 30px; }
    .baguetteBox-button svg {
      position: absolute;
      left: 0;
      top: 0; }
  
  /*
      Preloader
      Borrowed from http://tobiasahlin.com/spinkit/
  */
  .baguetteBox-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px; }
  
  .baguetteBox-double-bounce1,
  .baguetteBox-double-bounce2 {
    width: 100%;
    height: 100%;
    -moz-border-radius: 50%;
         border-radius: 50%;
    background-color: #fff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2s infinite ease-in-out;
            animation: bounce 2s infinite ease-in-out; }
  
  .baguetteBox-double-bounce2 {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }
  
  @-webkit-keyframes bounce {
    0%, 100% {
      -webkit-transform: scale(0);
              transform: scale(0); }
    50% {
      -webkit-transform: scale(1);
              transform: scale(1); } }
  
  @keyframes bounce {
    0%, 100% {
      -webkit-transform: scale(0);
         -moz-transform: scale(0);
              transform: scale(0); }
    50% {
      -webkit-transform: scale(1);
         -moz-transform: scale(1);
              transform: scale(1); } }



/* End of Gallery pages */

.wrapper-skills{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto auto;
    grid-template-areas:
    "header header"
    "title title"
    "skills skills"
    "foot foot"
}


.blanket-skills{
    grid-area: skills;
}


.skill-set{
    background-color: var(--color-green-rgba);
    border-top: var(--color-white) solid 2px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 3em;
    padding: 3em 4em 5em 4em;
    grid-template-areas:
    "comp nun"
}

.skills-title{
    text-align: center;
}

.skills{
    font-family: 'Tangerine', cursive;
    font-size: 90px;
    color: var(--color-brown);
    margin: 10px;
}


.skills-heading{
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-green-rgba);
    width: 100%;

}

.title2{
    margin-top: 1em;
    padding: 20px;
    text-align: center;
    font-size: 35px;
    color: var(--color-black);
    border-bottom: 2px var(--color-green-rgba) solid;
    
}

.computer{
    grid-area: comp;

}

.skill-box{
    box-shadow: var(--shadow);
    background-color: var(--color-back);
    padding: 0px 1em 1em 1em;
    text-align: center;
    
}
.nun-wrapper{
    grid-area: nun;

}


.nun{
    grid-area: nunchucks;
}

.chucks{
    height: 300px; 
    text-align: center;
}

.hack{
    height: 300px;
}



/* End of SKILLS */

.wrapper-services{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto auto;
    grid-template-areas:
    "header header"
    "title title"
    "serv serv"
    "foot foot"
}

.services-section{
    grid-area: serv;
}

.services-container{
    display: grid;
    padding: 2em;
    text-align: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: var(--color-green-rgba);
    border-top: var(--color-white) solid 2px;
}

.services-title{
    text-align: center;
}

.services{
    font-family: 'Tangerine', cursive;
    font-size: 90px;
    color: var(--color-brown);
    margin: 10px;
}

.services-heading{
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-green-rgba);
    width: 100%;
}

.services-box{
    background-color: var(--color-back);
    margin: 1em;
    padding: 1em 0px 1em 0px;
    box-shadow: var(--shadow);
}

.fas{
    font-size: 4em;
    padding: 10px;
}

.rates{
    font-size: 40px;
    
}

.title3{
    font-size: 2.5em;
    margin-top: 10px;
    
}

/* End OF SERVICES */

.wrapper-contact{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto auto;
    background-color: var(--color-back);
    font-family: 'Julius Sans One', sans-serif;
    grid-template-areas:
    "header header"
    "title title"
    "contact contact"
    "foot foot"
}

.contact-title{
    text-align: center;
}

.contact{
    font-family: 'Tangerine', cursive;
    font-size: 90px;
    color: var(--color-brown);
    margin: 10px;
}


.contact-section{
    grid-area: contact;
}

.contact-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    background-color: var(--color-green-rgba);
    border-top: var(--color-white) solid 2px;
    grid-gap: 3em;
    padding: 4em 2em 4em 4em;
    grid-template-areas:
    "phone form"
}


.modal-content{
    grid-area: form;
}


.phone-img{
    height: 80vh;
    background-color: var(--color-back);
    padding: 1em;
    box-shadow: var(--shadow);
}


.phone-wrapper{
    grid-area: phone;
}





/* END OF CONTACT */

.wrapper-success{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr auto auto;
    grid-template-areas:
    "header"
    "title"
    "success"
    "foot"
}

.success-title{
    text-align: center;
}

.success{
    font-family: 'Tangerine', cursive;
    font-size: 90px;
    color: var(--color-brown);
    margin: 10px;
}

.success-section{
    grid-area: success;
    background-color: var(--color-green-rgba);
    border-top: var(--color-white) solid 2px;
}


.success-img{
    background-image: url(../images/orangetree.jpg);
    background-size: cover;
    height: 100vh;
    padding: 2em;
    margin: 2em;
     box-shadow: var(--shadow);
}

.thanks{
    color: var(--color-white);
    text-align: center;
   margin-top: 6em;
    font-weight: bolder;
background-color: var(--color-brown-rgba);
padding: 10px 0px 10px 0px;
border-radius: 5px;
}

#particles-js{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


/* END OF SUCCESS */
