@font-face {
    font-family: 'joyfulregular';
    src: url('/joyful-webfont.woff2') format('woff2'),
         url('/joyful-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body
{
  margin: 0px;
  font-family: 'Libre Baskerville';
  font-size: 16px;
  line-height: normal;
  color: black;
  scroll-behavior: smooth;
}

a
{
  text-decoration: none;
}

h1
{
  font-family: 'joyfulregular';
  font-size: 110px;
  font-weight: normal;
  color: black;
  margin: 0px;
}

h2
{
  font-family: 'joyfulregular';
  font-size: 70px;
  font-weight: normal;
  color: black;
  margin: 0px;
}

h3
{
  font-family: 'Libre Baskerville';
  font-size: 50px;
  font-weight: normal;
  color: white;
  text-transform: uppercase;
  letter-spacing: 15px;
  font-weight: bold;
  margin: 0px;
}

h4
{
  font-family: 'Libre Baskerville';
  font-size: 35px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: bold;
  margin: 0px;
}

h5
{
  font-family: 'Libre Baskerville';
  font-size: 20px;
  font-weight: normal;
  color: white;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  margin: 0px;
}

h6
{
  font-family: 'Libre Baskerville';
  font-size: 15px;
  font-weight: normal;
  color: white;
  letter-spacing: 3px;
  font-weight: bold;
  margin: 0px;
}

.inlineAllInTheDetails
{
  font-family: 'joyfulregular';
  font-size: 40px;
  font-weight: normal;
}

#menuLogo
{
  position: absolute;
  left: 10px;
  top: 15px;
  z-index: 1001;
  width: 100px;
  opacity: 0;
  transition: all 500ms ease;
}

#menuBar
{
  background-color: rgba(37,37,37,0.8);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 120px;
  z-index: 1000;
  -webkit-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
     -moz-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
      -ie-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
       -o-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
          transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
}

.menuItem
{
  color: white;
  font-size: 25px;
  height: 100%;
  transition: all 0.5s ease;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 5px solid rgba(255,255,255,0);
}
.menuItem:hover
{
  color: white;
  border: 5px solid rgba(255,255,255,1);
}

.submenuItem
{
  color: white;
  font-size: 23px;
  transition: all 0.5s ease;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
}
.submenuItem:hover
{
  color: #666666;
}

#submenuMouseEventOverlay
{
  position: absolute;
  top: -60px;
  left: 0px;
  width: 106px;
  height: 60px;
  opacity: 0;
}

#hamburger
{
  display: none;
}
#homeLink
{
  display: none;
}

#menu
{
  position: absolute;
  bottom: 0px;
  width: 88%;
  right: 20px;
  display: flex;
  justify-content: space-between;
}

#submenu
{
  position: absolute;
  top: 100%;
  left: 0px;
  display: none;
}

#submenuContainer
{
  background-color: rgba(37,37,37,0.8);
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#mainPageLogo
{
  position: absolute;
  top: 150px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ie-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.featureTextContainer
{
  position: absolute;
  top: 420px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ie-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 45%;
  transition: all 1s ease;
  border: 8px solid white;
}

#featureDesignLink
{
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ie-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.featureText
{
  text-align: center;
  font-size: 30px;
  letter-spacing: 10px;
  font-weight: normal;
  line-height: 70px;
  padding: 50px;
}

.designLinkWhite
{
  color: black;
  padding: 17px;
  background-color: white;
  font-family: 'Libre Baskerville';
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.designLinkWhite:hover
{
  color: white;
  background-color: black;
}

.designLinkBlack
{
  color: white;
  padding: 12px;
  background-color: black;
  border: 5px solid black;
  font-family: 'Libre Baskerville';
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.designLinkBlack:hover
{
  color: black;
  background-color: white;
}

.designLinkBlack:focus
{
  outline:0;
}

#siteIdentity
{
  position: absolute;
  top: 360px;
  left: 51%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ie-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
  font-size: 12px;
  letter-spacing: 32px;
}

#scrollHint
{
  font-size: 40px;
  font-weight: bold;
  color: gray;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
      -ie-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: fixed;
  width: 100%;
  text-align: center;
  bottom: 10px;
  z-index: 10;
  animation: hint 2s linear;
  animation-iteration-count: infinite;
}

@keyframes hint
{
  0%
  {
    -webkit-transform: rotate(-90deg) translate(10px,0px);
       -moz-transform: rotate(-90deg) translate(10px,0px);
        -ie-transform: rotate(-90deg) translate(10px,0px);
         -o-transform: rotate(-90deg) translate(10px,0px);
            transform: rotate(-90deg) translate(10px,0px);
  }
  100%
  {
    -webkit-transform: rotate(-90deg) translate(0px,0px);
       -moz-transform: rotate(-90deg) translate(0px,0px);
        -ie-transform: rotate(-90deg) translate(0px,0px);
         -o-transform: rotate(-90deg) translate(0px,0px);
            transform: rotate(-90deg) translate(0px,0px);
  }
}

.divider
{
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #333333;
  z-index: 2;
}

.dashedLine
{
  padding-top: 2px;
  width: 100%;
  height: 0px;
  border-bottom: dashed 1px #666666;
}

#footer
{
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #252525;
  z-index: 300;
  color: #404040;
}

#footer h3
{
  color: #404040;
}
#footer h4
{
  color: #404040;
}
#footer h5
{
  color: #404040;
}
#footer h6
{
  color: #404040;
}
#footer a
{
  color: #404040;
}
#footer a:hover
{
  color: white;
}

#footerLogo
{
  position: absolute;
  left: 50px;
  top: 20px;
  width: 35%;
}

#footerAreas
{
  position: absolute;
  left: calc(35% + 100px);
  top: 20px;
  width: 30%;
}

#footerContact
{
  position: absolute;
  left: calc(65% + 120px);
  top: 20px;
}

#footerSocial
{
  position: absolute;
  left: calc(65% + 120px);
  top: 160px;
}

.socialMedia
{
  height: 29px;
  width: 29px;
  margin: 10px;
  display: inline-block;
}

#facebook
{
  background-image: url("/images/facebook-desaturated.png");
}
#facebook:hover
{
  background-image: url("/images/facebook.png");
}

#pinterest
{
  background-image: url("/images/pinterest-desaturated.png");
}
#pinterest:hover
{
  background-image: url("/images/pinterest.png");
}

#instagram
{
  background-image: url("/images/instagram-desaturated.png");
}
#instagram:hover
{
  background-image: url("/images/instagram.png");
}

#knot
{
  background-image: url("/images/knot-desaturated.png");
}
#knot:hover
{
  background-image: url("/images/knot.png");
}

@media (max-width: 1080px)
{
  /* placeholder for wordpress tablet level css */
}

@media (max-width: 700px)
{
  /* placeholder for wordpress mobile level css */
}
