@font-face {
  font-family: "Bahiana";
  src: url("/fonts/Bahiana-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Chelsea Market";
  src: url("/fonts/ChelseaMarket-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit-VariableFont_wght.woff2") format("woff2");
}
:root {
  --purple-light: #D475ED;
  --purple-dark: #710F8B;
  --pink-light: #FB6985;
  --pink-dark: #AF2F48;
  --white: #FFFFFF;
  --grey-light: #CFCFCF;
  --grey: #888888;
  --grey-dark: #414141;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

a:link,
a:visited {
  font-weight: 600;
  text-decoration: none;
}
a:link > img,
a:visited > img {
  height: 100%;
}

a:hover,
a:active {
  text-decoration: none;
}

body {
  margin: 0;
  background-color: black;
  color: white;
  width: 100%;
  overflow-x: hidden;
}

@keyframes open-dialog {
  from {
    opacity: 0;
    transform: translateY(10vh);
  }
  to {
    opacity: 1;
  }
}
@keyframes open-dialog-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
dialog {
  border: none;
  border-radius: 0;
  box-shadow: rgb(38, 57, 77) 0 20px 30px -10px;
  width: 100%;
  max-width: 720px;
  padding: 0;
  z-index: 5000;
}
dialog > div {
  padding: 2rem;
  width: 100%;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
dialog[open] {
  animation: open-dialog 0.5s var(--curve);
}
dialog[open]::backdrop {
  animation: open-dialog-backdrop 0.25s ease-out;
}

h1 {
  font-family: Bahiana, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 132px;
  line-height: 118px;
  margin: 0;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Chelsea Market", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

header {
  width: 100%;
  height: var(--header-height);
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}
header img {
  height: 2rem;
}

img[data-open] {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
img[data-open]:hover {
  transform: scale(1.1);
}

main {
  width: 100%;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  overflow-scrolling: touch;
  overflow-x: hidden;
}

p {
  margin: 0;
}

section {
  min-height: var(--section-min-height);
  display: flex;
}

.align-bottom {
  align-self: flex-end;
}

.bg-white {
  background-color: var(--white);
}

.bg-gradient {
  background: linear-gradient(90deg, var(--purple-dark) 0%, var(--pink-dark) 100%);
}

.color-black {
  color: var(--black);
}

.color-grey {
  color: var(--grey);
}

.color-grey-light {
  color: var(--grey-light);
}

.color-white {
  color: var(--white);
}

.color-purple-dark {
  color: var(--purple-dark);
}

.color-purple-light {
  color: var(--purple-light);
}

.column-2 {
  column-count: 1;
}
@media screen and (min-width: 768px) {
  .column-2 {
    column-count: 2;
  }
}

.container {
  padding: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
  margin: auto;
}

.wide-container {
  padding: var(--container-padding);
  width: 100%;
  max-width: var(--wide-container-width);
  margin: auto;
}

.cursor-pointer {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .float-right {
    float: right;
  }
}

@media screen and (min-width: 768px) {
  .float-left {
    float: left;
  }
}

.font-small {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .full-height {
    min-height: calc(100vh - var(--header-height));
  }
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-row > * {
  flex-shrink: 0;
}
.flex-row.top {
  align-items: flex-start;
}
.flex-row.wrap {
  flex-wrap: wrap;
  overflow-x: visible;
  width: 100%;
}
.flex-row.overflow {
  width: calc(100% + var(--container-padding));
  overflow-x: auto;
  padding-bottom: 1rem;
}
.flex-row.space-between:not(.no-wrap) {
  flex-direction: column;
  gap: 0.5rem;
  justify-content: start;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .flex-row.space-between:not(.no-wrap) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.gap-0_25 {
  gap: 0.25rem;
}

.gap-0_5 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-1_5 {
  gap: 1.5rem;
}

.gap-2 {
  gap: 2rem;
}

.h-1_5 {
  height: 1.5rem;
}

.h-2_5 {
  height: 2.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.m-wrap {
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .m-wrap {
    flex-wrap: nowrap;
  }
}

.p-1 {
  padding: 1rem;
}

.p-1_5 {
  padding: 1.5rem;
}

.p-2 {
  padding: 2rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-1_5 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-12 {
  padding-top: 12rem;
}

.rotate-10 {
  transform: rotate(10deg);
}

.rotate--10 {
  transform: rotate(-10deg);
}

.shrink-1 {
  flex-shrink: 1;
}

.space-between {
  justify-content: space-between;
}

.text-gradient {
  background: linear-gradient(90deg, var(--purple-light) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-w-100p {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-w-100p {
    width: initial;
  }
}

.weight-normal {
  font-weight: 500;
}

@keyframes white-box-drive-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
#golden-fin {
  background-image: url("/images/golden-fin-background-image.png");
  background-position: top center;
  box-shadow: inset 0 -64px 64px -64px black;
  background-size: 170% auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  #golden-fin {
    background-size: 100% auto;
  }
}
#golden-fin .white-box {
  padding: 1.5rem;
  background-color: white;
  max-width: 456px;
  color: black;
  animation: white-box-drive-in 0.5s var(--curve);
}

header nav {
  display: none;
  align-items: center;
  position: absolute;
  top: var(--header-height);
  right: 0;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
}
header nav a {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
}
header nav a:hover, header nav a.active {
  background: linear-gradient(90deg, var(--purple-light) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header nav.open {
  display: flex;
}
@media screen and (min-width: 768px) {
  header nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: fit-content;
    top: 0;
    position: initial;
  }
}
header button#burger-button {
  background: none;
  border: none;
  cursor: pointer;
}
header button#burger-button img {
  height: 2rem;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  header button#burger-button {
    display: none;
  }
}

#concerts .concert-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-right: 2rem;
  border-right: 0.25rem solid var(--grey-light);
}
#concerts .concert-card.is-past {
  color: var(--grey-light);
}
#concerts .concert-card.is-past .date {
  border-color: var(--grey-light);
}
#concerts .concert-card .date {
  font-size: 32px;
  font-family: "Chelsea Market", sans-serif;
  line-height: 1;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid black;
  display: flex;
  flex-direction: column;
}

#photos .photos-grid {
  display: flex;
  gap: 0;
  width: calc(100% + var(--container-padding));
  overflow-x: auto;
  padding-bottom: 1rem;
  padding-top: 1rem;
  margin-top: -1rem;
  padding-left: 1rem;
  margin-left: -1rem;
}
#photos .photos-grid > * {
  flex-shrink: 0;
}

