@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
 
 * {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-padding-top: 80px;
  }
  header {
    background-color: #111;
    position: fixed;
    width: 100%;
    top: 0; left: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.9);
  }
  nav .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #63dafb;
    letter-spacing: 1.3px;
    cursor: default;
    user-select: none;
  }
  
  section {
    max-width: 1024px;
    margin: 100px auto 60px;
    padding: 0 20px;
  }
  h1, h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
  }
  /* Home Section */
  #home {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  #home .text {
    max-width: 550px;
  }
  #home h1 {
    font-size: 3.6rem;
    margin-bottom: 15px;
  }
  #home p {
    font-size: 1.3rem;
    color: #a1a1a1;
  }
  #home .photo {
  flex-shrink: 0;
  width: min(220px, 60vw);
  height: min(220px, 60vw);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(10,132,255,0.7);
  overflow: hidden;
  border: 5px solid #0a84ff;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

#home .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  box-shadow: 0 6px 32px rgba(10,132,255,0.18), 0 2px 8px rgba(0,0,0,0.13);
  border: none;
  background: #181c24;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  display: block;
}
  /* About Section */
  #about {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }
  #about p {
    font-size: 1.18rem;
    color: #d1d5db;
    margin-bottom: 1.45rem;
    line-height: 1.55;
  }
  #about ul {
    list-style-type: disc;
    margin: 0 0 2rem 1.4rem;
    padding: 0;
    font-size: 1.15rem;
    color: #d1d5db;
  }
  #about ul li {
    margin-bottom: 10px;
  }
  #about .highlight {
    color: #0a84ff;
    font-weight: 700;
  }
  /* Contact Section */
  #contact {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  #contact form {
    display: flex;
    flex-direction: column;
  }
  #contact label {
    margin: 15px 0 5px;
    color: #cbd5e1;
    font-weight: 600;
  }
  #contact input,
  #contact textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1.5px solid #444;
    font-size: 1.1rem;
    background: #121212;
    color: #eee;
    transition: border-color 0.3s ease;
  }
  #contact input:focus,
  #contact textarea:focus {
    border-color: #0a84ff;
    outline: none;
  }
  #contact textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'Poppins', sans-serif;
  }
  #contact button {
    margin-top: 25px;
    padding: 14px;
    background: #0a84ff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(10,132,255,0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  #contact button:hover,
  #contact button:focus {
    background: #0966d2;
    box-shadow: 0 12px 30px rgba(9,102,210,0.7);
    outline: none;
  }

  /* Custom Logo Styles */
  .custom-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1.2px;
    color: #0a84ff;
    user-select: none;
    margin-right: 2rem;
  }
  .sword-logo {
    width: 48px;
    height: 48px;
    display: block;
    background: #181c24;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(10,132,255,0.10);
    transition: box-shadow 0.3s;
  }
  .logo-text {
    background: linear-gradient(90deg, #0a84ff 60%, #63dafb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* Zwaarden animatie */
  .sword {
    transform-origin: 27px 12px;
    transition: transform 0.5s cubic-bezier(.4,2,.6,1);
  }
  .sword-left {
    transform: rotate(-20deg);
  }
  .sword-right {
    transform: rotate(20deg);
  }
  .custom-logo:hover .sword-left,
  .custom-logo:focus .sword-left {
    transform: rotate(-60deg);
  }
  .custom-logo:hover .sword-right,
  .custom-logo:focus .sword-right {
    transform: rotate(60deg);
  }
  /* Hamburger menu styles */

  /* Responsive adjustments */
  @media (max-width: 900px) {
   
    .custom-logo {
      font-size: 1.3rem;
      gap: 8px;
      margin-right: 1rem;
    }
    .sword-logo {
      width: 36px;
      height: 36px;
    }
    #home {
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
  
    #home {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    #home h1 {
      font-size: 2.2rem;
    }
    #home .photo {
      width: 140px;
      height: 140px;
      border-width: 3px;
      margin-bottom: 18px;
    }
    .custom-logo {
      font-size: 1.1rem;
      gap: 6px;
    }
    .sword-logo {
      width: 28px;
      height: 28px;
    }
  }

  @media (max-width: 480px) {
    
    .custom-logo {
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }
    #home .photo {
      width: 110px;
      height: 110px;
      border-width: 2px;
      margin-bottom: 14px;
    }
    #home h1 {
      font-size: 1.4rem;
    }
    section {
      margin: 70px auto 30px;
      padding: 0 8px;
    }
  }