
/* --Font Formatting-- */
@import url("http://fonts.googleapis.com/css?family=Oleo+Script");
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");


/* --Root Formatting-- */
:root {
  --clr-white: #fff;
  --clr-black: #222;
  --clr-primary-1: hsl(206, 79%, 61%);
  --clr-primary-2: hsl(206, 85%, 18%);
  --clr-primary-3: hsl(206, 85%, 82%);
  --clr-primary-4: hsl(206, 89%, 77%);
  --clr-grey-1: hsl(210, 27%, 40%);
  --clr-grey-2: hsl(210, 33%, 31%);
  --clr-grey-3: hsl(210, 60%, 17%);
  --clr-grey-4: hsl(211, 23%, 50%);
  --clr-grey-5: hsl(211, 35%, 97%);
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --spacing: 0.1rem;
  --transition: all 0.3s linear;
  --radius: 0.25rem;
  --max-width: 1170px;
  --fixed-width: 620px;
}




/* --General website formatting-- */

*,
::after,
::before {
  margin: 0;
  padding: 0;

}

html, body {
  font-family: var(--ff-secondary);
  background: var(--clr-grey-5);
  color: var(--clr-grey-3);
  line-height: 1.5;
  font-size: 0.875rem;
  width: 100%;
  height: 100%;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}

p {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: black;
}

section {
  padding-top: 4rem;
}






/* --Containers and Wep Layout-- */

#page-container{
    overflow: auto;
}


#header{
    width: 85%;
    height: 80px;
    margin: 0 auto;
    padding-top:30px;
    padding-right:55px;
    text-align: center;
}

#content-wrap{
    min-height: 785px;
}

#content{
    width: 95%;
    margin: 0 auto;
}


.footer{
    position: relative;
    bottom: 0;
    background:#0099CC;
    width: 100%;
    height: 2.5rem;
    clear: both;
}



.layout {
  min-height: 100%;
  display: grid;
  grid-template-columns: 190px auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "header header"
    "sidebar main"
    "footer footer";
}

.header {
  grid-area: header;
}

.sidebar {
  grid-area: sidebar;
}

.main {
  grid-area: main;
}

.footer {
  grid-area: footer;
}

#footer{
  padding-top: 10px;
  padding-left: 10px
}






/* --Sidebar-- */

.sidebar {
    font-family: var(--ff-primary);
    height:100%;
    background:#151719;
}

nav ul {
    color: rgba(230, 230, 230, 0.9);
    list-style: none;
    height: 100%;
    width: 100%;
}

nav ul li{
    line-height: 60px;
    border-bottom: 1 px solid transparent;
}

nav ul li a{
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-left: 15px;
    font-weight: 500;
    display: block;
    width: 100%
    border-left: 3px solid transparent;
}

nav ul li a:hover{
    color: cyan;
    background-color: var(--clr-grey-3);
}

nav ul ul {
    position: static;
    display: none;
}

nav ul ul li{
    line-height: 42px;
    border-bottom: none;
}

nav ul ul li a{
    font-size: 16px;
    color: white;
    padding-left: 55px
}

nav ul li a span{
    position: absolute;
    top: 30%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.4s;
}

nav ul li a span.rotate{
    transform: translateY(-50%) rotate(-180deg);
}

nav ul .about-show.show {
    display: block;
}

nav ul .ances-show.show1 {
    display: block;
}

nav ul .hobbies-show.show2 {
    display: block;
}

.active{
    background-color: #307b8b;
}




/* --Navigation bar-- */

nav {
  background: var(--clr-white);
  box-shadow: var(--light-shadow);
}

