
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
}

body {
  background: #fff;
  color: #111;
  overflow-x: hidden;
}


.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #fff;
}

.header .logo img {
  height: 70px;
  width: auto;
  display: block;
}

.header .menu-btn {
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  color: #111;
  transition: all 0.3s;
}

.header .menu-btn:hover {
  color:  #6d21d2;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 2000;
}

.menu-overlay.open {
  transform: translateY(0);
}

.menu-header {
  position: absolute;
  top: 20px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header .menu-logo img {
  height: 70px;
  width: auto;
}

.close-btn {
  font-size: 32px;
  cursor: pointer;
  color: #111;
  transition: color 0.3s ease, transform 0.3s ease;
}


.menu-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  z-index: 201;
}

.menu-links a {
  font-size: 34px;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.25s ease, color 0.25s ease;
}

.menu-links a:hover {
  transform: translateX(8px);
  color:  #6d21d2;
}


.menu-socials {
  position: absolute;
  left: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-socials a {
  color: #111;
}

.menu-socials i {
  font-size: 22px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.menu-socials a:hover i {
  transform: translateX(6px);
  color: #6d21d2;
}


.menu-overlay .copyright {
  position: absolute;
  right: 48px;
  bottom: 32px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #333;
}


.page-label {
  position: fixed;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1500;
  pointer-events: none;
}

.page-label .num { font-weight: 900; font-size: 14px; letter-spacing: 2px; }
.page-label .line { width: 1.5px; height: 100px; background: #111; }
.page-label .text { 
  writing-mode: vertical-rl; 
  transform: rotate(180deg); 
  font-size: 11px; 
  font-weight: 900; 
  letter-spacing: 5px; 
  text-transform: uppercase; 
}

.socials-main {
  position: fixed;
  left: 48px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1500;
}

.socials-main a {
  font-size: 22px;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials-main a:hover {
  transform: translateX(6px) scale(1.1);
  color:  #6d21d2;
}


.discography-slider {
  max-width: 1200px;  
  margin: 0 auto;      
  padding: 0 48px;
}

.slider-window {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .slide {
    grid-template-columns: 1fr;
  }
  .page-label {
    display: none;
  }
}

.album-card {
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.album-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.album-card:hover {
  transform: scale(1.05);
}

.album-card:hover h4 {
  color:  #6d21d2;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}


.slider-nav-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 28px;
}

.slider-nav-bottom button {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
}



.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #111;
  margin: 160px 0 40px; 
}

@media (max-width: 900px) {
  .section-title {
    font-size: 36px;
    margin-top: 140px;
  }
}


.homepage-copyright {
  width: 100%;
  text-align: right;
  padding: 40px 48px 24px;
  font-size: 12px;
  font-weight: 900;
  color: #111;
  background: #fff;
}


@media (max-width: 1024px) {
  .slider-nav-bottom button {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .slider-nav-bottom button {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
    margin-top: 120px;
  }
}

body.menu-open {
  overflow: hidden;
}
