@import url("defaults.css");
@import url("home.css");
@import url("about.css");
@import url("design.css");
@import url("audio.css");

body {
  font-size: 12pt;
}
h1 {
  text-align: right;
  width: 50%;
  color: #858280;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
h1 span {
  border-bottom: 5px solid #f59210;
}
h2 {
  width: 100%;
  color: #c5c2c0;
  font-weight: 400;
}
a {
  color: #f59210;
}
#pageNavigation {
  height: 50px;
  position: fixed;
  z-index: 1;
  width: 100%;
  background-color: #151210;
  background-image: url(../site-images/menu-bg.png);
  border-bottom: 1px solid rgba(0,0,0,0.8);
  font-size: 10pt;
}
.navClear {
  height: 51px;
}
#pageNavigation .wrapper {
  padding-top: 9px;
}
#pageNavigation #hamBurger {
  margin: 0 auto;
  cursor: pointer;
}
#pageNavigation ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: rgba(35,32,29,0.9);
  position: fixed;
  top: 51px;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
#pageNavigation li {
  padding: 5px 0;
}
#pageNavigation a,
#pageNavigation span {
  display: block;
  height: 30px;
  line-height: 30px;
  width: 90px;
  background-image: url(../site-images/button.png);
  background-size: 100%;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  color: rgba(245,242,240,0.5);
  margin: 0 auto;
  transition: 0.2s;
  font-size: 10pt;
}

#returnHome {
  padding: 8px 0 0 0;
}
#pageNavigation a:hover,
#pageNavigation span:hover,
#pageNavigation .active a {
  background-image: url(../site-images/button-hover.png);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  color: rgba(245,242,240,0.9);
}
.darkbg {
  color: #f5f2f0;
  background-color: #252220;
  background-image: url(../site-images/scanlines.png), url(../site-images/dark-tile.jpg);
  background-attachment: fixed;
}
.lightbg {
  color: #454240;
  background-color: #f5f2f0;
  background-image: url(../site-images/light-tile.jpg);
  border-bottom: 20px solid #858280;
}
.wrapper {
  margin: 0 auto;
  padding: 0 10px;
}
footer {
  background-color: #151210;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%), url(../site-images/line-tile.png);
}
  footer h1 {
    text-align: center;
    width: 100%;
    letter-spacing: 0.2em;
  }
footer h2 {
  color: rgba(245,242,240,0.3);
  font-weight: 300;
}

@media screen and (min-width: 640px) {

  h1 {
    letter-spacing: 0.3em;
  }
  #pageNavigation .wrapper {
    padding-top: 0;
  }
  #pageNavigation .wrapper,
  #pageNavigation ul {
    position: static;
  }
  #pageNavigation span#hamBurger {
    display: none;
  }
  #pageNavigation ul {
    float: right;
    width: auto;
    height: auto;
    background: transparent;
    display: block;
  }
  #pageNavigation li {
    display: inline-block;
    padding: 8px 0 0 0;
  }
  #pageNavigation a,
  #pageNavigation span {
    margin: 0 0 0 10px;
  }
}

@media screen and (min-width: 1040px) {

  html {
    height: 100%;
    min-height: 900px;
  }
  body {
    height: 100%;
    min-height: 900px;
    font-size: 14pt;
  }
  h1 {
    letter-spacing: 0.5em;
  }

  main {
    height: 100%;
    min-height: 900px;
  }
  .page {
    height: 100%;
    width: 100%;
    min-height: 900px;
  }
  .wrapper {
    max-width: 1400px;
  }
  .pageContent {
    height: calc(100% - 51px);
    min-height: 900px;
  }
  footer {
    min-height: 400px;
  }

  #footerFlex {
    display: flex;
    align-items: flex-start;
  }
  #footerFlex section {
    flex-grow: 1;
    margin: auto;
    padding: 10px;
  }
  #footerFlex section h2 {
    text-align: center;
  }
}
