*{
  margin: 0;
  letter-spacing: 0.08em;
}

/* Color en Fontinstellingen */
body{
  background-color: #f6f4f0;
  color: #1A1A1A;
  font-family: 'Open Sans', sans-serif;
	font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #A57C00;
}

.slogan,
blockquote{
  width: 90%;
  padding: 0 5% 0 5%;
  font-family: 'Lato', sans-serif;
  font-style: italic;
}

header{
  width: 94%;
  padding: 30px 3% 30px 3%;
  text-align: center;
  background: linear-gradient(to bottom right, #1a1f2b, #0a3c39);
  /* padding: 5rem 2rem; */
}

header h1{
  /* width: 94%;
  padding: 0 3% 0 3%; */
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 0 3px 4px rgba(0,0,0,0.9);
}

header p{
  font-size: 1.2em;
  color: #A57C00;
  margin-bottom: 30px;
}

p{
  font-size: 1.2em;
  color: #2F5E4E;
  padding: 0 1% 0 1%;
  margin-bottom: 30px;
}

.cta-button{
  background-color: #D4AF37;
  color: #000000;
  text-decoration: none;
  padding: 15px 25px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* .cta-button:hover{
  background-color: #A57C00;
} */




a{
  color: #2F5E4E;
  text-decoration: underline;
}

/* .success-message{
  background-color: #388E3C;
  color: #FFFFFF;
  padding: 15px;
  margin: 30px auto;
  max-width: 500px;
  border-radius: 5px;
  font-weight: bold;
} */

/* Einde Color en Fontinstellingen */
#container{
  width: 100%;
}

/*begin nav*/
nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

/* Beginstaat */
#nav-menu{
  display: flex;
  gap: 20px;
  list-style: none;
}

li a{
  text-decoration: none;
}

#hamburger{
  display: none;
  font-size: 32px;
  cursor: pointer;
}
/*Einde nav*/

/* Begin header */
#logo{
  width: 250px;
}

/* Einde header */

/* Begin main */
main{
  width: 94%;
  padding: 30px 3% 30px 3%;
}

section{
  width: 98%;
  padding: 0 1% 0 1%;
  padding: 50px 20px;
  background-color: #f6f4f0;
}
article{
  width: 98%;
  padding: 0 1% 0 1%;}

section h2{
  text-align: center;
  margin-bottom: 30px;
}

#image-section-one {
  width: 15%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  max-width: 100%;
}

/* Einde main */

/*css formulier*/
#formulier-paragraph {
  text-align: center;
}

form {
  background: #ffffff;
  padding: 25px 5% 25px 5%;
  border-radius: 8px;
  width: 50%;
  margin: 0 20% 0 20%;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h4 {
  margin-top: 0;
  color: #2C3E50;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #34495E;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: #3498db;
  outline: none;
}

input,
textarea,
select{
  font-size: 16px;
}

small {
  font-size: 12px;
  color: #7f8c8d;
}

button {
  margin-top: 25px;
  background-color: #3498db;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #2980b9;
}

#reactie {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  color: #2C3E50;
}
/*Einde css formulier*/

/* Begin footer */
footer{
  width: 100%;
  padding: 30px 0% 30px 0%;
  height:200px;
  text-align: center;
  background: linear-gradient(to bottom right, #1a1f2b, #0a3c39);
}


/* Einde footer */


/*media query curtain nav*/
/* @media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  } */
}
/*Einde media query curtain nav*/

/* voor de allerkleinste schermpjes*/
@media screen and (max-width: 390px){

}
/* Einde voor de allerkleinste schermpjes*/

/* begin standaard media query's*/
@media screen and (max-width: 700px){
  #nav-menu{
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 60px;
    background-color: #f6f4f0;
    padding: 10px;
    border: 3px solid #A57C00;
  }

  #nav-menu.show{
    display: flex;
  }

  #hamburger{
    display: block;
  }

  header h1 {
    font-size: 1.2em;
  }
	form {
  width: 80%;
		margin: 0 5% 0 5%;
  box-shadow: 0 0 0px rgba(0,0,0,0.0);
}
}

@media screen and (min-width: 701px) and (max-width: 800px){

}

@media screen and (min-width: 801px) and (max-width: 1300px){

}

/* Einde media queries */
