/* This is my default style sheet */

:root {
  --primary-color: #111111;
  --secondary-color: #000000;
  --shadow-color: #e70606;
  --text-color: #ffe3d8;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  background-color: var(--secondary-color);
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


/* 2. Navigation */

.navWrap {
  position: sticky;/*  ** note the menu will not be sticky until we add more page content */
  top: 0;
  z-index: 99;
  height: 52px;
  width: 100%;
  background-color: var(--primary-color);
  border-bottom: 1px solid #e0e5eb;
  box-shadow: 0px 1px 8px var(--shadow-color);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input#navToggle {
  display: none;
}

input#navToggle ~ label {
  position: relative;
  padding: 0.25rem;
  width: 2rem;
  height: 1.25rem;
  height: 2rem;
}

input#navToggle ~ label > span,
input#navToggle ~ label > span::before,
input#navToggle ~ label > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  height: 0.125rem;
  width: 1.75rem;
  opacity: 1;
  background: var(--shadow-color);
  transition: 0.14s ease-in-out;
}

input#navToggle ~ label > span::before {
  top: -0.5rem;
}

input#navToggle ~ label > span::after {
  top: 0.5rem;
}

#navToggle:checked ~ label > span {
  width: 0;
  background: rgba(18, 18, 18, 0);
}

#navToggle:checked ~ label > span::before {
  transform: rotateZ(45deg);
  top: 0;
}

#navToggle:checked ~ label > span::after {
  transform: rotateZ(-45deg);
  top: 0;
}

#navToggle:checked ~ nav {
  left: 0;
}

nav {
  position: absolute;
  z-index: -1;
  top: 3.0rem;
  left: -110%;
  width: 100%;
  transition: 0.22s ease-in-out;
}

nav::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  background-color: var(--secondary-color);
  background-size: cover;
}

nav ul {
  padding: 0rem;
  list-style-type: none;
}

nav ul li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: .75rem 1rem;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,.5);
  transition: 0.14s ease-in-out;
}

nav ul li a:hover {
  color: var(--shadow-color);
  background: #e0e5eb;
}


nav .btn {
  background: #fff;
  border-bottom: none;
  border-radius: 4px;
  box-shadow: inset 0 0 5px #eeb80c;
  color: #223054;
  width: 40%;
  padding: 0.25rem .6rem;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgb(19,177,231);
  display: flex;
  justify-content: center;
  margin: auto;
}

nav .btn:hover {
  background-color: #223054;
  box-shadow: inset 0 0 5px #13b1e7;
  color: #fff;
}


/* 4 Footer */

footer {
padding-top: 1%;
background-color: #1a1a1a;
}

.contact_info {
font-size: 0.8rem;
color: #fff;
padding: 0rem 0.2rem ;
text-align: center;
padding-left: 1px;
}

.contact_info ul {
list-style-position: inside;
text-align: left;
padding-left: 10%;
}

.social {
font-size: 0.8rem;
color: #fff;
text-align: center;
}

.social_icons {
font-size: 200%;
display: inline-block;
}

.social_icons a {
color: #ffffff;
margin-right: 20px;
margin-left: 20px;
}

.social_icons a :hover {
color: #3b3b3b;
}

.social p {
font-size: 0.5rem;
padding-bottom: 0.1rem;
}


/* Media Queries */
@media screen and (min-width: 700px) {

  /* Navigation Media Queries */
  .navWrap {
      display: grid;
      grid-template-columns: 100px minmax(auto, -1100px);
      align-items: center;    
      justify-content: center;
      height: auto;
  }
    
    .navToggleLabel {
      display: none;
  }
    
    nav {
      position: sticky;
  }
    
    nav ul {
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }
    
    nav ul li a {
      font-size: 1.5rem;
      border-bottom: none;;
  }
    
    nav ul li a:hover {
      background: transparent;
      text-decoration: underline;

  }
    
    nav::after, nav ul li:last-of-type::before {
      display: none;
      padding: initial;
  }
    
    nav .btn {
      width: auto;
      background: #13b1e7;
      color: #fff;
      letter-spacing: normal;
      text-shadow: none;
      box-shadow: none;
  }
    
    nav.btn:hover {
      box-shadow: inset 0 0 5px #13b1e7;
      background-color: #223054;
  }

  .hidden *:not(.no-animation){
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
  }
  
  .show *:not(.no-animation){
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }

}
