/* --- TITELS --- */
h1 {
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
}

/* --- ANIMATIE (zelfde als jouw thema) --- */
.slide-in {
  position: relative;
  animation: slidein 1.5s ease-out forwards;
}

@keyframes slidein {
  from {
    left: -200px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

/* --- VAKJES --- */
.vakje {
  border: 5px solid rgb(0, 98, 65);
  padding: 40px;
  width: 70%;
  font-family: Arial, Helvetica, sans-serif;
  margin: 20px auto;
  font-size: 20px;
  background-color: rgb(0, 98, 65);
  color: white;
  text-align: center;
  border-radius: 50px;
}

.vakje2 {
    color: white;
    padding: 30px;
    border: 5px solid rgb(0, 98, 65);
    width: 70%;
    margin: 20px auto;
    font-size: 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(0, 98, 65);
    border-radius: 40px;
}

/* --- NAVIGATIE (jouw thema exact gekopieerd) --- */
nav {
    height: 70px;
    background-color: white;
    box-shadow: 0 6px 5px -2px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
}

#logo {
    height: 50px;
    margin-right: 10px;
}

.nav-buttons {
    background-color: white;
    color: #006241;
    cursor: pointer;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform .15s ease, background-color .15s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nav-buttons:hover {
    background-color: #e7f5ec;
    transform: translateY(-3px);
}

.nav-buttons1{
    background-color: white;
    color: black;
    cursor:pointer;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-style: none;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.nav-buttons1:hover{
    background-color: rgb(225, 225, 225);
}

/* --- DROPDOWN --- */
.dropdown-items{
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 110px;
    width: auto;
    border-radius: 5px;
}

.dropdown-items a{
    color: rgb(0, 98, 65);
    text-decoration: none;
    display: block;
    font-size: 17px;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    text-align: center;
}

.dropdown-items a:hover{
    background-color: rgb(225, 225, 225);
}

.dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown:hover .dropdown-items{
    display: block;
    background-color: white;
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.1);
    border: 2px solid rgba(0, 0, 0, 0.15);
}

/* --- FOOTER --- */
footer {
    background-color: rgb(0, 98, 65);
    color: white;
    text-align: center;
    padding: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
}
