/*
Theme Name: Life
Author: @BrandonDevs
Description: Theme for TheUncommonLife
Version: 0.0.1
Tags: life
*/

/* COLORS

#021D2A
#D37D57
#55B7D6

*/

#life-white-block {
	background: white;
	width: 102%;
	height: 100%;
	z-index: 98;
	position: relative;
	bottom: 0px;
	right: 8px;
	padding: 5px;
}

#life * {
  box-sizing: border-box;
}

#life {
  padding: 0;
  margin: 0;
  font-family: 'Amatic SC', cursive;
  /* Font-weight 200 or 400 */
  color: #021D2A;
}

#life #container {
	padding-bottom: 0px;
}

#life .custom-logo {
  position: relative;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  border-top-left-radius: 0px;
  width: 135px;
  height: 135px;
  z-index: 10;
	float: left;
}

#life #logo {
	background: #D37D57;
	color: white;
	width: 90px;
	height: 90px;
	font-family: 'Amatic SC', cursive;
	float: left;
	z-index: 10;
	position: relative;
	font-size: 3em;
	padding-top: 10px;
	border-bottom-right-radius: 15px;
}

/* ^ If not using an image for logo, use this css style. ^ */

#life #contact-nav {
  background: white;
  color: #021D2A;
  text-align: center;
  font-size: 0.8em;
  font-weight: bold;
  list-style-type: none;
  width: 95%;
  padding-top: 8px;
  height: 40px;
  position: relative;
  top: 0px;
  left: 20px;
  z-index: 9;
}

#life #contact-nav li {
  display: inline;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  bottom: 3px;
}

#life #contact-nav a {
  color: #D37D57;
  text-decoration: none;
}

#life #close-contact-btn, #life #close-contact-text, #life #close-nav-btn, #life #close-nav-text {
  display: none;
}

#life #close-contact-btn {
  display: none !important;
}

#life #hours {
  margin-left: 5px;
}

#life #phone-icon, #life #email-icon, #life #facebook-icon, #life #twitter-icon {
  height: 20px;
  width: 20px;
  position: relative;
  top: 5px;
}

#life #phone-icon {
  transform: rotate(285deg);
  top: 6px;
  left: 2px;
}

#life #nav {
  height: 80px;
  width: 100%;
  position: relative;
  top: 27px;
  left: 0;
  background: #021D2A;
  z-index: 9;
}

#life #hamburger-btn {
  display: none;
}

#life .life-menu ul {
  list-style-type: none;
  list-style: none;
  list-style-image: none;
  width: 1006px;
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;

  width: 95%;
  position: relative;
  top: 2px;
  left: 5%;
  z-index: 9;
}

#life .life-menu li {
    padding: 0px;
    padding-left: 35px;
    padding-right: 35px;
    display: inline;
}

#life .life-menu a {
  color: white;
  text-decoration: none;
}

#life .life-menu a:hover {
  color: white;
}

#life #intro {
  background: url('life/background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
  margin: 0px auto;
  position: relative;
  bottom: 0px;
  z-index: 1;
}

#life #intro-overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 600px;
  z-index: 2;
}

#life #intro-text {
  font-family: 'Amatic SC', cursive;
  font-size: 8em;
  text-align: center;
  color: white;
  width: 600px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#life .btn {
	width: 200px;
  padding: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  text-align: center;
  color: white;
  background: #D37D57;
  margin: 0px auto;
  display: block;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.3em;
}

#life .btn a:hover {
  color: white;
}

/* Indivual Buttons */

#life #goal-btn {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#life #intro-arrow {
  display: block;
  font-size: 50pt;
  width: 35px;
  height: 35px;
  background: transparent;
  border-left: 7px solid #fff;
  border-top: 7px solid #fff;
  position: absolute;
  z-index: 9;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  animation: life-arrow 3s infinite;
}

@keyframes life-arrow {
   0%   { transform: translateY(0px) rotate(225deg); }
   50%   { transform: translateY(15px) rotate(225deg); }
   100% { transform: translateY(0px) rotate(225deg); }
}

/*

  START OF MOBILE VERSION
  START OF MOBILE VERSION

*/

/* Hamburger BTN menu appears */

@media screen and (max-width: 4000px) {
  #life .custom-logo {
    width: 85px;
    height: 85px;
  }

  #life #hamburger-btn {
    display: block;
    position: absolute;
    top: 0px;
    right: 10px;
    color: white;
    font-size: 2.5em;
    cursor: pointer;
  }

  #life .menu {
    display: none;
  }

  #life .nav-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #021D2A;
    z-index: 20;
    display: none;
  }

  #life .life-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    height: initial;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    background: #021D2A;

    list-style-type: none;
    list-style: none;
    list-style-image: none;
    text-transform: uppercase;
  }

 #life .life-menu li {
    font-size: .8em;
    margin-top: 50px;
    display: block;
    padding: 0;
  }

  #life #nav {
    top: 0px;
    height: 70px;
  }

  #life #contact {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    display: none;
    z-index: 20;
  }

  #life #contact-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    height: initial;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
  }

  #life #contact-nav li {
    display: block;
    margin-bottom: 50px;
    font-size: 1em;
  }

  #life #contact-nav li:nth-last-child(1){
    margin-bottom: 0px;
  }

  #life #close-contact-btn {
    display: block !important;
    color: #D37D57;
    cursor: pointer;
    font-size: 2em !important;
  }

  #life #close-contact-text {
    display: table !important;
    margin: 0px auto;
    cursor: pointer;
    font-size: .5em;
  }

  #life #close-nav-btn {
    cursor: pointer;
    text-align: center;
    color: white;
    font-size: 1.5em !important;
    margin-top: 15px;
  }

  #life #close-nav-text {
    color: white;
    display: table !important;
    margin: 0px auto;
    cursor: pointer;
    font-size: .5em;
  }

  #life #phone-icon, #life #email-icon, #life #facebook-icon, #life #twitter-icon {
    height: 20px;
    width: 20px;
    position: relative;
    top: 0px;
    margin: 5px auto;
    display: table;
  }

  #life #phone-icon {
    top: -3px;
  }

  #life #hours {
    margin: 10px auto;
    display: table;
    /* Creates line break */
  }

  #life #intro-text {
    font-size: 4em;
    top: 38%;
    width: 100%;
  }

  #life #goal-btn {
    top: 65%;
  }
}

/* Hide stuff in Landscape */

@media screen and (orientation: landscape) {
    // Unusure if necessary.
}
