/**
 * index.css
 * MISSING NO. 2022, All rights reserved
 */

/* #region BODY AND GENERAL CONTENT */

body {
  background-color: black;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Bebas Neue', serif;
  letter-spacing: 1px;
}

section {
  margin: 20px auto;
  padding: 0 20px 35px 20px;
  width: 900px;
  text-align: center;
}

@media (max-width: 950px) {
  section {
    width: 700px;
  }
}

@media (max-width: 750px) {
  section {
    margin: 20px 0;
    padding: 0;
    width: 100%;
  }
}

h2 {
  text-align: center;
  font-size: 45px;
}

/* This helps create top space when navigating 
  with an anchor */
@media (min-width: 750px) {
  .anchored {
    padding-top: 50px;
    margin-top: -50px;
  }
}

/* #endregion */

/* #region NAVIGATION */

.mno-nav {
  background: black;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  z-index: 100;
  transition: all 500ms, border-width 200ms;
  border-bottom: 0px solid white;
}

.mno-nav .mno-menu-burger-container {
  display: none;
}

body.mno-scrolled .mno-nav{
  background: black;
  border-bottom: 2px solid white;
}

.mno-nav-toggle {
  display: none;
}

.mno-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
  width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}

.mno-nav li {
  margin: 0px 10px;
  font-size: 25pt;
}

.mno-nav li a {
  display: block;
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
}

.mno-nav li a:active {
  color: #CCC;
}

.mno-nav li::after {
  display: block;
  width: 100%;
  height: 3px;
  margin: 0;
  margin-top: -3px;
  background-color: white;
  font-size: 0;
  content: " ";

  opacity: 0;
  transition: opacity 150ms, transform 150ms;
  transform: scaleX(0);
  transform-origin: center;
}

.mno-nav .mno-brand-link {
  display: none;
}

.mno-nav li:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.mno-nav .mno-logo {
  width: 100px;
  height: 100px;
  margin: 10px 50px;
  transition: all 150ms;
}

body.mno-scrolled .mno-nav .mno-logo {
  width: 50px;
  height: 50px;
}

@media (max-width: 950px) {
  .mno-nav ul {
    width: 750px;
  }
}

@media (max-width: 750px) {
  .mno-nav {
    background: none;
  }

  body.mno-scrolled .mno-nav {
    border: none;
    background: none;
  }

  .mno-nav .mno-nav-toggle {
    border: none;
    border-radius: 0;
    background: black;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 0.875em;
    padding: 1em 1.5em;
    margin: 0;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
  }

  .mno-nav-toggle  .mno-icon-nav-toggle {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    width: 1em;
    vertical-align: middle;
    position: relative; /* Align more nicely with capital letters */
    top: -0.0625em;
    width: 2em;
    height: 2em;
    top: 0;
    }

  .mno-nav-toggle .mno-nav-svg-toggle .line {
    opacity: 1;
    transform: rotate(0) translateY(0) translateX(0);
    transform-origin: 1em 1em;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  }
  .mno-nav-toggle  .mno-nav-svg-toggle .line-1 {
    transform-origin: 1em 2.5em;
  }
  .mno-nav-toggle  .mno-nav-svg-toggle .line-3 {
    transform-origin: 1em 4.5em;
  }

  .mno-nav-toggle.opened .mno-nav-svg-toggle .line-1 {
    transform: rotate(45deg) translateY(0) translateX(0);
  }
  .mno-nav-toggle.opened .mno-nav-svg-toggle .line-2 {
    opacity: 0;
  }
  .mno-nav-toggle.opened .mno-nav-svg-toggle .line-3 {
    transform: rotate(-45deg) translateY(0em) translateX(0em);
  }

  /* Text meant only for screen readers. */
  .mno-nav-toggle  .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }

  .mno-nav ul {
    width: auto;
    flex-direction: column;
    background: black;
    transition: transform 200ms;
  }
  
  .mno-nav.closed ul {
    transform: translateX(-100%);
  }

  .mno-nav .mno-brand-link {
    display: block;
  }

  .mno-nav .mno-brand {
    height: 40px;
    width: 100%;
    padding: 15px 0;
  }

  .mno-nav li {
    padding: 0;
    border-bottom: white dashed 1px;
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }

  .mno-nav a {
    padding: 15px 0;
  }

  .mno-nav .mno-logo-link {
    display: none;
  }

  .mno-nav li::after {
    display: none;
  }
}

@media (hover: none) {
  .mno-nav li::after {
    display: none;
  }
}

/* #endregion */

/* #region HEADER */

.mno-header {
  margin: 0;
  height: 100vh;
  width: 100%;
}

.mno-header-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.mno-header-video-overlay {
  background-color: rgba(255,255,255,0);
  opacity: 0.6;
  background-size: 4px 4px;
  background-image: repeating-linear-gradient(45deg, black 0, black 0.4px, rgba(255,255,255,0) 0, rgba(255,255,255,0) 50%);

  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.mno-header-brand-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.mno-header-brand-container .mno-brand {
  width: 500px;
}

.mno-header-brand-container .mno-logo {
  display: none;
}

@media (max-width: 750px) {
  .mno-header-brand-container .mno-brand {
    display: none;
  }
  
  .mno-header-brand-container .mno-logo {
    display: block;
    width: 250px;
  }
}

@media (max-width: 300px) {
  .mno-header-brand-container .mno-logo {
    width: 80%;
  }
}

/* #endregion */

/* #region VIDEOS */

.mno-video-container, .mno-video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* #endregion */

/* #region MUSIC */

.mno-music-container {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  justify-content: center;
}

.mno-music-icon {
  height: 55px;
  margin: 0 15px;
}

.mno-music-link:active {
  opacity: 0.8;
}

.mno-music-embed-container, .mno-music {
  width: 100%;
  max-width: 450px;
  margin: 15px auto 0 auto;
  aspect-ratio: 4 / 3;
}

.mno-socials-container {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  justify-content: center;
}

.mno-socials-icon {
  height: 55px;
  width: 55px;
  margin: 0 15px;
}

/* #endregion */

/* #region SOCIALS */

.mno-socials-container {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  justify-content: center;
}

.mno-socials-icon {
  height: 55px;
  width: 55px;
  margin: 0 15px;
}

.mno-socials-link:active {
  opacity: 0.8;
}

/* #endregion */

/* #region ABOUT */

section#about {
  padding-bottom: 0px;
}

section#about p {
  padding: 0 35px;
  font-size: 1.3rem;
}

.no, .no:active {
  color: black;
  font-size: 3pt;
  text-decoration: none;
  cursor: default;
}
/* #endregion */

/* #region FOOTER */

footer {
  background-color: #333;
  background-size: 4px 4px;
  background-image: repeating-linear-gradient(45deg, black 0, black 0.4px, rgba(255,255,255,0) 0, rgba(255,255,255,0) 50%);

  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

footer .mno-footer-goto-top {
  color: white;
}

footer .mno-brand {
  height: 50px;
  margin-bottom: 15px;
}

footer p, footer img {
  padding: 0 35px;
}

/* #endregion */
