@font-face {
  font-family: "Always Smile";
  src: url("/assets/fonts/AlwaysSmile.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Staatliches";
  src: url("/assets/fonts/Staatliches-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Brand */
/* Social platforms */
/* Colors */
/* Light Mode */
/* From https://sass-guidelin.es/#architecture */
html, body {
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
  /* Makes transition smoother */
  opacity: 0;
}

/* Automatically detect device preference */
@media (prefers-color-scheme: dark) {
  body {
    --font-display: Always Smile, Georgia, serif;
    font-family: system-ui, -apple-system, sans-serif;
    --color-primary: #f0f0f0;
    --color-secondary: #a0a0a0;
    --color-background: #0f0f0f;
    --color-border: #2a2a2a;
    --color-text-muted: #a0a0a0;
    color: var(--color-primary);
    background-color: var(--color-background);
  }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: "Staatliches", Georgia, serif;
  }
}
@media (prefers-color-scheme: light) {
  body {
    --font-display: Always Smile, Georgia, serif;
    font-family: system-ui, -apple-system, sans-serif;
    --color-primary: #161616;
    --color-secondary: #757575;
    --color-background: #f5f5f5;
    --color-border: #d0d0d0;
    --color-text-muted: #757575;
    color: var(--color-primary);
    background-color: var(--color-background);
  }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: "Staatliches", Georgia, serif;
  }
}
body {
  max-width: 840px;
  margin: auto;
  /* Display page elements as a grid */
  display: grid;
  /* Header, controls, and footer take necessary space, remaining fills the viewport */
  grid-template-rows: max-content max-content 1fr max-content;
  /* Limit the body to the viewport height */
  height: 100vh;
}
body.dark {
  --font-display: Always Smile, Georgia, serif;
  font-family: system-ui, -apple-system, sans-serif;
  --color-primary: #f0f0f0;
  --color-secondary: #a0a0a0;
  --color-background: #0f0f0f;
  --color-border: #2a2a2a;
  --color-text-muted: #a0a0a0;
  color: var(--color-primary);
  background-color: var(--color-background);
}
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5, body.dark h6 {
  font-family: "Staatliches", Georgia, serif;
}
body.light {
  --font-display: Always Smile, Georgia, serif;
  font-family: system-ui, -apple-system, sans-serif;
  --color-primary: #161616;
  --color-secondary: #757575;
  --color-background: #f5f5f5;
  --color-border: #d0d0d0;
  --color-text-muted: #757575;
  color: var(--color-primary);
  background-color: var(--color-background);
}
body.light h1, body.light h2, body.light h3, body.light h4, body.light h5, body.light h6 {
  font-family: "Staatliches", Georgia, serif;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

#title {
  margin: 0;
  font-size: 1.4em;
  text-transform: uppercase;
  width: 100%;
}
#title a {
  color: inherit;
  text-decoration: none;
}

#logo {
  font-family: "Always Smile", Georgia, serif;
  font-size: 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1em;
  background: linear-gradient(to right, #ff2d78, #fff278, #ff2d78);
  background-size: 200% 100%;
  background-position: 0% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.4s ease;
}
#logo:hover {
  background-position: 100% center;
}

main {
  overflow: scroll;
  padding: 20px;
}

