body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Banner */
.banner {
  background: linear-gradient(90deg, #0b6084, #24aeee 70%);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.banner h1 {
  margin: 0;
  font-size: 2.5rem;
}

/* Intro sectie */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  background: #fff;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 1rem;
  border: 4px solid #330b98;
}

.intro-text {
  max-width: 600px;
  margin: 1rem;
}

.intro-text h2 {
  color: #059ea6;
}

/* Projecten */
.projects {
  padding: 3rem 1rem;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card h3 {
  padding: 1rem;
  background: #033a7d;
  color: white;
  margin: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #08e5e5;
  color: white;
  margin-top: 2rem;
}
