/* Algemene opmaak */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: hsla(34, 69%, 49%, 0.86);
  color: hsl(30, 63%, 20%);
  text-align: left;
}

/* Navigatiebalk */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  background-color: #b56906;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: rgb(56, 41, 8);
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hoofdgedeelte */
main {
  padding: 40px;
  text-align: left;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #996c0c;
  color: rgb(56, 41, 8);
  margin-top: 50px;

}
/* Algemene opmaak */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color:hsla(34, 69%, 49%, 0.86);
  color:#543413;
}

/* Navigatiebalk */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  background-color:#b56906;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color:rgb(56, 41, 8) ;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Titel */
h1 {
  text-align: left;
  margin-top: 30px;
  color: hsl(30, 63%, 20%);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #976c2b;
  color:rgb(56, 41, 8) ;
  margin-top: 50px;
}
/* === CONTACT PAGINA - WIREFRAME STIJL === */
.content {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

h1 {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

.contact-links {
  margin: 20px 0;
}

.link-item {
  margin-bottom: 10px;
}

.link-item a {
  color: #000;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #000;
  padding: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  border: 1px solid #000;
  background: none;
  padding: 8px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background: #ddd;
}
.link-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: underline;
}

.icon {
  width: 20px;
  height: 20px;
  color: #000;
}
.profile-pic {
  display: block;        /* Zorgt dat hij mooi onder de titel komt */
  margin: 20px auto;     /* Centreert de foto */
  width: 200px;          /* Breedte van de foto */
  height: 200px;         /* Hoogte */
  object-fit: cover;     /* Snijdt de foto mooi bij als hij niet vierkant is */
  border-radius: 50%;    /* Maakt de foto rond */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Schaduw voor diepte */
}
.project-link-img {
  display: block;
  margin: 40px auto;
  width: 400px;           /* pas aan naar wat goed past bij jouw layout */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-link-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  cursor: pointer;
}
/* Werkplekleren - Coming Soon */
.coming-soon-section {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color:hsla(34, 69%, 49%, 0.86);
  text-align: center;
}
/* Werkplekleren sectie */
.werkplekleren {
  text-align: center;
  padding: 150px 20px;
}

.werkplekleren h1 {
  font-size: 3.5rem;
  color: var(--accent-color, #00bfff); /* gebruikt dezelfde kleur als andere pagina's */
  margin-bottom: 15px;
  text-transform: uppercase;
}

.werkplekleren p {
  font-size: 1.2rem;
  color: #444;
}






