/* Algemene Stijlen */
/* Styling voor */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /*margin: 0;
    padding: 0; deze regels zijn origineel, maar aangepast voor contactformulier*/
	margin: 10px;
	padding: 4px;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #004d00; /* Donkergroen voor de header */
    color: white;
    padding: 5px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;  /* Horizontale navigatie */
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 1em;
    max-width: 1920px;  /* Maximale breedte voor grotere schermen */
    margin: auto;
}

section {
    margin: 10px 0;
    padding: 20px;
    background: #ffffff; /* Witte achtergrond voor secties */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tours {
    display: flex;
    flex-direction: column; /* Flexbox voor responsieve opmaak */
}

.tours article {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #004d00; /* Groene rand voor tochten */
    border-radius: 5px;
    background: #e8f5e9;
}

button {
    background-color: #004d00;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #003300; /* Donkerder groen bij hover */
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input,
form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #004d00; /* Donkergroen voor footer */
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
		
/* codes voor contactformulier */
form {
	background: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
	display: block;
	margin: 10px 0 5px;
}
input, textarea {
	width: 98%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}