@font-face {
  font-family: Axis;
  font-style: normal;
  font-weight: normal;
  src: url('../woff/axis.woff') format('woff');
  }

.axis {
  font-family: Axis;
}

@font-face {
  font-family: yellowtail;
  font-style: normal;
  font-weight: normal;
  src: url('../woff/Yellowtail-Regular.woff') format('woff');
}

.yellowtail {
  font-family: yellowtail;
  color: var(--accent-color);
  font-size: 34px;
}


/* THEMA OVERRIDE: Dark, Monospace, Striking Colors */
:root {
  --bg-color: #0d1117; /* Diep donkergrijs/blauw */
  --bg-surface: #161b22;
  --text-main: #c9d1d9;
  --accent-color: #00ffcc; /* Striking Cyaan/Neon */
  --accent-secondary: #ff0055; /* Striking Roze/Rood voor waarschuwingen/highlights */
  --font-mono: 'Fira Code', monospace;
  --font-sans: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .nav-link, .typed {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent-secondary);
}

/* Navbar/Header */
#header {
  background: rgba(13, 17, 23, 0.9);
  border-right: 1px solid #30363d;
}
.nav-menu a {
  color: #8b949e;
}
.nav-menu a:hover, .nav-menu .active {
  color: var(--accent-color);
}

/* Sectie Titels */
.section-title h2 {
  color: var(--text-main);
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #30363d;
}
#hero h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
#hero p {
  font-family: var(--font-mono);
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Cards / Resume Items */
.resume-item, .project-card {
  background: var(--bg-surface);
  border-left: 2px solid var(--accent-color);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}
.resume-item h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
}
.resume-item h5 {
  background: #30363d;
  padding: 5px 15px;
  display: inline-block;
  font-size: 0.9rem;
  border-radius: 4px;
  color: #fff;
}
.tech-stack {
  font-family: var(--font-mono);
  color: #8b949e;
  font-size: 0.85rem;
}

/* Skills */
.skills-list li {
  list-style: none;
  margin-bottom: 10px;
  font-family: var(--font-mono);
}
.skills-list i {
  color: var(--accent-color);
  margin-right: 10px;
}
/* ======= Navbar / Header (Strak & Horizontaal) ======= */
#header {
  background: rgba(13, 17, 23, 0.95);
  border-bottom: 1px solid #30363d;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.logo a {
  color: var(--text-main);
}

.logo a span {
  color: var(--accent-color);
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-family: var(--font-mono);
  color: #8b949e;
  font-size: 0.9rem;
  text-transform: lowercase;
  letter-spacing: 0;
}

.nav-menu a:hover, .nav-menu .active {
  color: var(--accent-color);
}

.nav-menu a::before {
  content: "~/";
  color: #8b949e;
  opacity: 0.5;
  margin-right: 2px;
}

.nav-menu a:hover::before, .nav-menu .active::before {
  color: var(--accent-color);
  opacity: 1;
}

/* Zorg dat de content niet onder de vaste header verdwijnt */
body {
  padding-top: 70px; 
}
/* ======= Uitklapbare C.V. Sectie ======= */
.other-experience {
  background: var(--bg-surface);
  border: 1px solid #30363d;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 30px;
}

.other-experience summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-family: var(--font-mono);
  color: #8b949e;
  font-weight: 600;
  list-style: none; /* Verwijdert standaard browser pijltje */
  transition: background 0.3s;
}

/* Verwijdert de default marker in Webkit browsers (Safari/Chrome) */
.other-experience summary::-webkit-details-marker {
  display: none;
}

.other-experience summary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
}

.other-experience[open] summary {
  border-bottom: 1px solid #30363d;
  color: var(--accent-color);
}

/* Roteer het chevron icoontje als hij open is */
.other-experience summary i {
  transition: transform 0.3s ease;
}
.other-experience[open] summary i {
  transform: rotate(180deg);
}

.details-content {
  padding: 20px;
  background: var(--bg-color);
}

.resume-item-small {
  margin-bottom: 15px;
  border-left: 2px solid #30363d;
  padding-left: 15px;
}

.resume-item-small:last-child {
  margin-bottom: 0;
}

.resume-item-small h4 {
  font-size: 1rem;
  color: #c9d1d9;
  margin-bottom: 5px;
}

.resume-item-small h5 {
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
  color: #8b949e;
  margin-bottom: 5px;
}

.resume-item-small p {
  font-size: 0.9rem;
  margin: 0;
  color: #8b949e;
}

/* ======= Mobile Responsiveness voor de Navigatie ======= */
@media (max-width: 768px) {
  #header {
    padding: 15px 20px;
  }
  
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    margin-bottom: 10px;
  }

  .nav-menu ul {
    flex-wrap: wrap; /* Laat de links naar de volgende regel springen als het niet past */
    width: 100%;
  }

  .nav-menu li {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 5px;
  }

  /* Compenseer voor de hogere navigatiebalk op mobiel zodat de tekst er niet onder valt */
  body {
    padding-top: 110px;
  }
}