
/* Contact */
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}
body{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(achtergrond.jpg) no-repeat top fixed; 
    background-size: cover;
    color: #fff;
}
.contact{
    max-width: 960px;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1,5rem;
    background: #363953;
    box-shadow: 0 0 1rem hsla(0 0 0 / 16%);
    border-radius: 0.5rem;
    overflow: hidden;
}
.formulier{
    padding: 20px;
}
.formulier h3{
    font-size:1.3rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}
.contact-form{
    display: grid;
    row-gap: 1rem;
}
.contact-form ::placeholder {
    color: white;
    font-size: small;
    font-stretch: wider;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #394f5f;
    padding: 10px;
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    border-radius: 0.4rem;
}
.contact-form textarea {
    resize: none;
    height: 200px;
}
.contact-form .send-button {
    border: none;
    outline: none;
    background: #58687a;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}
.contact-form .text {
	color: #ffffff;
}
.contact-form .send-button:hover {
    background: #2d76c3;
    transition: 0.3s all linear;
}
.maps iframe {
    width:  100%;
    height:  100%;
}  

/* Navigatie bar */
ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 10px 10px 10px 10px;
    font-size: 1.5rem;
    color: #ffffff
}
nav {
    height: 160px;
}
ul li .logo {
    position: absolute;
    left: 2vw;
    transition: transform .5s;
}
.logo img:hover{
    transform: scale(1.15);
}
ul li a {
    color: white;
    text-decoration: none;
    font-weight: 100;
}
ul .navtekst {
    display: flex;
    gap: 50px;
    padding-top: 0.6%;
}
ul li a:hover, ul li a:active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

/* Responsive  */
@media (max-width: 964px) {
    .contact {
        margin: 0 auto;
        gap: 1rem;
        width: 90%; 
    }
    selection {
        margin-top: 60px;
    }
    ul li .logo {
        position: unset;
    }
    nav ul {
        flex-direction: column;
    }
}
@media (max-width: 700px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .maps {
        height: 400px;
    }
    selection {
        padding-bottom: 80px;
        margin-top: 60px;
    }
    ul li .logo {
        position: unset;
    }
    nav ul {
        flex-direction: column;
    }
} 