body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

a {
  color: #00bfff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #1effff;
  text-shadow: 0 0 10px #00ffff;
}

.content {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
}

h1 {
  font-size: 3em;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00ffff;
}

h2 {
  font-size: 1.5em;
  font-weight: 300;
  color: #cccccc;
}

figure {
  margin: 30px 0;
}

figure img {
  width: 250px;
  height: auto;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

figure img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
}

p {
  line-height: 1.6;
  color: #e0e0e0;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3em;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  margin-bottom: 25px;
}

.contact-text {
  max-width: 700px;
  margin: 0 auto 25px auto;
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1.1em;
}

.contact-links {
  font-family: "Poppins", sans-serif;
  color: #00ffff;
  margin-top: 20px;
  font-size: 1.2em;
}

.contact-links a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  color: #00ffff;
  font-size: 2em;
  margin: 0 12px;
  transition: 0.3s;
  text-shadow: 0 0 10px #00ffff;
}

.social-icons a:hover {
  color: #ff00ff;
  text-shadow: 0 0 25px #ff00ff;
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.logo-container {
  margin-right: 15px;
}

.logo {
  width: 35px;
  height: auto;
  filter: drop-shadow(0 0 6px #00ffff);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px #00ffff);
}

nav {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

nav a {
  margin: 0 10px;
  color: #00bfff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #1effff;
  text-shadow: 0 0 10px #00ffff;
}

.content {
  margin-top: 100px;
}

.cv-button {
  display: inline-block;
  background-color: #00bfff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.cv-button:hover {
  background-color: #1effff;
  text-shadow: 0 0 10px #00ffff;
}

/* ========= Mobiele weergave fix ========= */
@media (max-width: 768px) {
  /* Header en logo onder elkaar centreren */
  header {
    position: static; /* niet meer fixed */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 0;
  }

  .logo {
    width: 60px;
    margin-bottom: 10px;
  }

  nav {
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
  }

  nav a {
    font-size: 1.1em;
    display: block;
    padding: 8px;
  }

  .content {
    margin-top: 30px; /* want header is niet meer fixed */
    padding: 15px;
    max-width: 90%;
  }

  figure img {
    width: 90%;
    max-width: 280px;
    margin: 10px 0;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.3em;
  }

  p {
    font-size: 1em;
    line-height: 1.5em;
  }
}
