/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;

  /* ruimte voor vaste navbar */
  padding-top: 120px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 8%;

  border-bottom: 1px solid #222;

  z-index: 99999;
}

.logo {
  color: #ffcc00;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;

  display: flex;
  gap: 25px;

  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 120px 20px 80px;

  background: linear-gradient(135deg, #0a0a0a, #111);
}

.hero h1 {
  font-size: 5rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.hero p {
  color: #ccc;
  font-size: 1.4rem;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;

  padding: 15px 40px;

  background: linear-gradient(135deg, #ffcc00, #ff8800);

  color: black;
  text-decoration: none;

  border-radius: 50px;

  font-weight: bold;

  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* =========================
   SECTION
========================= */
.section {
  padding: 100px 10%;
  text-align: center;
}

.section h2 {
  color: #ffcc00;
  font-size: 3rem;
  margin-bottom: 20px;
}

.section p {
  color: #ccc;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* =========================
   PLAYER
========================= */
.player {
  padding: 100px 10%;
  text-align: center;
}

.player h2 {
  color: #ffcc00;
  font-size: 3rem;
  margin-bottom: 40px;
}

.player-box {
  max-width: 600px;
  width: 100%;

  margin: auto;

  background: #151515;

  padding: 40px;

  border-radius: 20px;

  border: 1px solid #222;
}

.song-info h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.song-info p {
  color: #ccc;
}

.play-button {
  margin: 30px auto;

  width: 90px;
  height: 90px;

  background: #ffcc00;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: black;

  font-size: 2rem;

  cursor: pointer;

  transition: 0.3s;
}

.play-button:hover {
  transform: scale(1.1);
}

/* =========================
   SOUND BARS
========================= */
.volume {
  display: flex;
  justify-content: center;
  align-items: flex-end;

  gap: 5px;

  margin-top: 20px;
}

.volume span {
  color: #ffcc00;
  margin-right: 10px;
}

.bar {
  width: 6px;
  height: 20px;

  background: #ffcc00;

  border-radius: 5px;

  animation: bounce 1s infinite ease-in-out;
}

.bar:nth-child(2) {
  animation-delay: 0.1s;
}

.bar:nth-child(3) {
  animation-delay: 0.2s;
}

.bar:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes bounce {
  0%, 100% {
    height: 10px;
    opacity: 0.5;
  }

  50% {
    height: 30px;
    opacity: 1;
  }
}

/* =========================
   OVER PAGE
========================= */
.page {
  padding: 140px 10%;
  text-align: center;
}

.page h1 {
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.page p {
  color: #ccc;
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.8;
}

/* =========================
   RECORDS / SINGLES
========================= */
.grid {
  display: flex;
  justify-content: center;

  gap: 25px;

  flex-wrap: wrap;

  margin-top: 40px;
}

.record {
  background: #151515;

  border: 1px solid #222;

  border-radius: 15px;

  padding: 20px;

  width: 220px;

  text-align: center;

  transition: 0.3s;
}

.record:hover {
  transform: translateY(-10px);

  border-color: #ffcc00;

  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.record img {
  width: 100%;

  border-radius: 10px;

  margin-bottom: 15px;
}

.record h3 {
  color: #ffcc00;
  margin-bottom: 5px;
}

.record p {
  color: #ccc;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;

  padding: 30px;

  border-top: 1px solid #222;

  color: #777;

  background: #0a0a0a;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    padding: 15px 20px;

    z-index: 99999;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-links {
    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 10px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 160px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .section,
  .player,
  .page {
    padding: 70px 20px;
  }

  .section h2,
  .player h2,
  .page h1 {
    font-size: 2rem;
  }

  .player-box {
    padding: 25px 20px;
  }

  .play-button {
    width: 75px;
    height: 75px;
    font-size: 1.5rem;
  }

  .record {
    width: 100%;
    max-width: 300px;
  }

}