@import url("https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
.dirt {
  font-family: "Rubik Dirt", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rubik-light {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.rubik-reg {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  opacity: 100%;
}
a:hover {
  opacity: 0.75;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.width-container {
  max-width: 1100px;
  margin: 0 auto;
}

.narrow-text {
  max-width: 640px;
  margin: 0 auto;
}

.padding-inline-1 {
  padding-inline: 1rem;
}

.opacity-half {
  opacity: 0.5;
}

:root {
  font-family: "Rubik", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}
body.home {
  background-color: #f5f2ec;
}
body.pages {
  background-color: #000000;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

main {
  text-align: center;
  width: 100%;
}

ul {
  display: block;
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  unicode-bidi: isolate;
  text-align: left;
}
ul li {
  font-family: "Rubik", sans-serif;
  padding-block: 1rem;
}
ul li a {
  color: #000000;
  font-size: 2rem;
  opacity: 1;
  transition: ease-in-out 0.5ms;
  letter-spacing: -1px;
}
ul li a:hover {
  opacity: 0.75;
}
@media all and (min-width: 720px) {
  ul li a {
    font-size: 4rem;
  }
}
@media all and (min-width: 720px) {
  ul li {
    padding-block: 0.25rem;
  }
}

/*-------HEADER-----------*/
header {
  padding-block: 2rem;
  width: 100%;
}
header img {
  max-width: 120px;
}
header a img {
  opacity: 1;
  transition: ease-in-out 0.5ms;
}
header a img:hover {
  opacity: 0.75;
}
header .flex {
  justify-content: space-between;
}
header nav a {
  color: #ffffff;
  opacity: 1;
  transition: ease-in-out 0.5ms;
}
header nav a:hover {
  opacity: 0.75;
}
header nav.home-nav a {
  color: #000000;
}

/*------------------FOOTER--------------*/
footer {
  color: #ffffff;
  padding: 5rem 0;
}

/*-------------------ALBUM CONTENT-----------*/
.album-content {
  color: #ffffff;
  display: flex;
  column-gap: 0;
  align-items: center;
  flex-direction: column-reverse;
}
@media all and (min-width: 720px) {
  .album-content {
    flex-direction: row;
    column-gap: 2rem;
  }
}
.album-content .text {
  width: 100%;
  text-align: right;
}
@media all and (min-width: 720px) {
  .album-content .text {
    width: 50%;
  }
}
.album-content .text * {
  margin: 0;
}
.album-content .text .streamers {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  justify-content: right;
  padding: 1rem 0 0 0;
}
.album-content .text .streamers p {
  opacity: 0.5;
}
.album-content .text .streamers img {
  filter: grayscale(100%);
  opacity: 1;
  transition: all 0.5s;
}
.album-content .text .streamers img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.album-content .text .album-info {
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
}
.album-content .text .album-info p {
  opacity: 0.5;
}
.album-content .text .album-info p:first-of-type {
  text-align: left;
}
.album-content .text .album-tracks-container {
  text-align: center;
}
.album-content .text .album-tracks-container h3 {
  padding: 2rem 0;
}
.album-content .text .album-tracks-container h3 span {
  font-size: 0.75em;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}
.album-content .text .album-tracks {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
}
.album-content .text .album-tracks ul:first-of-type {
  text-align: right;
}
.album-content .text .album-tracks ul:last-of-type {
  text-align: left;
}
.album-content .text .album-tracks ul li {
  padding: 0.25rem 0;
}
.album-content .text .album-tracks ul li a {
  color: #ffffff;
  font-size: 1rem;
  text-transform: capitalize;
}
.album-content .image {
  width: 100%;
}
.album-content .image img {
  max-width: 100%;
}
@media all and (min-width: 720px) {
  .album-content .image {
    width: 50%;
  }
}

section {
  padding-block: 2rem;
  padding-inline: 1rem;
}
section.album, section.lyrics {
  background-color: #000000;
}
section.story {
  background-color: #f5f2ec;
}

.album-credits {
  text-align: left;
}

.lyrics {
  color: #ffffff;
  text-align: left;
}

/*-----------ADDITIONAL------------*/
.additional .additional-content .additional-images img {
  max-width: 75%;
}

/*------------LYRICS MODAL-----------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  max-height: 80vh;
  width: 90%;
  max-width: 600px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  transform: scale(0.95);
}
.modal-content h1 {
  letter-spacing: -5px;
}
.modal-content p {
  text-align: left;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

.hidden {
  display: none !important;
}

/*-------------------ALBUM CONTENT-----------*/
.history-content {
  color: #ffffff;
  display: flex;
  column-gap: 0;
  align-items: center;
  flex-direction: column-reverse;
}
@media all and (min-width: 720px) {
  .history-content {
    flex-direction: row;
    column-gap: 2rem;
  }
}
.history-content .text {
  width: 100%;
  text-align: left;
}
@media all and (min-width: 720px) {
  .history-content .text {
    width: 50%;
  }
}
.history-content .text * {
  margin: 0;
}
.history-content .text p {
  margin-block: 0.5rem;
}
.history-content .image {
  width: 100%;
}
.history-content .image img {
  max-width: 100%;
}
@media all and (min-width: 720px) {
  .history-content .image {
    width: 50%;
  }
}

section {
  padding-block: 2rem;
  padding-inline: 1rem;
}
section.history {
  background-color: #000000;
}
section.story {
  background-color: #f5f2ec;
}

.album-credits {
  text-align: left;
}

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