* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

body {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    padding: 20px;
  
    /* achtergrond afbeelding */
    /* background-image: url("images/background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; */
  }
  
  /* donkere overlay laag */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: -1;
  }

  .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05); /* donker laagje */
    z-index: -1;
}


.logo {
  position: fixed;
  height: 40px;
  width: auto;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo img {
  height: 80px;  /* pas aan naar wens */
  width: auto;
  display: block;
}

/* .content {

} */
  
  .content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  min-height: 100vh;

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

  color: white;
  text-align: center;
  padding: 20px;
}
  
  /* HERO */
  .hero {
    text-align: center;
     margin-top: 10vh;
    /* padding: 60px 20px; */
  }
  
  .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  h1 {
    margin: 10px 0 5px;
    font-size: 28px;
  }
  
  p {
    color: #aaa;
    margin-bottom: 20px;
  }
  
  /* CTA BUTTON */
  .cta {
    display: inline-block;
    padding: 14px 22px;
    background: #4214d0;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.2s ease;
  }
  
  .cta:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  /* SECTION */
  .section {
    margin-top: 40px;
  }
  
  .section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ddd;
  }
  
  /* CARD */
  .card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 14px;
  }
  
  .cover {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 10px;
  }
  
  .info h3 {
    margin: 0;
    font-size: 16px;
  }
  
  .info p {
    margin: 5px 0 0;
    font-size: 10px;
    color: #aaa;
  }

  .spotify-section {
    margin-top: 40px;
    text-align: center;
  }
  
  .spotify-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ddd;
  }
  
  .spotify-section iframe {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .spotify-embed {
    display: block;
    width: 100%;
    height: 152px;
  
    margin: 0;
    padding: 0;
    transform: translateZ(0);
    border: 0;
    border-radius: 12px;
  
    line-height: 0; /* BELANGRIJK voor Safari glitches */
  }

  .spotify-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .release-box {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 14px;
    margin-top: 15px;
  }
  
  .release-text {
    margin-top: 10px;
    font-size: 13px;
    color: #aaa;
    text-align: center;
  }

  .section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .release-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  
    background: #1a1a1a;
    border-radius: 16px;
  
    padding: 16px;
  
    display: flex;
    flex-direction: column;
  
    align-items: stretch; /* BELANGRIJK */
    gap: 0; /* geen extra spacing */
  }
  
  /* FOOTER */
  .footer {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    color: #666;
  }
  
  /* RESPONSIVE */
  @media (max-width: 600px) {
    h1 {
      font-size: 22px;
    }
  
    .hero {
      padding: 40px 10px;
    }
  
    .card {
      flex-direction: column;
      align-items: flex-start;
    }
  }