* {
  font-family: "Open sans", sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #252525;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

a,
h2 {
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
}
h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 0;
}

p,
h2 {
  max-width: min(100%, 750px);
  width: calc(100% - 48px);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 125px 0 150px;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 250ms ease;
  background: #000;
  min-height: 105px;
  position: fixed;
  top: 0;
  backdrop-filter: blur(10px);
}

nav .mobile-nav {
  display: none;
}

.scrolled nav {
  background: rgb(38 38 38 / 50%);
  min-height: 50px;
  box-shadow: black 0px 0px 20px -10px;
}

.scrolled nav > img {
  display: none;
}

nav > a {
  flex-basis: 80px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: 250ms ease color;
}

nav > a:hover {
  color: #840420;
}

nav > img {
  max-width: 210px;
}

@media (max-width: 700px) {
  nav .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #fff;
    height: 77px;
  }

  nav {
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    justify-content: flex-start;
    max-height: 77px;
    min-height: 50px;
  }

  .mobile-nav-expanded nav {
    max-height: 100%;
  }

  nav > * {
    flex-shrink: 0;
  }

  nav > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid #fff;
  }

  nav > img {
    display: none;
  }

  .mobile-nav img {
    display: block;
    height: 60px;
    margin: 8px;
  }

  nav svg {
    display: block;
    stroke: #fff;
    transition: stroke 250ms ease;
    margin: 16px;
  }

  nav svg:hover {
    stroke: #840420;
  }
}

.hero {
  padding-top: 105px;
  background: black;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.hero img {
  max-height: calc(100vh - 105px);
  max-width: 100%;
}

.bg-band-pic {
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: darken;
  box-shadow: inset #000 0 0 20px -5px;
}

.bg-band-pic-1 {
  background-image: url(/img/beacon-project-faded.jpg);
  background-color: #020b159e;
}

.bg-band-pic-2 {
  background-image: url(/img/beacon-project-band-2-faded.jpg);
  background-color: #18000082;
}

.photos {
  background: #000;
  padding: 50px 0;
}

.photos iframe {
  max-width: 840px !important;
  width: calc(100% - 48px) !important;
}

.video {
  padding: 50px 0 100px;
}

.video iframe {
  max-width: calc(100% - 48px);
}

.social-networks {
  text-align: center;
}

.social-networks a {
  fill: #878787;
  transition: 250ms ease color, 250ms ease fill;
  display: inline-block;
}

.social-networks a:hover {
  fill: #840420;
}

.social-networks a svg {
  height: 24px;
  width: 24px;
  margin: 0 4px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #878787;
  padding: 24px 0;
  text-align: center;
}

form {
  max-width: 840px;
  width: calc(100% - 48px);
}
form input,
form textarea,
form p {
  width: 100%;
}

form p {
  margin: 0 0 32px;
  text-align: center;
  max-width: 100%;
}

form textarea,
form input {
  border-radius: 0;
  border: none;
  padding: 12px;
  font-family: monospace;
  max-width: 840px;
  width: calc(100% - 48px);
}

button[type="submit"] {
  max-width: 75%;
  margin: 0 auto;
  background: transparent;
  border: 2px solid #fff;
  transition: all 250ms ease;
  color: #fff;
  cursor: pointer;
  max-width: 50%;
  width: calc(100% - 48px);
  padding: 12px;
  border-radius: 0;
}

button[type="submit"]:hover {
  background: #fff;
  color: #000;
}
