@font-face {
  font-family: 'Micro 5';
  src: url('fonts/Micro5-Regular.woff2') format('woff2'), url('fonts/Micro5-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.main-section {
  min-height: 100vh;
}

body {
  cursor: url('../../assets/img/Pointer.png') 8 8, auto !important;
  background-color: rgba(205, 205, 205, 1);
}

/* INFINITE SCROLL */

.scroll-banner {
  background-color: #31ff52;
  height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.scroll-text {
  font-size: 40px;
  color: #3700FF;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-right: 80px;
  font-family: 'Micro5-Regular';
  text-transform: uppercase!important;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */

@media (max-width: 375px) {
  .scroll-banner {
    height: 40px;
  }
}

@media (max-width: 375px) {
  .scroll-text {
    font-size: 25px;
    padding-right: 50px;
  }
}

/* Tablet and small desktop */

@media (min-width: 376px) and (max-width: 768px) {
  .scroll-banner {
    height: 47px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .scroll-text {
    font-size: 32px;
    padding-right: 65px;
  }
}

/* GALLERY */

.gallery-section {
  height: calc(100vh - 84px);
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

.image-link {
  position: absolute;
  display: inline-block;
  transition: filter 0.3s ease;
  text-decoration: none;
  cursor: url('../../assets/img/Path.png'), pointer;
  overflow: visible;
}

.image-link img {
  width: 100%;
  height: auto;
  display: block;
}

@media (hover: hover) {
  .image-link:hover {
    animation: wobble 0.6s ease-out forwards;
    z-index: 100;
  }
}

@media (hover: none) {
  .image-link.wobble-animate {
    animation: wobble 0.6s ease-out forwards;
    z-index: 100;
  }
}

@keyframes wobble {
  0% {
    transform: scale(1) rotate(0deg);
  }
  15% {
    transform: scale(1.05) rotate(3deg);
  }
  30% {
    transform: scale(1.05) rotate(-2.5deg);
  }
  45% {
    transform: scale(1.05) rotate(1.5deg);
  }
  60% {
    transform: scale(1.05) rotate(-0.5deg);
  }
  100% {
    transform: scale(1.05) rotate(0deg);
  }
}

body {
}

.info-popup {
  position: absolute;
  transform: translateX(-50%);
  /*background-color: #ffffff;*/
  color: #000000;
  /*padding: 12px 20px;*/
  /*border-radius: 20px;*/
  /*white-space: nowrap;*/
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 101;
  box-shadow: none;
  /*border-width: 1px;*/
  /*border-style: solid;*/
  font-family: 'IBM Plex Mono';
  /*filter: url(#blob);*/
  overflow: visible;
  top: 100%;
  will-change: opacity;
  transform: translateZ(0);
}

.blob-container {
  display: flex;
  filter: url(#blob);
  overflow: visible;
  color: #000000;
  flex-direction: column;
  align-items: center;
  /*gap: 0;*/
}

.blob-row {
  display: flex;
  white-space: nowrap;
}

.blob-letter {
  display: inline-block;
  padding: 4px 4px;
  margin: 0 -4px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
}

.blob-space {
  display: inline-block;
  width: 0.4rem;
}

.image-link:hover .info-popup, .info-popup.touch-active {
  opacity: 1;
}

.image-link {
  overflow: visible;
}

/* Image size variations */

.size-small {
  width: 200px;
}

.size-medium {
  width: 250px;
}

.size-large {
  width: 275px;
}

.size-tiny {
  width: 180px;
}

/* Responsive */

@media (max-width: 375px) {
  .gallery-section {
    padding: 30px 10px;
  }
}

@media (max-width: 375px) {
  .info-popup {
    font-size: 12px;
    padding: 8px 12px;
    bottom: -45px;
  }
}

@media (max-width: 375px) {
  .size-small {
    width: 85px;
  }
}

@media (max-width: 375px) {
  .size-medium {
    width: 100px;
  }
}

@media (max-width: 375px) {
  .size-large {
    width: 115px;
  }
}

@media (max-width: 375px) {
  .size-tiny {
    width: 70px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .gallery-section {
    padding: 45px 15px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .info-popup {
    font-size: 14px;
    padding: 10px 16px;
    bottom: -52px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .size-small {
    width: 140px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .size-medium {
    width: 175px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .size-large {
    width: 195px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .size-tiny {
    width: 125px;
  }
}

#gallery {
}

.arc-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ARC */

.poster-div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
  gap: 80px;
}

.poster-image {
  max-height: 70vh;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0px 20px;
}

.top-bar {
  height: 64px;
  display: flex;
  align-items: center;
}

/* Responsive heights */

@media (max-width: 375px) {
  .top-bar {
    height: 40px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .top-bar {
    height: 47px;
  }
}

/* --- BACK BUTTON --- */

.back-button {
  font-size: 40px;
  color: #3700FF;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-left: 20px;
  font-family: 'Micro5-Regular';
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
  cursor: url('../../assets/img/Path.png'), pointer;
}

.back-button:hover {
  opacity: 0.6;
  color: #31ff52;
}

/* Responsive typography */

@media (max-width: 375px) {
  .back-button {
    font-size: 25px;
    /*padding-: 50px;*/
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .back-button {
    font-size: 32px;
    /*padding-right: 65px;*/
  }
}

.poster-image-about {
  max-height: 70vh;
  max-width: 20%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.text-about {
  font-family: 'IBM Plex Mono';
  font-size: clamp(28px, 3vw, 56px);
  line-height: 1;
  width: 80%;
  letter-spacing: -0.2px;
}

.about-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .poster-div {
    margin: 70px 0;
  }
}

.caption-about {
  display: flex;
  /*justify-content: center;*/
  padding: 0 2vw 15px 2vw;
}

@media (max-width: 576px) {
  .text-about {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .poster-image-about {
    max-width: 30%;
  }
}

@media (max-width: 576px) {
  .poster-div {
    gap: 40px;
  }
}

@media (max-width: 400px) {
  .poster-div {
    gap: 20px;
  }
}

.poster-image-about {
}

