@font-face {
  font-family: 'ABC Oracle';
  src: url('./fonts/ABCOracleCyrillic-Bold-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ABC Oracle';
  src: url('./fonts/ABCOracleCyrillic-Ultra-Trial.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'ABC Oracle';
  src: url('./fonts/ABCOracleCyrillic-Ultra-Trial.otf') format('opentype');
  font-weight: 950;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: 'ABC Oracle', sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  scroll-snap-type: y mandatory;
}

.snap-section {
  height: 100vh;
  padding-inline: 5%;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h2 {
  position: relative;
  font-weight: 950;
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  z-index: 999;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 5%;
  padding-block: 8px;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.6vw, 3rem);
}

.nav-links a {
  font-weight: 900;
  color: #ffffff;
  font-size: clamp(1rem, 2.2vw, 2rem);
}

#top-banner {
  background-color: #fff500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#top-banner img {
  max-width: 82%;
  max-height: 72vh;
  width: auto;
  height: auto;
}

#profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20vh;
  padding-bottom: 6vh;
  z-index: 0;
}

.decor {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  font-size: clamp(3rem, 7.5vw, 8.5rem);
  font-weight: 900;
  line-height: 0.8;
  color: #a7a7a7;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.decor-left {
  left: 0;
  bottom: 5vh;
}

.decor-right {
  right: 5%;
  top: 12vh;
}

.profile-main-title {
  position: absolute;
  top: 11vh;
  right: 5%;
  width: fit-content;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  white-space: nowrap;
  z-index: 100;
}

.profile-main-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: -0.3em;
  bottom: 0.08em;
  height: 8px;
  background-color: #fff500;
  z-index: -1;
}

.profile-content {
  display: flex;
  align-items: flex-start;
  gap: 7vw;
}

.profile-img-box {
  position: relative;
  width: 36%;
  flex-shrink: 0;
}

.profile-img-box::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-image: url("./dot-border.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 1;
}

.profile-img-box img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
}

.profile-text {
  flex: 1;
  line-height: 1.6;
}

.profile-text h3 {
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 5vh;
}

.profile-text p {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(0.9rem, 1.35vw, 1.25rem);
}

#members {
  display: flex;
  flex-direction: column;
  padding-top: 12vh;
  z-index: 0;
}

#members h2 {
  width: fit-content;
  margin-bottom: 6vh;
}

#members h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: -0.35em;
  bottom: 0.08em;
  height: 8px;
  background-color: #fff500;
  z-index: -1;
}

.members-wrap {
  display: flex;
  align-items: flex-start;
  gap: 5vw;
  height: 32vw;
  padding-left: 5vw;
}

.member-card {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 242 / 680;
}

.member-card:nth-child(even) {
  margin-top: 7vh;
}

.card-bg-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translate(-8px, 8px);
  transition: transform 0.3s ease;
  z-index: 0;
}

.card-portrait {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.3s ease;
  z-index: 2;
}

.member-card:hover .card-portrait {
  transform: translateY(-10px);
}

.member-card:hover .card-bg-yellow {
  transform: translate(-8px, 18px);
}

#genre {
  display: flex;
  flex-direction: column;
  padding-block: 12vh 6vh;
  z-index: 0;
}

#genre h2 {
  width: fit-content;
  margin-bottom: 4vh;
}

#genre h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 100%;
  height: 0.4rem;
  background-color: #fff500;
}

.genre-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 5%;
}

.genre-text {
  max-width: 42%;
}

.genre-text p {
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.genre-carousel {
  position: absolute;
  right: -560px;
  top: 50%;
  transform: translateY(-50%);
  width: 1080px;
  height: 1080px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
}

.carousel-inner img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#discography {
  display: flex;
  flex-direction: column;
  padding-block: 12vh 6vh;
  background-color: #ffffff;
}

#discography h2 {
  width: fit-content;
  margin-bottom: 6vh;
  z-index: 4;
}

#discography h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: -0.35em;
  bottom: 0.08em;
  height: 8px;
  background-color: #fff500;
  z-index: -1;
}

#discography input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.record-player {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.97);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 3;
}

#album1:checked ~ .record-player,
#album2:checked ~ .record-player,
#album3:checked ~ .record-player,
#album4:checked ~ .record-player,
#album5:checked ~ .record-player,
#album6:checked ~ .record-player,
#album7:checked ~ .record-player,
#album8:checked ~ .record-player {
  opacity: 1;
  visibility: visible;
}

.album-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw;
  padding-inline: 5%;
  padding-top: 14vh;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92);
}

