@import url("https://fonts.googleapis.com/css?family=Chathura&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/jiq2ijh.css");
@import url("https://use.typekit.net/wng5euy.css");
@import url("https://use.typekit.net/exz7qyg.css");
@import url("https://use.typekit.net/xao7brd.css");

html {
  --main-bg-color: #cccccc;
  --font: "octynaz", sans-serif;
  --font1: "Jost", sans-serif;
  --font2: "Chathura", sans-serif;
  --font3: "fit", sans-serif;
  --font4: "niveau-grotesk", sans-serif;
  --font5: "niveau-grotesk-small-caps", sans-serif;
  --font-lorimer: "lorimer-no-2", sans-serif;
  --font-lorimer-c: "lorimer-no-2-condensed", sans-serif;
}

body {
  margin: 0;
  font-size: 10px;
  font-family: var(--font3);
  color: #464646;
  overflow: hidden;
  background-color: black;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 30%;
}

.fade-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.fade-image.show {
  opacity: 1;
  z-index: 2;
}

.page {
  position: absolute;
  display: flex;
  row-gap: 16px;
  flex-direction: column;
  top: 18%;
  /*   height: 80%; */
  width: 100%;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: hidden; /* changed from scroll */
  height: 80%;
}

.page > div {
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 2s ease-in-out;
}

.page > div.show {
  opacity: 1;
}

.logo2-container {
  position: fixed;
  top: 0;
  left: 5%;
  width: 50%;
  z-index: 10;
  opacity: 80%;
}
.logo2-container > img {
  object-fit: contain;
  width: 100%;
}

.logo-container {
  position: absolute;
  height: 10%;
  width: 100%;
  margin: 8px 0px 8px 0px;
  /*   mix-blend-mode: difference; */
  z-index: 2;
}

.logo {
  color: #464646;
  font-size: 20vw;
  /*   filter: blur(0.1px); */
  -webkit-text-stroke: 2px rgba(200, 200, 200, 0.5);
  position: absolute;
  top: 0px; /* Adjust based on your layout */
  left: 10px; /* Adjust based on your layout */
  transition: opacity 2s ease-in-out;
  opacity: 0; /* Hidden by default */
}

.fade-logo.show {
  opacity: 0.85; /* Visible state */
}

.tourdate-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*   background: rgba(0,0,0,0.7); */
  padding: 8px;
  margin: 8px;
  /*   border: 1px solid grey; */
  border-radius: 4px;
  color: rgba(180, 180, 180, 1);
  font-family: var(--font4);
  font-size: 26px;
  line-height: 28px;
  font-weight: 200;
}

.tourdate-container > .date {
  font-family: var(--font5);
  font-size: 22px;
  line-height: 28px;
}
.tourdate-container > .city {
  font-size: 24px;
  font-weight: 300;
  line-height: 22px;
}
.tourdate-container > .venue {
  font-weight: 600;
}
.tourdate-container > .about {
  font-family: var(--font6);
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
}

.basic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*   background: rgba(0,0,0,0.7); */
  padding: 8px;
  margin: 8px;
  margin-top: 12px;
  /*   border: 1px solid grey; */
  /*   border-radius: 4px; */
  color: rgba(220, 220, 220, 1);
  font-family: var(--font4);
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}

.art-container {
  display: flex;
}

.art-container > img {
  width: 100%;
  object-fit: contain;
}

.album-container {
  display: flex;
  width: 40%;
  /*   height: 200px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*   background: rgba(0,0,0,0.7); */
  padding: 8px;
  margin: 8px;
  /*   border: 1px solid grey; */
  border-radius: 4px;
  color: rgba(180, 180, 180, 1);
  font-family: var(--font4);
  font-size: 22px;
  line-height: 28px;
  font-weight: 200;
}
.album-container > .album-top {
  display: flex;
  width: 100%;
}
.album-info {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 2px;
}
.album-title {
  font-weight: 600;
  font-size: 6vw;
}
.album-songs {
  font-size: 4vw;
  line-height: 5vw;
  text-align: left;
}

.album-container > .album-bottom {
  margin-top: 8px;
  margin-left: 16px;
  display: flex;
  width: 100%;
  height: 20%;
  column-gap: 16px;
  align-items: center;
  justify-content: space-evenly;
}
.icon-button {
  cursor: pointer;
  width: 10%;
  height: 10%;
}
.icon-button > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.album-button {
  padding: 4px 4px 4px 4px;
}

.footer-nav {
  position: fixed;
  /*   mix-blend-mode: difference; */
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  z-index: 2;
}

.footer-nav a {
  color: #cfcfcf;
  text-decoration: none;
  font-family: var(--font-lorimer);
  font-size: 20px;
  font-weight: 700;
  transition: transform 1s ease;
}

.footer-nav a:target {
  color: white;
  transform: scale(1.5);
  text-stroke: 1px 1px 2px black;
}

.hidden {
  display: none;
}

button {
  background: none;
  border: 1px solid rgba(180, 180, 180, 1);
  color: rgba(180, 180, 180, 1);
  font-family: var(--font4);
  margin: 8px;
  font-size: 12px;
  padding: 4px 20px 5px 24px;
  line-height: 18px;
  cursor: pointer;
}

button:hover {
  color: black;
  background: rgba(180, 180, 180, 1);
}

.music-grid {
  display: flex;
  width: 100%;
  height: 100%;
  /*     background: blue; */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10%;
}

@media (min-width: 600px) {
  .fade-image {
    object-position: top;
  }
  .logo {
    font-size: 8vw;
  }
  .footer-nav a {
    font-size: 2vw;
  }
  .page {
    align-items: center;
    text-align: -webkit-center;
  }
  .page > div {
  }
  .tourdate-container {
    width: 50vw;
  }
  .show {
    width: 100%;
  }
  .album-container {
    display: flex;
    width: 22%;
    /*   height: 200px; */
    justify-content: center;
    margin-top: 8%;
  }
  .logo2-container {
    width: 20vw;
    left: 2%;
  }
  .about {
    font-size: 22px;
    line-height: 22px;
    margin: 0 5%;
    margin-top: 10%;
  }
  .art-container {
    width: 100%;
  }
  .footer-nav a {
    font-size: 24px;
  }
  .footer-nav {
    position: fixed;
    /*   mix-blend-mode: difference; */
    top: 2%;
    right: 0;
    width: 80%;
    height: 40px;
    display: flex;
    justify-content: space-evenly;
    padding: 6px 0;
    z-index: 2;
  }
  .album-title {
    font-size: 2vw;
    line-height: 2.2vw;
    margin-top: 12px;
  }
  button {
    font-size: 16px;
  }
  .music-grid {
    margin-top: 1%;
  }
}
