
body {
    font-family: Arial, sans-serif;
    background-color: #f5f3e7;
    color: #1f3c2d;
    margin: 0;
    padding: 0;
}
header {
    background-color: #e6e2d8;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
}
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
nav a {
    margin: 10px;
    color: #1f3c2d;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}
p {
    font-size: 1.2em;
}
.image-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}
.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.contact-form button {
    
    color: white;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    
}
footer {
    background-color: #e6e2d8;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}


/* iOS optimalisaties */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', 'Arial', sans-serif;
}

/* Zorg voor duidelijk contrast op koppen */
h1, h2, h3, h4, h5, h6 {
    color: #1f3d2b !important; /* Donkergroen als voorbeeld */
    font-weight: 700;
}


p, span, small, .description, .text-muted {
    color: #1f3c2d !important;
}



/* Toegevoegd voor leesbaarheid op iPhone */
p, span, small, .description {
    color: #2e4e41;
}



/* FORCEREN kleur kleine tekst overal */
p, span, small, .description {
    color: #2e4e41 !important;
}



/* Forceer vaste kleuren en voorkom automatische dark mode-styling */
@media (prefers-color-scheme: dark) {
    body, p, span, small, .description {
        color: #2e4e41 !important;
        
    }
}


/* Volledige fix voor dark mode via custom div */
.text-blok {
    color: #2e4e41 !important;
    
}
