
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.30);
  color: white;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--accent-dark);
  background: rgba(255, 255, 255, 0.40);
}

.contact-form select {
  color: #f4c53f; /* iets donkerder geel voor betere leesbaarheid */
  border: 1px solid var(--accent-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ddd;
}
    :root {
      --background: #121212;
      --accent: #ffd36a;
      --accent-dark: #ffc247;
      --spotify-green: #137c36;
      --spotify-green-light: #1ED760;
      --spotify-green-dark: #0c4f20;
      --text: #1f1f1f;
      --muted: #aaa;
      --snippet-orange: #ff9900;
      --snippet-orange-hover: #ffbb33;
    }

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--background);
  color: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  margin: 0;


}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* zorgt dat inhoud bovenaan staat en socials onderin */
  ...
  min-height: calc(90vh - 4rem);
}
.card-content {
  flex-grow: 1;
}

    .card {
      background-image: url('images/background.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 1.5rem;
      padding: 1.5rem;
      max-width: 480px;
      width: 100%;
      min-height: 90vh;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      animation: popIn 0.8s ease-out;
      backdrop-filter: blur(8px);
      position: relative;

      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .card-content::-webkit-scrollbar {
      width: 8px;
    }

    .card-content::-webkit-scrollbar-thumb {
      background-color: var(--snippet-orange);
      border-radius: 4px;
    }

    .card-content::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
    }

    @keyframes popIn {
      0% { transform: scale(0.95); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    h1 {
      font-size: 2.4rem;
      margin-bottom: 0.6rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }

    nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1rem;
      gap: 0.3rem;
    }

    nav a {
      padding: 0.4rem 0.7rem;
      font-size: 0.65rem;
      font-weight: 600;
      text-decoration: none;
      color: white;
      background: rgba(255,255,255,0.3);
      border-radius: 1rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    nav a.active {
      background: var(--accent);
      color: black;
    }

    nav a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-20deg);
      transition: all 0.75s ease;
    }

    nav a:hover::before {
      left: 125%;
    }

    nav a:hover {
      transform: translateY(-2px);
      background: var(--accent-dark);
      color: black;
    }

    .stream-button {
      background: var(--spotify-green);
      padding: 0.4rem 0.7rem;
      font-size: 0.65rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .stream-button:hover {
      background: var(--spotify-green-light);
    }

    .stream-button i {
      margin-right: 0.3rem;
      color: #1ED760;
    }

    .cover {
      margin: 1rem auto;
    }

    .cover img {
      width: 80%;
      max-width: 280px;
      border-radius: 1rem;
    }

    .buttons {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-bottom: 1.2rem;
    }

    .button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.8rem 1.6rem;
      border-radius: 2rem;
      font-weight: 600;
      text-decoration: none;
      position: relative;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-20deg);
      transition: all 0.75s ease;
    }

    .button:hover::before {
      left: 125%;
    }

    .button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .button.spotify {
      background: var(--spotify-green-dark);
      color: white;
    }

    .button.spotify i {
      color: #1ED760;
    }

    .button.snippet {
      background: var(--snippet-orange);
      color: white;
      font-size: 0.9rem;
      border: none;
    }

    .button.snippet.playing {
      background: var(--snippet-orange-hover);
      box-shadow: 0 0 15px var(--snippet-orange-hover);
    }

    .button.snippet.playing::before {
      animation: continuousShine 2.5s linear infinite;
    }

    @keyframes continuousShine {
      0% { left: -75%; }
      100% { left: 125%; }
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .socials a {
      font-size: 1.6rem;
      color: white;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .socials a:hover {
      transform: rotate(8deg) scale(1.3);
      color: #ffddc1;
    }
.socials {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

    footer {
      margin-top: 2rem;
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
    }
#success-message {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 153, 0, 0.9);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  font-weight: bold;
  color: black;
  font-size: 1.2rem;
  z-index: 9999;
  display: none;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}


.lyrics {
      text-align: left;
      line-height: 1.6;
      background: rgba(255, 255, 255, 0.20);
      padding: 1rem;
      margin: 0.5 auto;
}
    .lyrics h1 {
      margin-bottom: 1rem;
    }
    .lyrics p {
      margin-bottom: 1em;
    }
.spotify-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent-dark);
  border-radius: 1rem;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 350px;
  margin: 1.5rem auto;
  color: white;
}

.spotify-link:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.spotify-link img {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.spotify-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--accent);
}

.spotify-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
}
.about-me {
  max-width: 800px;
  margin: 0.5rem auto;
  padding: 1rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 1rem;
  color: #f2e7d8;
}

.about-me p {
  margin-bottom: 1.2rem;
  color: white;
}

.about-me strong {
  color: var(--accent);
}

.about-me a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.about-me a:hover {
  border-bottom: 1px solid white;
}