footer {
  background: var(--color-background);
  padding: 1rem;
  border-top: 1px solid var(--color-border);
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.footer-links a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
.footer-links svg {
  width: 1.25rem;
  height: 1.25rem;
}
.footer-links a:hover[href*=mixcloud] {
  color: #5000ff;
}
.footer-links a:hover[href*=soundcloud] {
  color: #ff5500;
}
.footer-links a:hover[href*=instagram] {
  color: #e1306c;
}
.footer-links a:hover[href*=facebook] {
  color: #1877f2;
}
.footer-links a:hover[href*=patreon] {
  color: #f96854;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@font-face {
  font-family: "Always Smile";
  src: url("/assets/fonts/AlwaysSmile.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Staatliches";
  src: url("/assets/fonts/Staatliches-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Brand */
/* Social platforms */
/* Colors */
/* Light Mode */
/* From https://sass-guidelin.es/#architecture */
html, body {
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
  /* Makes transition smoother */
  opacity: 0;
}

/* Automatically detect device preference */
@media (prefers-color-scheme: dark) {
  body {
    --font-display: Always Smile, Georgia, serif;
    font-family: system-ui, -apple-system, sans-serif;
    --color-primary: #f0f0f0;
    --color-secondary: #a0a0a0;
    --color-background: #0f0f0f;
    --color-border: #2a2a2a;
    --color-text-muted: #a0a0a0;
    color: var(--color-primary);
    background-color: var(--color-background);
  }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: "Staatliches", Georgia, serif;
  }
}
@media (prefers-color-scheme: light) {
  body {
    --font-display: Always Smile, Georgia, serif;
    font-family: system-ui, -apple-system, sans-serif;
    --color-primary: #161616;
    --color-secondary: #757575;
    --color-background: #f5f5f5;
    --color-border: #d0d0d0;
    --color-text-muted: #757575;
    color: var(--color-primary);
    background-color: var(--color-background);
  }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: "Staatliches", Georgia, serif;
  }
}
body {
  max-width: 840px;
  margin: auto;
  /* Display page elements as a grid */
  display: grid;
  /* Header, controls, and footer take necessary space, remaining fills the viewport */
  grid-template-rows: max-content max-content 1fr max-content;
  /* Limit the body to the viewport height */
  height: 100vh;
}

body.dark {
  --font-display: Always Smile, Georgia, serif;
  font-family: system-ui, -apple-system, sans-serif;
  --color-primary: #f0f0f0;
  --color-secondary: #a0a0a0;
  --color-background: #0f0f0f;
  --color-border: #2a2a2a;
  --color-text-muted: #a0a0a0;
  color: var(--color-primary);
  background-color: var(--color-background);
}

body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5, body.dark h6 {
  font-family: "Staatliches", Georgia, serif;
}

body.light {
  --font-display: Always Smile, Georgia, serif;
  font-family: system-ui, -apple-system, sans-serif;
  --color-primary: #161616;
  --color-secondary: #757575;
  --color-background: #f5f5f5;
  --color-border: #d0d0d0;
  --color-text-muted: #757575;
  color: var(--color-primary);
  background-color: var(--color-background);
}

body.light h1, body.light h2, body.light h3, body.light h4, body.light h5, body.light h6 {
  font-family: "Staatliches", Georgia, serif;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

#title {
  margin: 0;
  font-size: 1.4em;
  text-transform: uppercase;
  width: 100%;
}

#title a {
  color: inherit;
  text-decoration: none;
}

#logo {
  font-family: "Always Smile", Georgia, serif;
  font-size: 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1em;
  background: linear-gradient(to right, #ff2d78, #fff278, #ff2d78);
  background-size: 200% 100%;
  background-position: 0% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.4s ease;
}

#logo:hover {
  background-position: 100% center;
}

main {
  overflow: scroll;
  padding: 20px;
}

footer {
  background: var(--color-background);
  padding: 1rem;
  border-top: 1px solid var(--color-border);
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links a:hover[href*=mixcloud] {
  color: #5000ff;
}

.footer-links a:hover[href*=soundcloud] {
  color: #ff5500;
}

.footer-links a:hover[href*=instagram] {
  color: #e1306c;
}

.footer-links a:hover[href*=facebook] {
  color: #1877f2;
}

.footer-links a:hover[href*=patreon] {
  color: #f96854;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

#about-page {
  /* Extra small devices (phones, 600px and down) */
}
#about-page main {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1em;
}
#about-page div {
  grid-column: 2/span 4;
}
#about-page a {
  color: var(--color-primary);
}
#about-page .code {
  font-family: "Courier New", Courier, monospace;
  background: #4d4d4d;
  padding: 0em 0.2em;
  border-radius: 0.2em;
}
#about-page #example-timeline {
  width: 100%;
}
#about-page #example-playlist {
  width: 100%;
  padding: 10px 0;
  height: 70px;
}
@media only screen and (max-width: 600px) {
  #about-page main {
    display: block;
  }
}

#search-results {
  margin-bottom: 1em;
}

/* Energy graph */
.bpm-container {
  display: flex;
  padding-top: 1em;
}
@media only screen and (max-width: 992px) {
  .bpm-container {
    flex-wrap: wrap;
  }
  .bpm-container .graph-label {
    padding-bottom: 1em;
  }
}
.bpm-container .graph-label {
  display: inline-block;
  width: 6.5em;
  flex-shrink: 0;
  align-self: end;
}
.bpm-container .bpm-graph {
  display: inline-block;
  width: 100%;
}
.bpm-container .bpm-graph path {
  stroke: #f0f0f0;
  stroke-width: 2px;
}
.bpm-container .bpm-graph .cue-point {
  stroke: #f0f0f0;
  stroke-width: 2px;
}

/* Energy graph */
.energy-container {
  display: flex;
  padding-top: 1em;
}
@media only screen and (max-width: 992px) {
  .energy-container {
    flex-wrap: wrap;
  }
  .energy-container .graph-label {
    padding-bottom: 1em;
  }
}
.energy-container .graph-label {
  display: inline-block;
  width: 6.5em;
  flex-shrink: 0;
  align-self: end;
}
.energy-container .energy-graph {
  display: inline-block;
  width: 100%;
}
.energy-container .energy-graph path {
  stroke: #f0f0f0;
  stroke-width: 2px;
}
.energy-container .energy-graph .cue-point {
  stroke: #f0f0f0;
  stroke-width: 2px;
}

