  /* ============================= */
  /* Globale Kleuren en Thema       */
  /* ============================= */
  :root {
    --primary-neon: #FF6600;
    --background-dark: #121212;
    --text-light: #ff8800;
    --text-muted: #aaa;
    --transition-duration: 0.3s;
    --shadow-neon: 0 0 8px var(--primary-neon);
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .contrast-outline {
    border: 2px solid var(--primary-neon);
    color: var(--primary-neon);
    background: transparent;
    padding: 0.75rem 1.5rem;
    text-align: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition-duration), color var(--transition-duration);
  }
  .button {
    border: none;
    color: var(--background-dark);
    text-align: center;
    align-items: center;
    margin:0 auto;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin: 0 auto;
    transition: background-color var(--transition-duration), color var(--transition-duration);
  }

  /* ============================= */
  /* Body & Typografie             */
  /* ============================= */
  body {
    background-color: var(--background-dark);
    color: var(--text-light);
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      flex-direction: column;
      min-height: 100vh; /* Zorgt dat body altijd minstens het hele scherm hoog is */
      margin: 0; /* Verwijder standaard margin */
      background-color: var(--background-dark);
      color: var(--text-light);
  }

  a {
    color: var(--primary-neon);
    text-decoration: none;
    transition: color var(--transition-duration);
  }

  h1, h2, h3 {
    color: var(--primary-neon);
    text-shadow: 0 0 6px rgba(255, 102, 0, 0.7);
    text-align: center;
  }

  .section-padding {
    margin: 0 auto;
    text-align: center;
    padding: 2rem 3rem;
    color :#ffffff;
  }

  /* ============================= */
  /* Header & Navigatie            */
  /* ============================= */
  header {
    padding: 1rem 2rem;
    background-color: var(--background-dark);
    border-bottom: 1px solid var(--primary-neon);
    box-shadow: 0 4px 12px rgba(255,102,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .container-fluid {
    max-width: 1280px;
    margin: 0 auto;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Logo */
  nav .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
  }

  nav .brand a {
    color: var(--text-light);
    text-shadow: 0 0 3px var(--primary-neon);
  }

  /* Profielfoto */
  .Profielfoto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-neon);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .Profielfoto:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--primary-neon);
  }

  /* ============================= */
  /* Desktop Menu                  */
  /* ============================= */
  #desktop-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
    z-index: 900;
  }

  #desktop-menu a {
    padding: 0.5rem 0;
    transition: color var(--transition-duration), text-shadow var(--transition-duration);
  }

  #desktop-menu a:hover {
    color: var(--primary-neon);
    
    text-shadow: 0 0 6px rgba(255, 102, 0, 0.7);
  }

  /* ============================= */
  /* Hamburger Menu                */
  /* ============================= */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 35px;
    height: 30px;
    cursor: pointer;
    z-index: 2000;
    
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-neon);
    border-radius: 3px;
    transition: all 0.4s ease;
    box-shadow: 0 0 6px var(--primary-neon);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  @media (max-width:768px) {
    .hamburger { display: flex; z-index: 3000; }
  }

  /* ============================= */
  /* Mobile Menu                   */
  /* ============================= */
  .mobile-menu {

    position: fixed;
    top: 100px; /* hoogte van je header (pas aan indien nodig) */
    bottom: 60px; /* hoogte van je footer (pas aan indien nodig) */
    right: -300px;
    width: 250px;
    background: var(--background-dark);
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    display: flex;
    box-shadow: -4px 0 15px rgba(255,102,0,0.4);
    transition: right 0.4s ease;
    z-index: 1001; /* boven content, onder header indien nodig */
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu li a {
    font-size: 1.2rem;
    color: var(--primary-neon);
    display: block;
    transition: all 0.3s ease;
  }

  .mobile-menu li a:hover {
    text-shadow: 0 0 8px rgba(255,102,0,0.7);
  }

  /* Close button */
  .mobile-close {
    background: none;
    border: none;
    color: var(--primary-neon);
    font-size: 1.8rem;
    cursor: pointer;
    align-self: flex-end;
  }

  /* ============================= */
  /* Overlay                        */
  /* ============================= */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ============================= */
  /* Neon & Typewriter effecten     */
  /* ============================= */
  .infojobs {
    min-height: 1.5rem;
    font-weight: 500;
    color: var(--primary-neon);
    text-align: center;
    margin: auto;
    text-shadow: 0 0 6px rgba(255,102,0,0.7), 0 0 12px rgba(255,102,0,0.3);
    display: block;
  }

  /* ============================= */
  /* Projectkaarten (basis)        */
  /* ============================= */
  .project-card {
    position: relative;
    border-radius: 14px;
    padding: 2rem;
    background: linear-gradient(145deg, var(--card-bg), var(--card-inner));
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }

  /* Lijnaccent bovenaan */
  .project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--primary-neon));
    background-size: 200% 100%;
    animation: moveAccent 6s linear infinite;
  }


  /* Titel */
  .project-card h3 {
    color: var(--primary-neon);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  /* Tekst */
  .project-card p {
    color: #d1d1d1;
    line-height: 1.6;
    font-size: 1rem;
  }

  /* Hover effect */
  .project-card:hover {
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
  }

  /* ============================= */
  /* Projectkaart met glow effect  */
  /* ============================= */
  .project-card-glow {
    position: relative;
    border-radius: 14px;
    padding: 2rem;
    background: var(--card-inner);
    color: var(--text-light);
    overflow: hidden;
    border: 2px solid var(--primary-neon);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.15);
  }

  @keyframes orangePulse {
    0%, 100% {
      border-color: var(--primary-neon);
      box-shadow: 0 0 8px var(--primary-neon), 0 0 18px var(--primary-neon);
    }
    50% {
      border-color: var(--secondary-neon);
      box-shadow: 0 0 20px var(--secondary-neon), 0 0 40px rgba(255, 102, 0, 0.5);
    }
  }

  /* Hover effect (extra vurige gloed) */


  /* Titel & tekst binnen glow card */
  .project-card-glow h3 {
    color: var(--primary-neon);
    text-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }

  .project-card-glow p {
    color: #e5e5e5;
    line-height: 1.6;
  }

  /* ============================= */
  /* Knoppen neon style            */
  /* ============================= */
  [role="button"].contrast.outline {
    color: var(--primary-neon);
    border-color: var(--primary-neon);
    transition: all 0.3s ease;
  }

  [role="button"].contrast.outline:hover {
    background-color: var(--primary-neon);
    color: var(--background-dark);

  }
  .form-button {
    background-color: var(--primary-neon);
    color: var(--background-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    background-color: #FF6600;
    font-weight: 600;
    transition: background-color var(--transition-duration), box-shadow var(--transition-duration);
  }
  .form-button {
    background-color: var(--primary-neon);
    color: var(--background-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    background-color: #FF6600;
    font-weight: 600;
    transition: background-color var(--transition-duration), box-shadow var(--transition-duration);
  }

  /* ============================= */
  /* Footer                        */
  /* ============================= */
  footer {
      left: 0;
      right: 0;
      text-align: center;
      color: var(--background-dark);
      background-color: var(--primary-neon);
      font-weight: 600;
      box-shadow: 0 -4px 12px rgba(255,102,0,0.3);
      padding: 1.5rem 1rem;
  }

  main{
      flex: 1;
  }
  /* ============================= */
  /* Media Queries                  */
  /* ============================= */
  @media (max-width: 768px) {
    #desktop-menu { display: none; }
    .mobile-menu, .menu-overlay { display: flex; }
  }

  @media (min-width: 769px) {
    .mobile-menu, .menu-overlay { display: none; }
  }


    .progress-container {
      width: 100%;
      background-color: #eee;
      border-radius: 10px;
      overflow: hidden;
      height: 20px;
      position: relative;
    }

    .progress-fill {
      --value: 70; /* pas dit percentage aan */
      width: calc(var(--value) * 1%);
      background: var(--primary-neon);
      height: 100%;
      border-radius: 10px 0 0 10px;
      transition: width 0.5s ease;
    }

    .progress-text {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      font-size: 13px;
      color: #fff;
      font-weight: bold;
      line-height: 20px;
    }
    @keyframes progress {
      from { width: 0; }
      to { width: calc(var(--value) * 1%); }
    }