html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	font-family: Arial;
}

.box-1 {
	width: 100%;
	background-image: linear-gradient(#205533, #5d906f);
}

.box-2 {
	margin-left: 20%;
	margin-right: 20%;
}

.box-3 {
	margin-left: 20%;
	margin-right: 20%;
}

.box-4 {
	background-image: linear-gradient(#5d906f, #205533);
}

/* Zorg dat de container 100% van het scherm vult */
.iframe-container {
    display: flex;
    gap: 20px;
    justify-content: center; /* Zorgt voor centrering van de items */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; /* Centreert de container horizontaal */
    padding: 20px;
    box-sizing: border-box;
}

/* Zorg dat de iframe altijd past binnen het scherm */
.reviews {
    width: 100%; /* Volledige breedte van de container */
    height: 100%; /* Volledige hoogte van de container */
    border: none;
}

/* Banner */
.banner {
	background-color: #205533;
}
.banner img {
    width: 100%;
    height: auto;
}

/* Introductie Sectie */
.intro {
    padding: 20px;
    text-align: left;
    margin-left: 20%;
    margin-right: 20%;
}

.intro p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #F0F0F0;
    text-align: justify;
    margin-bottom: 25px;
    position: relative;
    clear: both; /* Voorkomt overlap met de afbeelding hierboven */
}

/* Introductie-afbeeldingen in het tekstvak */
.intro-img {
    width: 30%;
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.intro-img:hover {
    transform: scale(1.05); /* Vergroot de afbeelding iets */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Versterkt de schaduw */
}

.intro-img.right {
    float: right; /* Zorgt ervoor dat de afbeelding rechts naast de tekst staat */
    margin-left: 15px;
}

.intro-img.left {
    float: left; /* Zorgt ervoor dat de afbeelding links naast de tekst staat */
    margin-right: 15px;
}

.intro::after {
    content: "";
    display: table;
    clear: both;
}

/* Openingstijden en Klok */
.openingstijden {
    padding: 20px;
    text-align: center;
}

.klok {
    font-size: 1.5em;
    margin-top: 10px;
    font-weight: bold;
    color: #2d5238;
}

.klok img {
	height: 10%;
	width: 10%;
}

.openingstijden .tijden {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 10px;
}

.openingstijden .tijd {
    width: 100px;
    text-align: center;
    margin: 5px 0;
    font-size: 1em;
    padding: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
    border-radius: 8px;
}

.openingstijden .tijd:hover {
    transform: translateY(-3px); /* Subtiele omhoog beweging */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Licht schaduw effect */
    color: #4e79a7; /* Verandert de tekstkleur subtiel bij hover */
}


.openingstijden .tijden .tijd {
    width: 100px;
    text-align: center;
    margin: 5px 0;
    font-size: 1em;
}

.openingstijden .tijden .tijd h3 {
	color: #4e79a7;
}

/* Contactformulier */
.contact-form {
    padding: 20px;
    text-align: center;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea, .contact-form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    grid-column: 1 / -1;
}

.contact-form h2 {
    color: #4e79a7
}

.contact-form button {
    background-color: #2d5238;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    grid-column: 1 / -1;
}

.contact-form button:hover {
    background-color: #3a6b4b;
}


/* Google Maps */
.maps {
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
	text-align: center;
	color: #fefefe;
}

h3 {
	font-size: 1em;
	margin-bottom: 10px;
	text-align: center;
	color: #fefefe;
	transition: transform 0.5s ease, text-shadow 0.5s ease, color 0.5s ease;
}

h3:hover {
    transform: translateZ(5px) scale(1.05); /* Zorgt ervoor dat de tekst naar voren komt */
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Schaduw achter de tekst */
}

.maps iframe {
    width: 100%;
    height: 300px;
    border: 1px solid #333;
    border-radius: 8px;
}

::-webkit-scrollbar {
  display: none;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 9999;
    text-align: center;
    pointer-events: none;
}

.notification {
    padding: 15px;
    margin-top: 10px;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    animation: fadeOut 5s forwards;
}

.success {
    background-color: #28a745; /* Groen */
}

.error {
    background-color: #dc3545; /* Rood */
}

@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.show {
    display: block;
}


@media screen and (max-width: 992px) {
    .intro {
        margin-left: 0;
        margin-right: 0;
    }

    .intro-img {
        float: none;
        width: 30%;
        margin: 15px auto;
        display: block;
    }
	
	.contact-form form {
        grid-template-columns: 1fr; /* Zet alle elementen in één kolom */
    }

    .contact-form textarea,
    .contact-form .captcha,
    .contact-form button {
        grid-column: 1 / -1; /* Blijft volledig breedte innemen */
    }
	
    .klok img{
        width: 40%;
    }
}
