/* Algemene instellingen */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;

    /* nieuwe regels voor achtergrond */
    background-image: url('images/achtergrond_limburg.png'); /* plaats hier je kaartbestand */
    background-size: cover;       /* vult de volledige pagina */
    background-position: 87% center; /* schuift de afbeelding 100px naar links */
    background-repeat: no-repeat; /* niet herhalen */

}

/* Header */
header {
    text-align: center;
    padding: 40px 20px 20px 20px;
    background-color: rgba(217, 234, 211, 0.85); /* lichtgroen met 50% zichtbaarheid */
}

#logo {
    max-width: 200px;
    height: auto;
}

h1 {
    margin: 20px 0 10px 0;
}

p {
    margin: 10px 0;
}

nav {
    margin-top: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #006600;
}

/* Sectie blokken */
.sectie-blok {
    background-color: rgba(217, 234, 211, 0.85); /* lichtgroen, 85% zichtbaar */
    margin: 40px auto;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Diensten categorie */
.dienst-categorie {
    background-color: rgba(232, 247, 235, 0.85); /* nog lichter groen, 85% zichtbaar */
    margin: 20px auto;
    padding: 25px;
    border-radius: 10px;
    max-width: 700px;
    text-align: left;
}

.dienst-categorie h3 {
    margin-top: 0;
}

.dienst-categorie ul {
    list-style-type: disc;
    margin-left: 20px;
}

.dienst-categorie p {
    margin-top: 15px;
    font-style: italic;
}

/* Contactformulier */
form input, form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #006600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #004d00;
}

/* Voetnoot */
footer {
    padding: 20px;
    background-color: #d9ead3;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}
