/*navigatie balk*/
header
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color:#ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header img
{
  height: 75px;
  width: auto;
}
nav ul
{
  list-style: none;
  display: flex;
  justify-content: center;
  height: 30px;
  gap: 50px;
  margin: 0;
  margin-right: 50px;
  padding: 0;
}
nav, a
{
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial;
}
/*tekstboxen*/
main
{
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}
.lunchplek
{
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px #000000;
  margin-bottom: 30px;
  gap: 20px;
}
/*afbeeldingen*/
.lunch-img
{
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.lunchplek h2
{
  color: #000000;
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 10px;
}
.lunchplek p
{
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}
section
{
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333333;
}
/*contact footer*/
.contact
{
  background-color: antiquewhite;
  border-top: 40px solid #000000;
  text-align: center;
  font-family: Arial, sans-serif;
}
.contact-footer
{
  background-color: antiquewhite;
  border-top: 5px solid #d4a373;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  margin-top: 40px;
}
.contact-footer p
{
  font-size: 1.1rem;
  color: #333;
}