#album1:checked ~ .record-player .album-content:nth-of-type(1),
#album2:checked ~ .record-player .album-content:nth-of-type(2),
#album3:checked ~ .record-player .album-content:nth-of-type(3),
#album4:checked ~ .record-player .album-content:nth-of-type(4),
#album5:checked ~ .record-player .album-content:nth-of-type(5),
#album6:checked ~ .record-player .album-content:nth-of-type(6),
#album7:checked ~ .record-player .album-content:nth-of-type(7),
#album8:checked ~ .record-player .album-content:nth-of-type(8) {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.record-disc {
  position: relative;
  width: 62vh;
  margin-left: -18vh;
  flex-shrink: 0;
}

.record-cover {
  width: 100%;
  border-radius: 50%;
  animation: recordSpin 16s linear infinite;
}

@keyframes recordSpin {
  100% {
    transform: rotate(360deg);
  }
}

.record-tonearm {
  position: absolute;
  top: -2vh;
  left: 56%;
  width: 14px;
  height: 34vh;
  background-color: #b3b3b3;
  transform: rotate(16deg);
  transform-origin: top center;
  z-index: 2;
}

.record-tonearm::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -12px;
  width: 26px;
  height: 26px;
  background-color: #8c8c8c;
  border-radius: 50%;
}

.track-list {
  max-width: 520px;
  max-height: 62vh;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.track-list::-webkit-scrollbar {
  display: none;
}

.track-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 2px solid #000000;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  transition: 0.25s ease;
  pointer-events: auto;
}

.track-item:hover {
  background-color: #fff500;
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 #fff500;
}

.album-carousel {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 14vh;
  padding-block: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.album-carousel::-webkit-scrollbar {
  display: none;
}

.album-item {
  flex: 0 0 28vh;
  height: 28vh;
}

.album-item:nth-child(even) {
  margin-top: 6vh;
}

.album-item label {
  display: block;
  cursor: pointer;
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-item:hover img {
  transform: translateY(-12px);
  box-shadow: 0 14px 0 #fff500;
}

.live-section {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 18vh;
}

.live-section h2 {
  position: absolute;
  top: 12vh;
  left: 5%;
  color: #ffffff;
  margin: 0;
}

.live-card img {
  max-width: 100%;
  max-height: 62vh;
  width: auto;
  height: auto;
  margin-inline: auto;
}

.gallery-section {
  background-color: #000000;
  display: flex;
  align-items: center;
  padding-block: 12vh 8vh;
}

.gallery-inner {
  width: 100%;
}

.gallery-title {
  color: #ffffff;
  text-align: right;
  margin-bottom: 6vh;
}

.gallery-title::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 0;
  width: 100%;
  height: 6px;
  background-color: #fff500;
}

.gallery-outer {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.gallery-outer::-webkit-scrollbar {
  display: none;
}

.gallery-wrap {
  display: flex;
  gap: 2rem;
}

.gallery-item {
  flex: 0 0 26vh;
  height: 42vh;
  overflow: hidden;
  transition: 0.3s ease;
}

.gallery-item:nth-child(even) {
  margin-top: 5vh;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}

.shows-section {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding-block: 12vh 8vh;
}

.shows-inner {
  width: 100%;
}

.shows-title {
  text-align: left;
  margin-bottom: 6vh;
}

.shows-title::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #fff500;
}

.shows-outer {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.shows-outer::-webkit-scrollbar {
  display: none;
}

.shows-wrap {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.shows-item {
  display: block;
  flex: 0 0 30vh;
  padding: 12px;
  background-color: #fff500;
  transition: 0.3s ease;
}

.shows-item:nth-child(even) {
  margin-top: 4vh;
}

.shows-item img {
  width: 100%;
  height: auto;
}

.shows-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.show-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 5%;
  background-color: #ffffff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.show-modal:target {
  opacity: 1;
  visibility: visible;
}

.show-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 0;
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.modal-poster {
  position: relative;
}

.modal-poster img {
  width: 100%;
  max-width: 420px;
}

.modal-poster::after {
  content: "";
  position: absolute;
  inset: -12px;
  background-color: #fff500;
  z-index: -1;
}

.modal-text h3 {
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 3vh;
}

.modal-text p {
  margin-bottom: 0.8rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.ticket-info {
  margin-top: 2rem;
}

.modal-side-text {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #eeeeee;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 950;
  letter-spacing: 10px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6vh 5%;
  background-color: #fff500;
  scroll-snap-align: end;
}

footer p {
  text-align: center;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.4;
}

@media (max-width: 768px) {
  html {
    scroll-snap-type: none;
  }

  .snap-section {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .profile-content {
    flex-direction: column;
    gap: 2rem;
  }

  .profile-img-box {
    width: 100%;
  }

  .decor {
    display: none;
  }

  .genre-text {
    max-width: 100%;
  }

  .genre-carousel {
    display: none;
  }

  #members,
  #discography {
    padding-bottom: 10vh;
  }

  .members-wrap {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .member-card {
    height: 42vh;
  }

  .live-section h2 {
    position: static;
    margin-bottom: 4vh;
  }

  .nav-logo img {
    height: 36px;
  }

  .modal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-side-text {
    display: none;
  }
}
