/* Reset de standaard opmaak van elementen */
body, h1, h2, h3, p, ul {
   margin: 0;
   font-family: system-ui;
   padding: 0;
}

/* Stijl voor het hoofdmenu */
header {
   background-color: rgba(45, 42, 42, 0.247);
   background-image: url(../Afbeeldingen/patroon.jpg);
   background-repeat: repeat;
   padding-top: 45px;
   padding-bottom: 50px;
   background-blend-mode: multiply;

}
footer {
   background-color: #174c0c7d;
   text-align: center;
   background-size: 500px;
   background-repeat: no-repeat;
   background-position: left;
   bottom: 0px;
   position: relative;
}

header nav ul {
   list-style: none;
   top: 100px;
}
header nav img {
   list-style: inside;
   padding-top: 10px;
   padding-bottom: 10px;
   max-height: 150px;
   max-width: 150px;
   display: inline;
   float: inline-end;
}

header nav ul li {
   display: inline;
   margin-right: 10px;
}

header nav ul li a {
   text-decoration: none;
   color: #fdfdfd;
   padding: 10px;
}

/* Algemene stijl voor secties */
section {
   padding: 20px;
   margin-bottom: 20px;
}

/* Stijl voor de homepagina */
#home {
   background-color: #174c0c7d;
   text-align: center;
   background-size: 200px;
   background-repeat: no-repeat;
   background-position: left;
   max-height: 100px;
}
#homepagina {
   max-height: 600px;
   max-width: 500px;
   text-align: left;  
   position: relative;
   
   
}

#logo {
   position: relative;
   left: 0px;
   top: 10px;

}
#welkom {
   background-color: #ffffff;
   text-align: center;

}
#foto {
   position: relative;
   left: 600px;
   bottom: 375px;
   max-width: 400px;
   max-height: 400px;

}


div.afbeeldingvlag {
   float: middle;
   width: 20%;
   border: thin silver solid;
   margin: 0.5em;
   padding: 0.5em;
 }

/* Stijl voor de productpagina */
#products {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-around;
}

.product {
   width: 300px;
   margin-bottom: 20px;
   padding: 20px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   text-align: center;
   transition: transform 0.3s;
}

.product:hover {
   transform: translateY(-10px);
}

.product img {
   width: 100%;
   margin-bottom: 10px;
}

.product h3 {
   margin-bottom: 5px;
}

.description {
   color: #888;
   margin-bottom: 10px;
}

.price {
   font-weight: bold;
   color: #333;
}

/*aanvraagformulier*/

label {
   display: block;
   margin-bottom: 10px;
 }

 input[type="text"],
 input[type="email"],
 input[type="tel"] {
   width: 100%;
   padding: 10px;
   border: 1px solid #ccc;
   border-radius: 4px;
 }

 select {
   width: 100%;
   padding: 10px;
 }

 input[type="submit"] {
   margin-top: 10px;
   padding: 10px 20px;
   background-color: #4CAF50;
   color: white;
   border: none;
   border-radius: 2px;
   cursor: pointer;
 }

 input[type="submit"]:hover {
   background-color: #45a049;
 }