
body {
  background-color: #582f0e;
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  color: #b0bcc7;
}

h1, h2, h3 {
  color: #b0bcc7;
  margin: 1.5rem 0 0.5rem 0;
}

p {
  color: #b0bcc7;
  line-height: 1.6;
  max-width: 600px;
  margin: 0.5rem auto;
}


header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1rem 0;
  border-bottom: 2px solid #b0bcc7;
}

.logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 120px;
  height: auto;
}

header h1 {
  margin-top: 1rem;
  margin-bottom: -2rem;
  font-size: 2rem;
  color: #b0bcc7;
  text-align: center;
}

.navigatie {
  margin-top: 4rem;
  text-align: center;
}

.navigatie ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin-top: 0.5rem;
}

.navigatie a {
  color: #b0bcc7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navigatie a:hover {
  color: #ccc;
}

.navigatie a.active {
  color: #f8e3c5;
}


main {
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
}

section {
  border-radius: 50px;
  padding: 20px;
  margin-bottom: 35px;
}

.Schermafbeelding { 
    border: 3px solid #b0bcc7; 
    border-radius: 60px; 
    padding: 10px; 
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  color: #b0bcc7;
  text-align: center;
  font-size: 1.1rem;
}

.contact-info li {
  margin: 0.5rem 0;
}

/* ---------- Social media ---------- */
.social-links {
  margin-top: 2rem;
  text-align: center;
}

.social-links h3 {
  color: #b0bcc7;
  margin-bottom: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
  background-color: #582f0e;
  color: white;
  border: 2px solid white;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.05);
}

.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.facebook:hover {
  background-color: #1877f2;
}

.social-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.graduaat-link{
  color: #b0bcc7;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #b0bcc7;
}
.cv-link {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  background-color: #b0bcc7;
  color: #582f0e;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f8e3c5;
  color: #3b1e08;
}

/* ===== Contactformulier Styling ===== */

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #2e7030;
}

/* Responsief */
@media (max-width: 650px) {
    .contact-form {
        padding: 1rem;
    }
}


footer {
  background-color: #3b1e08;
  color: #b0bcc7;
  padding: 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  border-radius: 50px;
}


@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .navigatie ul {
    flex-direction: column;
  }

  .logo {
    position: static;
    margin-bottom: 0.5rem;
  }
}
