@font-face {
    font-family: Tahoma, sans-serif;
    font-weight: book;
    font-style: book;
}

body {
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #002445; /* Achtergrondkleur veranderd naar donker voor beter contrast */
    color: white; /* Standaard tekstkleur wit */
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0080A4;
    height: 30px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

nav ul li a:hover {
    color: #5BBFAC;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: white;
}

header {
    background-color: #002445;
    color: white;
    text-align: center;
    padding: 1em 0;
}

footer {
    background-color: #0080A4;
    color: white;
    text-align: center;
    padding: 1em 0;
    display: flex;
    justify-content: center;
}

header .logo {
    background-image: url('images/VerwaetermeulenMC-cntrd-PMS-wit.png'); /* vervang dit met het pad naar je logo */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 150px;
    margin-top: 50px;
}

header .logo-small {
    background-image: url('images/VerwaetermeulenMC-cntrd-PMS-wit.png'); /* vervang dit met het pad naar je logo */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 100px;
    margin-top: 50px;
}

header .logo-small-pos {
    background-image: url('images/VerwaetermeulenMC-cntrd-PMS.png'); /* vervang dit met het pad naar je logo */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 100px;
    background-color: white;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background-color: #002445; /* Achtergrondkleur veranderd naar donker voor beter contrast */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery {
    background-color: white; /* Witte achtergrond voor de galerijsectie */
    padding: 10px;    
    width: 100%;
}

.gallery-container {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    box-sizing: border-box;
    background-color: white;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    background-color: white;
}

.logo-item {
    background-image: url('images/VerwaetermeulenMC-cntrd-PMS.png'); /* vervang dit met het pad naar je logo */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 100px;
    width: 100%;
    background-color: white;
    margin-top: 30px;
}

section {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

h1, h2 {
    color: white;
    font-weight: normal;
    font-style: italic;
    text-align: center;
}

.gallery h2 {
    color: #002445; /* Zwarte tekstkleur voor de titel in de galerijsectie */
}

p, ul  {
    line-height: 1.6;
    color: white;
    text-align: justify;
}

ul {
    padding-left: 20px;
    text-align: left; /* Laat de tekst in lijsten links uitlijnen */
}

li {
    margin-bottom: 10px;
    text-align: justify;
}
blockquote {
    font-style: italic;
    font-size: 1.2em;
    color: white; /* Lichtere kleur voor quotes */
    padding: 10px 10px;
    margin: 20px 0;
    background-color: #002445;
    position: relative;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label, input, textarea {
    width: 100%;
    max-width: 500px;
    height: 30px;
}

textarea {
    height: 200px; /* Hoogte aangepast naar 200px */
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;

}

button, .center button {
    padding: 10px;
    margin-top: 15px;
    background-color: #5BBFAC;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 200px; /* Breedte aangepast naar 200px */
    font-size: 17px;
}

button:hover {
    background-color: #0080A4;
}

.center {
    text-align: center;
}

.center a {
    text-decoration: none;
}
@media (max-width: 600px) {
    .gallery-item {
        flex: 1 1 100%;
    }

    main {
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.5em;
    }

    p, blockquote, ul {
        font-size: 1em;
    }
}
