* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}


.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 5%;
  background-color: #6a1b9a;
}

.navbar-logo img {
  max-height: 40px;
}


.navbar-options {
  justify-self: center;
  display: flex;
  gap: 24px;
}

.navbar-options a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar-options a:hover {
  color: #ffd600;
}

.main-top {
  background-color: #ffd600;
  color: #6a1b9a;
  text-align: center;
  padding: 96px 32px;
}

.main-top h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.main-top p {
  font-size: 19px;
  margin-bottom: 32px;
}

.signup {
  background-color: #6a1b9a;
  color: white;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.signup:hover {
  background-color: #4a148c;
}

section {
  padding: 64px 10%;
}

section h1 {
  font-size: 32px;
  color: #6a1b9a;
  margin-bottom: 24px;
  text-align: center;
}

.vakken-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.vak {
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vak:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.vak h2 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #6a1b9a;
}

.vak p {
  font-size: 15px;
  color: #444;
}

.rooster-container {
  text-align: center;
}

.rooster-container img {
  max-width: 100%;
  max-height: 500px;
  display: block;
  margin: 32px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.docenten-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  justify-items: center;
}

.docent {
  text-align: center;
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 250px;
  box-sizing: border-box; 
  margin: 0 auto; /
}

.docent:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.docent h2 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #6a1b9a;
}

.docent p {
  font-size: 15px;
  color: #444;
}

footer {
  background-color: #6a1b9a;
  color: white;
  text-align: center;
  padding: 16px;
  margin-top: 32px;
}

.main-traject img {
  max-width: 100%;
  max-height: 400px;
  display: block;
  margin: 32px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.main-traject p {
  max-width: 700px;
  margin: 0 auto 32px auto;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
}

.main-vakken {
  background-color: #ffd600;
}

.main-docenten {
  background-color: #ffd600;
}

@media (max-width: 768px) {
  .navbar-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
