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

body {
    background-color: darkred;
    overflow: hidden;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 94.5vh;
    gap: 0px 0px;
    grid-template-areas:
        "image-container navbar"
        "image-container contact-form";
}


.navbar {
    grid-area: navbar;
    display: flex;
    flex-direction: row-reverse;
    padding-top: 2vh;
    padding-right: 3vh;
}

.image-container {
    grid-area: image-container;
    display: flex;
    background-image: url(/img/stunning-business-center-5heihiagg0mfvkqp.jpg);

    flex-direction: column;

    color: white;
    justify-content: space-around;
    align-items: center;
}

.contact-form {
    grid-area: contact-form;
    padding: 20px 20px;
}

/* .formulier1 {
    grid-area: formulier1;
} */

main {
    width: 50%;
    margin: 0 auto;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid black;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
}

input[type="submit"] {
    background-color: red;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: red;
    color: black;
}

.docx23 .input-icons i {
    position: absolute;
}

.icon {
    padding-top: 18px;
    color: black;
    min-width: 50px;
    text-align: center;
}

.input-field {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.email {
    color: white;
}

.Iname {
    color: white;
}

h2 {
    display: flex;
    flex-direction: column;
    color: darkred;
    align-items: center;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    position: relative;
    left: 17vw;
    width: 200px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;

}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
    text-decoration: none;
}

a:hover {
    color: black;
}

a:active {
    color: white;
    text-decoration: underline;
}

a {
    font-size: 18px;
    padding-left: 55px;
}

img {
    width: 100vh;
    height: 90vh;
}

.nav {
    display: none;
    position: relative;
    background-color: #333;
    padding: 10px;

  }
  
  .menu {
    display: none; /* Verberg menu standaard */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #444;
    z-index: 1000;
  }
  
  .menu.show {
    display: flex; /* Toon menu bij "show"-klasse */
  }
  
  .menu a {
    padding: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
  }
  
  .menu a:hover {
    background-color: #555;
  }
  
  .menu-toggle {
    display: block; /* Toon hamburger op alle schermen */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  

/* .Adres {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    position: relative;
    bottom: 85vh;
    color: white;
} */

/* .talk {
    position: relative;
    bottom: 50vh;
} */

form {
    color: white;
    position: relative;
    top: 5vw;
    box-shadow: 5px 5px 5px 10px rgba(0, 0, 0, 0.5);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
}
.nav{
    display: none;
}

@media screen and (max-width:450px) {

    html,
    body {
        /* overflow: hidden;//*
      /* Schakel alle scrollfunctionaliteit uit */
        margin: 0;
        /* Verwijder ongewenste marges */
        width: 100%;
        height: 120%;
        overflow-y: scroll;
        /* Of gebruik 'auto' voor alleen scrollen als dat nodig is */
        overflow-x: hidden;
        /* Dit voorkomt horizontaal scrollen */
        /* Zorg dat de breedte gelijk is aan de viewport */

    }


   

    .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-auto-flow: row;

    }
    .nav{
        grid-area: 1 / 3 / 2 / 8;
        width: 45px;
        height: 50px;
        position: absolute;
        left: 0%;
        width: 100%;
        display: flex
;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .image-container {
        grid-area: 1 / 1 / 8 / 4;
        font-size: 2.7vw;
        width: 100vw;
        height: 120%;
    }

    .navbar {
        grid-area: 1 / 1 / 2 / 8;
        position: relative;
        right: 30vw;
        display: none;

    }

    .contact-form {
        grid-area: 4 / 1 / 8 / 8;
        display: block;
       width: 400px;
       margin-left: 1.5vh;
    }

    a {
        
        display: block;
        font-size: 3.5vw;
        text-align: center;
    }

    h2 {
        display: block;
        font-size: 5vw;
        
    }

    .Adres {
        position: relative;
        left: 3vw;
        bottom: 25vw;
    }

    .talk {
        position: relative;
        left: 0vw;
        bottom:89vw;
    }

    .socials {
        position: relative;
        left: 8vw;
        bottom: 150vw;
    }

    p {
        position: relative;
        bottom: 80vw;
    }
    input{

        
    }
    .menu {
        display: none; /* Verberg menu standaard */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 10px 0;
        z-index: 1000;
    }
    
    .menu.show {
        display: flex; /* Toon menu als "show" aanwezig is */
        flex-direction: column-reverse;
        height: 150px;
        width: 100%;
        
    }
    
    .menu a {
        text-align: center;
        padding: 10px 0;
        width: 100%;
        font-size: 14px;
        color: white;
        text-decoration: none;
    }
    
    .menu a:hover {
        background-color: #444;
    }
    
    .menu-toggle {
        display: block; /* Toon de hamburgerknop */
        cursor: pointer;
    }

    .nav{
        
    }
}

@media screen and (min-width:1024px) {

    html,
    body {
        /* overflow: hidden;//*
      /* Schakel alle scrollfunctionaliteit uit */
        margin: 0;
        /* Verwijder ongewenste marges */
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        /* Of gebruik 'auto' voor alleen scrollen als dat nodig is */
        overflow-x: hidden;
        /* Dit voorkomt horizontaal scrollen */
        /* Zorg dat de breedte gelijk is aan de viewport */

    }


.image-container{
    height: 100%;
}
.nav{
    display: flex;
}
    

}