/* General Body and Frame Styles from original audioProduction.css */
html, body {
	 min-height: 80vh;
}
html {
	 font-size:50.0%;
}
body {
	 margin: 0;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-family: "Helvetica", "Arial", sans-serif;
	 font-weight: bold;
	 background-image: url('./img/aomShopPageBackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #8f8f8f; /* Added from currentprojects for consistency */
}
* {
	 box-sizing: border-box;
}
a {
  text-decoration: none;
}
.frame {
	 display: flex;
	 flex-direction: column;
	 width: 300px;
	 height: 550px;
	 overflow: hidden;
	 position: relative;
	 color: white;
	 margin: 2em;
	 padding-top: 2em;
	 border-radius: 2em;
	 box-shadow: 0 4px 10px rgba(0, 0, 0, .75), 0 8px 30px rgba(0, 0, 0, .5);
}
.frame:before {
	 content: '';
	 display: block;
	 width: 4em;
	 height: 0.6em;
	 background: white;
	 margin: 0 auto;
	 z-index: 10;
	 border-radius: 10em;
	 mix-blend-mode: overlay;
}
.frame-header {
	 position: relative;
	 z-index: 10;
	 display: flex;
	 flex-shrink: 0;
	 align-items: center;
	 padding: 2rem;
}
.frame-header .image {
	 margin-right: 1.5em;
}
.frame-header .image > img {
	 width: 50px;
	 border-radius: 0.5em;
	 box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2), 0 3px 10px rgba(0, 0, 0, 0.4);
}
.frame-header .info .title {
	 font-size: 1.8rem;
}
.frame-header .info .subtitle {
	 font-size: 1.2rem;
	 margin-top: 0.25em;
}
.frame-lyrics {
	 position: relative;
	 z-index: 10;
	 flex-grow: 1;
	 padding: 2rem;
	 padding-top: 0;
	 font-size: 2rem;
	 overflow-y: auto;
}
.frame-lyrics > div {
	 color: rgba(255, 255, 255, 0.75);
}
.frame-lyrics > div + div {
	 margin-top: 1.4em;
}
.frame-lyrics > div.active {
	 color: white;
	 font-size: 3rem;
	 margin-top: 1em;
	 font-weight: bold;
}
.frame-lyrics > div:not(.active) {
	 filter: blur(0.05px);
}
.frame-bg {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 pointer-events: 0;
	 z-index: 0;
	 overflow: hidden;
	 border-radius: 2em;
}
.frame-bg .bg-color, .frame-bg .bg-black {
	 width: 200%;
	 position: absolute;
	 border-radius: 100em;
	 animation: rotate 35s linear infinite;
}
.frame-bg .bg-color {
	 right: 0;
	 top: 0;
	 filter: blur(40px);
	 z-index: 10;
	 mix-blend-mode: luminosity;
}
.frame-bg .bg-black {
	 left: 0;
	 bottom: 0;
	 filter: blur(40px);
	 z-index: 1;
	 animation-direction: reverse;
	 animation-delay: 10s;
}
@keyframes rotate {
	 0% {
		 transform: rotate(0deg);
	}
	 100% {
		 transform: rotate(360deg);
	}
}

/* --- NEW NAVIGATION STYLES --- */
/* Copied from currentprojects.css */

.main_h {
  position: fixed;
  top: 0px;
  max-height: 70px; 
  z-index: 999;
  width: 100%;
  padding-top: 17px;
  background: none;
  overflow: hidden; 
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  top: -100px;
  padding-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  background-color: rgba(13, 27, 42, 0.85);
}
@media only screen and (max-width: 766px) {
  .main_h {
    padding-top: 25px;
  }
}

.open-nav {
  max-height: 300px !important;
}
.open-nav .mobile-toggle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.sticky {
  background-color: rgba(13, 27, 42, 0.85);
  opacity: 1;
  top: 0px;
  border-bottom: 1px solid gainsboro;

}

nav {
  float: right;
  width:100%;
}
@media only screen and (max-width: 766px) {
  nav {
    width: 100%;

  }
}
nav ul {
  list-style: none;
  overflow: hidden;
  padding-top: 10px;
  margin-bottom: 22px;
  float: left;
  text-align: center;
  width: 100%;
  background-color: rgba(13, 27, 42, 0.85);
}
@media only screen and (max-width: 766px) {
  nav ul {
    padding-top: 10px;
    margin-bottom: 22px;
    float: left;
    text-align: center;
    width: 100%;
  }
}
nav ul li {
  width: 100%;
  padding: 7px 0;
  margin: 0;
  line-height: 1.5;
}
@media only screen and (max-width: 766px) {
  nav ul li {
    width: 100%;
    padding: 7px 0;
    margin: 0;
  }
}
nav ul a {
  color: yellow;
  text-transform: uppercase;
  font-size: 12px;
}

.mobile-toggle {
  display: block;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 0;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  
}
@media only screen and (max-width: 766px) {
  .mobile-toggle {
    display: block;
  }
}
.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 1000px;
  background: #8f8f8f;
  display: block;
}

.row {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}