body {
  margin: 0;
  background: #f7f8fb;           
  color: #111827;
  line-height: 1.6;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}


header, main, footer, section, article, aside, nav {
  padding: 1rem;
}

/* Header */
.site-header {
  background: #ffffff;              
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: orange;                  
  font-size: 1.3rem;
  margin: 0;
}

/* Navigatie */
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.nav-list a {
  text-decoration: none;
  color: #6b7280;                   
  font-weight: 600;
}
.nav-list a:hover { color: orange; }


main {
  max-width: 1000px;
  margin: 2rem auto;
  background: #ffffff;             
  border-radius: 12px;              
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
}


section.intro {
  background: linear-gradient(180deg, #ffffff, #f9fafc);
  border-radius: 12px 12px 0 0;
}

/* Projecten */
section.projecten {
  border-top: 1px solid #eee;
}

article {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/* Knoppen */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: orange;       
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}


aside.profiel {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 0 0 12px 12px;
  text-align: center;
}

aside.profiel img {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 0.5rem;
}


.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;                   
  padding: 0.8rem;
}
