/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);

  z-index: 999;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 4px;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 2px;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* HERO SECTION */

.hero {
  height: 200vh;

  background-image: url("bg.PNG");
  background-size: cover;
  background-position: center;

  background-attachment: fixed;

  position: relative;
}

.hero-overlay {
  position: sticky;
  top: 0;

  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-box {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px 70px;

  color: black;

  text-align: center;
}

.hero-box h1 {
  font-size: 4rem;
  letter-spacing: 10px;
  font-weight: 900;
}

/* ABOUT SECTION */

.about-section {
  min-height: 100vh;

  background: #0d0d0d;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 140px 60px;
}

.about-wrapper {
  width: 100%;
  max-width: 1400px;
}

.about-title {
  font-size: 3rem;
  letter-spacing: 6px;

  margin-bottom: 60px;

  text-align: center;
}

.about-container {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;

  align-items: start;
}

.about-image img {
  width: 100%;
  height: 500px;

  object-fit: cover;
}

.about-text {
  padding-top: 0;
}

.about-text p {
  margin-bottom: 20px;

  line-height: 1.8;
  color: #cfcfcf;
}

/* CONTACT SECTION */

.contact-section {
  min-height: 70vh;

  background: black;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 100px 40px;
}

.contact-container {
  text-align: center;
}

.contact-container h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  letter-spacing: 5px;
}

.contact-container p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-links a {
  color: white;
  text-decoration: none;

  border: 1px solid white;

  padding: 12px 24px;

  transition: 0.3s;
}

.social-links a:hover {
  background: white;
  color: black;
}

/* FADE-IN SCROLL EFFECTS */

.about-section,
.contact-section {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.about-section.visible,
.contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 1000px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .hero-box h1 {
    font-size: 2.5rem;
  }

  .navbar {
    padding: 20px;
  }

  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 768px) {

  /* NAVBAR */

  .navbar {
    width: 100%;
    padding: 18px 16px;

    flex-direction: column;
    gap: 14px;

    text-align: center;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .nav-links {
    width: 100%;

    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* HERO TITLES */

  .hero-overlay h1,
  .discography-hero h1,
  .experience-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 5px;

    text-align: center;
    padding: 0 20px;
  }

  /* CONTROLS */

  .controls-section {
    padding: 40px 20px;
  }

  .controls-container {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  #searchInput,
  #sortSelect {
    width: 100%;
    min-width: unset;
  }

  .layout-buttons {
    width: 100%;
  }

  .layout-buttons button {
    width: 100%;
  }

  /* DISCOVERY GRID */

  .albums-section,
  .events-section {
    padding: 0 20px 80px;
  }

  .albums-container.grid-layout {
    grid-template-columns: 1fr;
  }

  /* ALBUM PAGES */

  .album-page {
    padding: 140px 20px 80px;
  }

  .album-header {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    gap: 30px;
  }

  .album-header img {
    width: 100%;
    max-width: 320px;

    height: auto;

    display: block;
    margin: 0 auto;
  }

  .album-meta {
    width: 100%;
    max-width: 600px;
  }

  .album-meta h1 {
    font-size: 2rem;
  }

  .album-meta p {
    line-height: 1.8;
  }

  .stream-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* TRACKLIST */

  .tracklist {
    margin-top: 50px;
  }

  .track {
    padding: 18px 0;

    font-size: 0.9rem;

    gap: 20px;
  }

  /* BACK BUTTON */

  .back-button {
    top: 105px;
    left: 20px;

    font-size: 0.85rem;
  }

}