:root {
  --logoInitOffsetY: -900px;
  --slide-show-height: 600px;
  --initial-bg-image: url(../images/ephemera/12_boat_synth.jpg);
  --mx: 1358px;
}

body {
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 38px;
}

p {
  font-size: 18px;
  line-height: 30px;
  margin: 30px auto;
}

.menu {
  max-width: var(--mx);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 7px 87px;
  box-sizing: border-box;
}

.menu > div {
  display: flex;
  justify-content: space-between;
}

.menu > #close-menu { display: none; }
.menu > #menu-pages { width: 256px; }
.menu > #menu-social { width: 200px; }

.menu a {
  color: #000;
  text-decoration: none;
}

img[alt="Radius"] {
  display: block;
  margin: 40px auto;
}

img[alt="mobile-menu-icon"] {
  display: none;
}

/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~  middle of the page stuff * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */


.slide-show {
  max-width: var(--mx);
  max-height: var(--slide-show-height);
  margin: 0 auto;
}

.bg-image {
  background-image: var(--initial-bg-image);
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-size: cover;
  max-width: var(--mx);
  height: var(--slide-show-height);
  transition: opacity 0.75s;
}

.bg-image:nth-child(2) {
  transform: translateY(-600px);
}

#logo-home {
  display: flex;
  justify-content: center;
}

button  {
  background: #000;
  color: #fff;
  text-transform: uppercase;
  padding: 14px 0px;
  letter-spacing: 1px;
  cursor: pointer;
  outline: solid 1px #000;
  transition: outline-offset 500ms;
}

button:hover {
  outline-offset: 3.5px;
}

.slide-show #player {
  margin: 0 auto;
  display: block;
  transform: translateY(var(--logoInitOffsetY));
  background: #000;
  color: #fff;
  font-size: 18px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  max-width: 122px;
  transition: all 1s;
}

#player > div {
  text-align: right;
}

.marquee {
  /* width: 450px; */
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  will-change: transform;
  /* show the marquee just outside the paragraph */
  animation: marquee 15s linear infinite;
}

.marquee span:hover {
  animation-play-state: paused
}


/* Make it move */

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}


/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */


.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../images/about.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background-attachment: fixed; */
  max-width: var(--mx);
  box-sizing: border-box;
  height: 600px;
  padding: 50px;
  margin: 0 auto;
}

.faq {
  max-width: 1024px;
  margin: 100px auto;
}

.about * {
  max-width: 1020px;
  margin: 20px auto;
  color: #fff;
}

/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */


.current-episodes {
  background-color: #000;
}

.current-episodes h1 {
  color: #fff;
  text-align: center;
  padding: 33px 0px 62px 0px;
}

.current-episodes > div {
  max-width: var(--mx);
  margin: 0 auto;
}

.current-episodes .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.current-episodes .gallery > div img {
  width: 264px;
  cursor: pointer;
  transition: all 200ms;
}

.current-episodes .gallery > div:hover img {
  transform: scale(0.9);
}

.current-episodes .gallery > div img + div {
  transition: all 200ms;
}
.current-episodes .gallery > div:hover img + div {
  transform: scale(1.1);
}


.current-episodes .gallery > div {
  color: #fff;
  font-size: 23px;
  display: inline-block;
  padding: 28px;
  cursor: pointer;
}

.current-episodes .gallery > div > div {
  padding: 25px 0px;
}

.full-episodes-link {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.full-episodes-link > a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}


/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */


.episode {
  max-width: var(--mx);
  margin: 0 auto;
  padding: 7px 87px;
  box-sizing: border-box;
}

.episode > h1 {
  text-align: center;
}

.episode > h2 {
  text-align: center;
  font-size: 28px;
}

.ep-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: var(--mx);
  margin: 50px auto;
  height: 600px;
}

.episode p > .copy-header {
  margin: 30px 0px;
}

/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */


.series {
  max-width: 840px;
  margin: 0 auto;
  padding: 7px 87px;
  box-sizing: border-box;
}

.series a {
  color: #000
}

.series > div {
  display: flex;
}

.series > div > div {
  margin: 50px 10px;
}

.series > div img {
  max-width: 190px;
}

/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~  bottom of the page stuff * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */

.donate > button {
  border: none;
  width: 122px;
  margin: 40px auto;
  display: block;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact > div {
  margin-bottom: 14px;
}

#mc_embed_signup_scroll {
  display: flex;
  max-width: 290px;
  margin: 0px auto 70px auto;
}

.email {
  border: 1px solid #000;
  padding: 8px;
  width: 200px;
}

#mc-embedded-subscribe {
  border: none;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  padding: 9px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-left: 10px;
  width: 80px;
}

footer {
  text-align: center;
  margin: 100px auto;
}


/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * mobile  ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */
/* ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ * ~ ~ ~ */

@media (max-width: 800px) {

  img[alt="mobile-menu-icon"] {
    display: block;
    width: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9;
    cursor: pointer;
  }

  .menu {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 10;
    left: -100vw;
    background: #fff;
    display: block;
    transition: left .25s;
  }

  .menu > #close-menu {
    display: block;
    text-align: center;
    font-size: 48px;
    margin: 40px 0px;
    cursor: pointer;
  }

  .menu > #menu-pages {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 40px 0px;
  }

  .menu > #menu-pages > * {
    margin: 10px 0px;
  }

  .menu > #menu-social {
    width: 100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 20px;
    justify-items: center;
  }

  img[alt="Radius"] {
    margin: 20px auto;
    width: 20vw;
    height: 20vw;
  }

  .about { height: auto; }
  .faq { padding: 20px; }
  .series { padding: 7px 20px; }
  .series img { max-width: 100%; }

  .current-episodes .gallery, .gallery {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .current-episodes .gallery > div img {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .series > div {
    flex-direction: column;
  }
  .series > div > div {
    margin: 10px 10px;
  }
}
