  
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");


        body {
            margin: 0;
            font-family: "Raleway";
        
.header {
    height: 15vh; /* 20% van de viewport-hoogte */
    background-color: white;
    display: flex;
    justify-content: space-between; /* Logo en menu aan tegenovergestelde kanten */
    align-items: center; /* Plaatst de items aan de onderkant van de header */
    padding: 20px;
	padding-left: 10%;
	padding-right: 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 100%;
    align-self: flex-start; /* Zorgt ervoor dat het logo bovenin blijft */
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-left: 20px;
	margin-bottom: 10px;
}

.menu a {
    text-decoration: none;
    margin-right: 10px;
    font-weight: bold;
    color: #979db0;
    font-size: 22px;
}
	

.menu a.active {
    background-color: #f5894f;
    color: white; /* Optioneel: verander de tekstkleur als de achtergrond oranje is */
    padding: 5px 15px;
    border-radius: 20px; /* Optioneel: geef de achtergrond afgeronde hoeken */
}
.h1 {
    font-size: 98px; /* Pas dit aan naar de gewenste grootte */
    font-weight: 700; /* Optioneel: zet vetgedrukt als je dat wilt */
	padding-bottom: 50px;
}
  .main2 {
            position: relative;
          background-size: cover;
            background-position: center;
			background-repeat: repeat; 
        }
        .overlay2 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
			
			
            background-color: rgba(138, 204, 166, 0.7);  /* Transparante groene overlay */
            display: flex;

        }
	
.main {
    position: relative;
    min-height: 85vh; /* Minimale hoogte, zodat de content altijd zichtbaar blijft */
    background-image: url("Achtergrond-2-5335x3556.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Verberg overloop */
}

.overlay {
    background-color: rgba(138, 204, 166, 0.7);  /* Transparante groene overlay */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
	min-height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    color: white;
    font-size: 2em;
    width: 100%;
    max-width: 1200px; /* Beperkt de breedte van de tekst */
    padding: 16px;
    box-sizing: border-box;
    word-wrap: break-word; /* Zorg ervoor dat lange woorden breken en in de container blijven */
}

    .overlay-text2 {
    color: black;
    font-size: 2em;
    text-align: left; /* Tekst links uitlijnen */
    padding: 16px;
    padding-left: 20%; /* Begin tekst op 20% van links */
	padding-right: 20%;
    #background-color: rgba(0, 0, 0, 0.5); /* Achtergrond om tekst leesbaar te maken */
    width: 100%; /* Brede achtergrond */
}


.form-wrapper {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.form-title {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: right;
}

.form-actions button {
    background-color: #f5894f;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-actions button:hover {
    background-color: #e67e22;
}

.form-actions button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


/* Tablets en kleinere schermen */
@media (max-width: 768px) {
    .overlay-text {
        font-size: 1.5em;
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Mobiele telefoons */
@media (max-width: 480px) {
    .main {
        height: auto; /* Pas de hoogte aan voor mobiele schermen */
        min-height: 80vh; /* Zorg ervoor dat de sectie ten minste 60% van de viewport bedekt */
    }
    .overlay-text {
        font-size: 1.2em;
        padding-left: 3%;
        padding-right: 3%;
    }
}