/* Algemene instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2c3e50; /* Donkerblauw voor de header */
    padding: 20px 0; /* Meer ruimte bovenin voor het logo */
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo */
#logo img {
    width: 350px; /* Pas de grootte van je logo aan naar wens */
    height: auto;
    margin-bottom: 0px; /* Ruimte onder het logo voor de navigatie */
	margin-left: -35px; /* Verschuif het logo 20px naar links */
    transition: transform 0.3s ease;
}

#logo img:hover {
    transform: scale(1.1); /* Vergroting van het logo bij hover */
}

/* Navigatie */
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

nav ul li {
    margin-right: 30px;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1em;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #1abc9c; /* Frisse groene kleur voor hover-effecten */
    transform: scale(1.1); /* Knoppen en links vergroten bij hover */
}

/* Main content */
main {
    padding: 50px 20px;
}

/* Section styling */
#intro {
    background-color: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

h1 {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    line-height: 1.8;
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    #logo img {
        width: 120px; /* Kleinere logo's voor mobiele apparaten */
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin-bottom: 15px;
    }

    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.1em;
    }
}

/* Slideshow container */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
    overflow: hidden; /* Zorg ervoor dat alleen de afbeeldingen in de container zichtbaar zijn */
}

/* Verberg de afbeeldingen standaard */
.mySlides {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Stilering voor de afbeelding */
.mySlides img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Tekst boven de afbeelding */
.text {
    text-align: center; /* Zorg ervoor dat de tekst gecentreerd is */
    color: white;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparante achtergrond */
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px; /* Plaats wat ruimte tussen de tekst en de afbeelding */
}

/* Foto's tekst */
#photo-gallery h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* Algemeen formulierstijl */
form {
    max-width: 600px; /* Max breedte van het formulier */
    margin: auto; /* Centreer het formulier horizontaal */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container voor de formuliervelden */
.form-container {
    display: flex;
    flex-direction: column; /* Dit zorgt ervoor dat de velden onder elkaar staan */
    gap: 15px; /* Voeg ruimte tussen de velden */
}

/* Labelstijl */
label {
    font-size: 1.2em;
    color: #333;
}

/* Invoervelden */
input, textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

/* Verzendknop */
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover-effect voor de knop */
button:hover {
    background-color: #2980b9;
}

/* Koptekst */
#contact-form h1 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.language-switch a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.language-switch a:hover {
    background: #ddd;
}

/* Taalkeuze sectie */
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-switch a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.language-switch a:hover {
    color: #007BFF;
}