.photo-card {
  background-color: white;
  color: black;
  border: 4px solid white;
  width: 200px;
  box-shadow: rgb(38, 57, 77) 0 20px 30px -10px;
  transition: transform 0.2s ease-in-out;
}
.photo-card:hover {
  transform: scale(1.05) !important;
  cursor: pointer;
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-card p {
  padding: 0.25rem 0.5rem;
  font-size: 12px;
  line-height: 16px;
  min-height: calc(32px + 0.5rem);
}

@keyframes fade-in-photo {
  from {
    opacity: 0;
    transform: translateY(10vh);
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-photo-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#photo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  cursor: pointer;
  animation: fade-in-photo-backdrop 0.25s;
}
#photo-overlay > div {
  margin: auto;
  animation: fade-in-photo 0.5s var(--curve);
}
#photo-overlay > div img {
  max-width: 100%;
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
}
#photo-overlay > div p {
  text-align: center;
}
#photo-overlay > div button {
  position: absolute;
  top: 2rem;
  right: 4rem;
  border: none;
  color: white;
  font-size: 4rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  line-height: 1;
}

.release-card {
  width: 200px;
}
.release-card:hover {
  cursor: pointer;
}
.release-card:hover img {
  filter: brightness(120%);
}

#toasts {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  align-items: center;
  padding: 1rem;
}
#toasts .toast {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

:root {
  --font-size: 16px;
  --section-min-height: 480px;
  --header-height: 4rem;
  --wide-container-width: 1600px;
  --container-width: 920px;
  --container-padding: 1rem;
  --curve: cubic-bezier(0.2, 0.64, 0.5, 1.25);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Outfit, sans-serif;
  font-size: var(--font-size);
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  :root {
    --container-padding: 4rem;
  }
}

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