.nav-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.nav-toggle {
  font-size: 1.5rem;
  color: var(--clr-grey-1);
  background: transparent;
  border-color: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.nav-toggle:hover {
  color: var(--clr-grey-1);
  transform: rotate(90deg);
}

.logo {
  height: 70px;
  padding-left: 5px;
}

.links a {
  color: var(--clr-grey-2);
  font-size: 1rem;
  letter-spacing: var(--spacing);
  display: block;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.links a:hover {
  background: var(--clr-primary-3);
  color: var(--clr-primary-1);
  padding-left: 1.5rem;
}

.social-icons {
  width: 250px;
  padding-right: 60px;
  display: none;
}

.links {
  padding-right:14px;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.show-links {
  height: 10rem;
}


@media screen and (min-width: 800px) {

  .nav-center {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .links {
    height: auto;
    display: flex;
  }

  .links a {
    padding: 0;
    margin: 0 2.5rem;
  }

  .links a:hover {
    padding: 0;
    background: transparent;
  }

  .social-icons {
    display: flex;

  }

  .social-icons a {
    margin: 0 0.5rem;
    color: var(--clr-grey-1);
    transition: var(--transition);
  }

  .social-icons a:hover {
    color: var(--clr-primary-4);
    background: transparent;
  }
}






/* --Quote Container-- */

.section-quote {
   position: relative;
   width: 100%;
   height: 100%;
   flex-direction: column;
   align-item: center;
   justify-content: center;
   overflow: hidden;
}

.quote-container {
    min-height: 450px;
    z index: 2;
}

.quote-text{
    min-height: 20vh;
}

.quote-container h1{
    font: 250 50px/1.3 'Oleo Script', Helvetica, sans-serif;
    color: gray;
    text-align: center;
    padding: 55px 180px;
}

.quote-container p{
    text-transform: capitalize;
    color: gray;
    text-align: right;
    font-size: italic;
    font-size: 30px;
    padding-right: 250px;
    height: 120px;
}


#quote-btn{
    float: right;
    font-size: 18px;
    padding: 10px 20px;
    background-color: #191716;
    color: #b3cccc;
    transform: uppercase;
}

#quote-btn:hover{
    color: #191716;
    background-color: #b3cccc;
}


.video-container {
   position: absolute;
   top: 0;
   height: 100%;
   width: 100%;
   opacity: 0.1;
}






<!--About Me-->

.i-am-section {
}

.i-am-container {
   display: flex;
   background-color: var(--clr-grey-5);
   padding-left: 75px;
}

.i-enjoy-container {
   display: flex;
   background-color: var(--clr-grey-5);
   padding-left: 75px;
}

.i-achieved-container {
   display: flex;
   background-color: var(--clr-grey-5);
   padding-left: 75px;
}

.about-me-container {
   position: relative;
   width: 250px;
   height: 175px;
   padding-right: 50px;
}

.about-me-image {
   display: block;
   width: 100%;
   height: 100%;
}

.about-me-overlay {
   position: absolute;
   top: 0px;
   bottom: 0;
   left: 0;
   right: 0;
   width: 250px;
   height: 175px;
   opacity: 0;
   transition: .5s ease;
   background-color: darkgrey;
}

.about-me-container:hover .about-me-overlay {
   opacity: 1;
}

.about-me-text {
   color: white;
   font-size: 20px;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   text-align: center;
}

@keyframes lowerAd {
   from { top: -80px; }   
   to { top: 150px; }
}

#about-me-mouseover {
   animation-name: lowerAd;
   animation-duration: 1s;
   animation-delay: 0.2s;
   animation-fill-mode: forwards;      
   position: fixed;
   right: 30px;
   top: -800px;
   width: 150px;
   font-size: 20px;
   background: linear-gradient(#DA332B, white);
   box-shadow: 5px 5px;
   padding: 20px;
   border-radius: 4px;   
   transition: all 200ms ease-in-out;  
}

#about-me-mouseover:hover {
   transform: scale(1.2, 1.2);
}





<!--About My Family-->

.family-tree-container 
{
   display: flex;
   flex-wrap: wrap;
   padding: 5px;
   justify-content: space-evenly;
   align-items: center;
   background-color: var(--clr-grey-5);
}

.about-my-family-image 
{
   margin: 5px;
}





<!--My Pets-->


.my-pets-section {
}

.accordionPets {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  font-weight: bold;
  transition: 0.4s;
}

.activePets, .accordionPets:hover {
  background-color: #ccc;
}

.accordionPets:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.activePets:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.indentedPets {
  padding-left: 650px;
}

.pack-member {
  float: left;
  padding-right: 5rem;
}





<!--Hiking & Camping-->

.hiking-pics-section {
   align-items: center;
   justify-content: center
}

.hiking-images-container {
   display: flex;
   background-color: var(--clr-grey-5);
   padding-left: 75px;
}


.hiking-image-box {
   position: relative;
   width: 301px;
   height: 400px;
   padding-right: 50px;
}

.hikingImgBox {
   display: block;
   width: 100%;
   height: 100%;
   transition: 0.5s;
   opacity: 0.5;
   filter: grayscale(1)
}

.hikingImgBox:hover {
  opacity: 1;
  filter: grayscale(0);
}





<!--Feedback-->

form div {   
   margin-bottom: 8px;
}

input, select, textarea {
   width: 350px;
   padding: 10px;
   border: 1px solid #aaa;
   border-radius: 4px;
   box-sizing: border-box;
}

input[type=number], input[type=date] {
   width: auto;
}

button {
   width: 100px;
   background-color: #5e84ee;
   color: white;
   padding: 15px;
   margin: 10px 0;
   border: none;
   border-radius: 4px;
   cursor: pointer; 
}

button:hover {
   background-color: #3d6ae6;   
}





