/* Font */

@font-face {
  font-family: "11a11";
  src: url("../fonts/11a11-regular-webfont.woff2") format("woff2"),
    url("../fonts/11a11-regular-webfont.woff") format("woff");
}

/* DEFAULT SCREEN SIZE */

/* Header */
header {
  border-bottom: 2px solid black;
  position: fixed;
  width: 100%;
  background: white;
  top: 0%;
  height: 75px;
  z-index: 1;
}

.head-link {
  float: left;
}

header a:link {
  color: black;
}
header a:visited {
  color: black;
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-logo img {
  width: 100px;
}

.header-about {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
}

/* Body */
/* - General - */
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "11a11";
  vertical-align: baseline;
  background-color: white;
}

a:link {
  color: white;
}
a:visited {
  color: white;
}

/* - Homepage - */
.sketchContainer {
  position: fixed;
  background-color: black;
  width: 100%;
  height: 100%;
}

div.a004-img-wrapper {
  display: none;
}

.a004Link {
  position: fixed;
  text-align: center;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  color: white;
}

.bandcamp-iframe {
  position: fixed;
  text-align: center;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 1;
}

/* - About - */
.about-container {
  position: fixed;
  background-color: black;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  text-align: center;
}

.text-about {
  color: white;
  margin-right: 500px;
  margin-left: 500px;
}

/* - Downloads page - */
.download-body {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: snow;
}

.container {
  height: 100%;
  position: fixed;
}

.container-left {
  width: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.container-right {
  left: 40%;
  width: 60%;
}

.text-container a:link {
  color: black;
}

.text-container a:visited {
  color: black;
}

.dl-text-container {
  margin-top: 15%;
}

.fanzine-text-container {
  margin-top: 175px;
}

/* Footer */
footer {
  border-top: 2px solid black;
  height: auto;
  min-height: 60px;
  position: fixed;
  width: 100%;
  background: white;
  bottom: 0%;
}

  .footer-content {
    bottom: 0;
    margin-bottom: 19px;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
  }

footer p {
  margin: 0px;
  padding: 0px;
}


.footer-text {
  flex: 1 1 150px;
  min-width: 100px;
  display: flex;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foot-link {
  flex: 0 1 auto;
  min-width: 100px;
  text-align: right;
}

footer a:link {
  color: black;
}

footer a:visited {
  color: black;
}

#scrolling-container {
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
  position: fixed;
  bottom: 60px; /* Just above the footer */
  left: 0;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
  white-space: nowrap;
}

/* Animated scrolling text */
#scrolling-text {
  display: inline-block;
  animation: scrollText 120s linear infinite;
  transition: transform 0.5s ease-out; /* Smooth deceleration */
  white-space: nowrap;
}

#scrolling-text:hover {
    animation-play-state: paused; /* Pauses scrolling when hovered */
    transition: transform 0.8s ease-out; /* Smooth stop */
}

@keyframes scrollText {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-100%);
  }
}

#tooltip {
  position: absolute;
  background: rgba(255, 255, 255);
  color: rgb(0, 0, 0);
  border: solid black 1px;
  padding: 5px 10px;
  font-size: 0.9rem;
  border-radius: 5px;
  white-space: nowrap;
  display: none;
  pointer-events: none; /* Prevents blocking clicks */
  transition: opacity 0.2s ease-in-out;
  animation: glowEffect 1.5s infinite alternate;
}

@keyframes glowEffect {
  0% {
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
      ;
  }
  100% {
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

/* SMALL SCREEN SIZE */

@media only screen and (max-width: 1200px) {
  /* Header */

  .head-link {
    min-width: 100px;
    float: left;
  }

  /* Footer */

  .foot-link {
    flex: 0 1 auto;
    min-width: 80px;
    text-align: right;
  }

  .small-hid {
    visibility: hidden;
    display: none;
  }
}

.text-about {
  color: white;
  margin-right: 100px;
  margin-left: 100px;
}

/* HANDHELD SCREEN SIZE */

@media only screen and (max-width: 1000px) {
  /* Header */

  .header-logo {
    top: 50%;
    left: initial;
    right: 20px;
    transform: translate(0%, -50%);
  }

  .header-logo img {
    width: 100px;
  }

  /* Body */

  body {
    background-color: black;
  }

  div.a004-img-wrapper {
    height: 100%;
    line-height: 200px;
    overflow: hidden;
    text-align: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    display: flex;
  }

  div.a004-img-wrapper img {
    float: center;
    min-width: 300px;
    width: 40%;
    position: relative;
    height: auto;
  }

  .text-about {
    color: white;
    margin-right: 50px;
    margin-left: 50px;
  }

  .header-about {
    visibility: hidden;
    display: none;
  }

  /* Footer */
  .foot-link {
    text-align: right;
  }
  .mobile-hid {
    visibility: hidden;
    display: none;
  }
}