/* Energy graph */
.familiarity-container {
  display: flex;
  padding-top: 1em;
}
@media only screen and (max-width: 992px) {
  .familiarity-container {
    flex-wrap: wrap;
  }
  .familiarity-container .graph-label {
    padding-bottom: 1em;
  }
}
.familiarity-container .graph-label {
  display: inline-block;
  width: 6.5em;
  flex-shrink: 0;
  align-self: end;
}
.familiarity-container .familiarity-graph {
  display: inline-block;
  width: 100%;
}
.familiarity-container .familiarity-graph path {
  stroke: #f0f0f0;
  stroke-width: 2px;
}
.familiarity-container .familiarity-graph .cue-point {
  stroke: #f0f0f0;
  stroke-width: 2px;
}

/* Playlist view */
.playlist {
  margin-top: 1em;
}
.playlist .artist {
  font-style: italic;
  color: var(--color-secondary);
}
.playlist .artist::before {
  content: " - ";
}
.playlist .remix {
  font-style: italic;
}
.playlist .remix::before {
  content: " (";
}
.playlist .remix::after {
  content: ")";
}

/* Set container */
.set-container {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2em;
  padding-bottom: 2em;
}
@media (max-width: 600px) {
  .set-container {
    grid-template-columns: 100px 1fr;
    gap: 1.5em;
    padding-bottom: 1.5em;
  }
}

.set-info-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  /* Needed to keep sizing */
  overflow: auto;
}

/* Thumbnail */
.set-thumbnail {
  width: 100%;
  border-radius: 4px;
  filter: drop-shadow(0px 2px 3px rgb(233, 233, 233));
}
.set-thumbnail:hover {
  filter: drop-shadow(0px 0px 2px rgb(233, 233, 233)) brightness(125%);
  transform: translate3d(0px, 2px, 0);
  transition-duration: 0.07s;
}

/* Set title & subtitle */
.set-title {
  color: var(--color-primary);
  text-decoration: none;
}
.set-title .set-name {
  font-family: "Staatliches", Georgia, serif;
  padding-bottom: 0.4em;
}
.set-title .set-subtitle {
  font-style: italic;
  color: var(--color-secondary);
  padding-bottom: 0.4em;
}
@media (max-width: 600px) {
  .set-title .set-subtitle {
    font-size: x-small;
  }
}

/* Set details */
.set-details span {
  padding-right: 1em;
  display: inline-block;
}

/* Shared for graphs */
.svg-content-responsive {
  display: inline-block;
}

/* Settings / controls menu */
#color-mode {
  height: 2em;
  cursor: pointer;
  padding-right: 1em;
}

#settings {
  height: 2em;
  align-self: center;
  transition: 0.4s;
  cursor: pointer;
}
#settings:hover {
  transform: rotate(60deg);
}

#controls {
  padding: 0.5em;
  border-bottom: 1px solid var(--color-primary);
  /* Add slight shadow effect as a scrolling signifier */
  z-index: 2;
  box-shadow: 0px 10px 20px var(--color-background);
}
#controls.hidden {
  display: block !important;
  padding: 0;
  border: 0;
}
#controls.hidden div {
  display: none;
}
#controls div {
  display: inline-block;
  margin: 0.2em 0em;
  margin-right: 1em;
}
@media (max-width: 600px) {
  #controls div {
    display: block;
    margin-right: 0em;
  }
}
#controls .control {
  cursor: pointer;
}
#controls #bpm input {
  appearance: textfield;
  cursor: pointer;
  color: inherit;
  background: inherit;
  border: none;
  border-bottom: 1px solid var(--color-primary);
  width: 3em;
  text-align: center;
  /* Hide number select arrows in Chrome, Safari, Edge, Opera */
  /* Hide number select arrows in Firefox */
}
#controls #bpm input input::-webkit-outer-spin-button,
#controls #bpm input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#controls #bpm input input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Timeline graph */
.timeline-container {
  display: flex;
  padding-top: 1em;
}
@media only screen and (max-width: 992px) {
  .timeline-container {
    flex-wrap: wrap;
  }
  .timeline-container .graph-label {
    padding-bottom: 1em;
  }
}
.timeline-container .graph-label {
  display: inline-block;
  width: 6.5em;
  flex-shrink: 0;
  align-self: end;
}
.timeline-container .timeline {
  display: inline-block;
  width: 100%;
}
.timeline-container .timeline path {
  stroke: #f0f0f0;
  stroke-width: 2px;
}
.timeline-container .timeline .cue-point {
  stroke: #f0f0f0;
  stroke-width: 2px;
}

/*# sourceMappingURL=style.css.map */
