:root {
  --lime-green: #91c90d;
  --dark-grey: #333;
  --light-grey: #e6f4e8;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Dosis', sans-serif;
  background-color: var(--light-grey);
  color: var(--dark-grey);
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: white;
  padding: 1rem 0;
  text-align: center;
  flex-shrink: 0;
}

#logo {
  max-width: 250px;
  width: 80%;
  height: auto;
}

nav {
  background: var(--lime-green);
  padding: 1.2rem 0;
  flex-shrink: 0;
  z-index: 10;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li {
  margin: 0 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: color 0.3s;
}

nav a:hover {
  color: black;
}

#content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background-color: var(--light-grey);
  box-sizing: border-box;
}

#pdf-image {
  width: 40vw;               /* 40% van de breedte op desktop */
  height: auto;              /* hoogte in verhouding met breedte */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0px;        /* vierkante hoeken */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.cta-link {
  background-color: white;
  color: var(--lime-green);
  padding: 0.3rem 0.8rem;
  border: 1px solid black;
  border-radius: 0px;        /* vierkante hoeken */
  font-weight: 700;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-link:hover {
  background-color: black;
  color: white;
  border-color: var(--lime-green);
  box-shadow: 0 0 10px var(--lime-green);
}

footer {
  background: var(--lime-green);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Fade-in animatie */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInAnimation 1s ease-out forwards;
}

@keyframes fadeInAnimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsief design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin: 0.5rem 0;
  }

  nav a {
    font-size: 1.2rem;
  }

  #pdf-image {
    width: 100vw;     /* Volledige breedte op mobiel */
  }
}

.inschrijvings-form {
  background: white;
  padding: 2rem;
  border-radius: 0px; /* vierkante hoeken */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

.inschrijvings-form h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: var(--dark-grey);
  text-align: center;
  margin-bottom: 1.5rem;
}

.inschrijvings-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.inschrijvings-form input,
.inschrijvings-form select {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 0px; /* vierkante hoeken */
  font-size: 1rem;
  box-sizing: border-box;
}

.inschrijvings-form button.cta-link {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .inschrijvings-form {
    padding: 1rem;
  }
}

