/* Algemene stijlen */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body {
    overflow-x: hidden; /* Voorkomt horizontale scroll */
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Zorgt ervoor dat de pagina altijd de hele viewport vult */
}

.content {
    flex: 1; /* Zorgt ervoor dat de inhoud de resterende ruimte opvult */
}

/* Header stijlen */
header {
    background-color: #ffc125;
    color: black;
    padding: 8px 10px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigatie stijlen */
nav {
    display: flex;
    gap: 30px;
    margin-right: 60px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

nav ul li {
    background: white;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: block;
    transition: transform 0.2s ease-in-out;
}

nav ul li:hover,
nav ul li:focus,
nav ul li.active {
    background-color: #ddd;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a.active {
    color: black;
    transform: scale(1.1);
}

/* Main content */
main {
    padding: 20px;
    text-align: center;
    background-color: #DABF74;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Google Maps kaart */
.map-container {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact sectie */
.contact-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-info {
    width: 40%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.contact-form {
    width: 55%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    width: 100%;
    text-align: left;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
}

.contact-form button {
    background-color: #ffc125;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.contact-form button:hover {
    background-color: #e0a800;
    transform: scale(1.1);
}

/* Footer blijft onderaan de pagina */
footer {
    background-color: #ffc125;
    color: black;
    text-align: left;
    padding: 20px;
    width: 100%;
    height: auto;
}

/* Flexbox container voor de footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stijl voor de twee secties */
.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Footer bottom tekst */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* Standaard reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Extra stijlen voor contact form */
.contact-form h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

/* Nieuwe stijlen voor het bestand kiezen boven de verzendknop */
.contact-form div {
    margin-bottom: 10px;
}

.contact-form input[type="file"] {
    margin-bottom: 10px;
}

.contact-form .file-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Stijl voor het logo */
.logo {
    height: 120px; 
    display: block;
    margin: 0 auto; 
    cursor: pointer;
}

h1 a {
    text-decoration: none; /* Verwijdert de onderstreping */
    color: black; /* Zorgt ervoor dat de tekst zwart is */
}
h1 a:visited {
    color: black; /* Zorgt ervoor dat de link ook zwart blijft na een bezoek */
}
