/* Algemene stijlen */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2 {
  font-weight: normal;
  text-align: center;
}

ul {
  list-style: none;
}

a {
  color: #0074D9;
  text-decoration: none;
}

/* Navigatiebalk */
header {
  background-color: #333;
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  padding: 0 50px;
}

header a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: #800000;
}

header a:hover {
  background-color: #c0392b;
  color: white;
}


/* Home Page */
.home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.home-page img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

/* Over Mij Pagina */
.over-mij {
  max-width: 800px;
  margin: 50px auto;
  text-align: justify;
  line-height: 1.5;
  padding: 0 20px;
}

/* Alle Cursussen */
.alle-cursussen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0;
}

.alle-cursussen h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.alle-cursussen ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.alle-cursussen li {
  background-color: #f2f2f2;
  width: calc(50% - 20px);
  height: 150px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-align: center;
}

/* Aside op Alle Cursussen Pagina */
.alle-cursussen aside {
  width: 200px;
  margin-left: 50px;
}

.alle-cursussen aside ul {
  margin: 0;
  padding: 0;
}

.alle-cursussen aside li {
  margin: 10px 0;
}

.alle-cursussen aside h3 {
  margin-bottom: 10px;
}
/* Alle Cursussen Pagina */
.alle-cursussen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 50px 0;
}

.alle-cursussen h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.cursus-container {
  background-color: #f2f2f2;
  width: 300px;
  height: 300px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.cursus-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.cursus-container h3 {
  font-size: 1.5rem;
  margin: 0;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 50px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #514747;
}
form label,
form input,
form textarea {
  display: block;
  margin-bottom: 10px;
  width: 100%;
	
}
input[type="text"], input[type="email"], textarea {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
}
.contact-form {
  margin: 50px auto;
  max-width: 800px;
	text-align: center
		
}
.contact-info{
	text-align: center
}

