body, html{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: antiquewhite;
  line-height: 1.5;
  color: bisque;
}

#container{
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
}

header{
  padding: 1rem 2rem;
  grid-row: 1;
  grid-column: 1;
  background-color: bisque;
  position: sticky;
  top: 0;
}

nav ul{
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul li:first-child{
  margin-right: auto;
}

nav a{
  text-decoration: none;
  font-weight: bold;
  color: rgb(6, 45, 6);
}

nav a:hover{
  text-decoration: underline;
}

nav img{
  width: 80px;
}

main{
  display: grid;
  gap: 3rem;
  padding: 3rem;
  max-width: 1100px;
  margin: auto;

  grid-row:2;
  grid-column: 1;
}

article{
  background-color: rgb(6, 45, 6);
  padding: 2.5rem;
  border-radius: 2rem;
}

article h1,
article h2{
  margin-top: 0;
}

.intro img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
}

.gerecht-van-de-week{
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.gerecht-van-de-week img{
  width: 250px;
  border-radius: 1rem;
}

iframe{
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: none;
  margin-top: 1rem;
}

footer{
  grid-row: 3;
  grid-column: 1;

  background-color: rgb(6, 45, 6);
  color: antiquewhite;
  text-align: center;
  padding: 1.5rem;
}

.footer-info{
  display: flex;
  justify-content: space-evenly;
  gap: 0.5rem;
  text-align: left;
  flex-wrap: wrap;
}

.extra{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 120px;
}

footer a{
  color: antiquewhite;
  text-decoration: none; 
  font-size: 0.8rem;
}

footer a:hover{
  text-decoration: underline;
}

.disclaimer{
  text-align: left;
  margin-top: 2rem;
  color: antiquewhite;
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 760px){
nav ul{
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

nav ul li:first-child{
  margin-right: 0;
}

.gerecht-van-de-week{
  flex-direction: column;
}

.gerecht-van-de-week p{
  margin-top: auto;
}

.gerecht-van-de-week img{
  width: 100%;
}

main{
  padding: 1.5rem;
}

article{
  padding: 1.5rem;
}

iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
}

.menu-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.gerecht{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: antiquewhite;
  padding: 1rem;
  border-radius: 1rem;
}

.gerecht img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 1rem;
  flex-shrink: 0;
}

.gerecht-tekst{
  padding: 1rem;
  color: rgb(6, 45, 6);
  flex: 1 1 200px;
}

.gerecht-tekst h3{
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.soort{
  font-style: italic;
}

@media (max-width: 1000px){
  .menu-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .menu-container{
    grid-template-columns: 1fr;
  }
  .gerecht{
    flex-direction: column;
  }
  .gerecht img{
    height: auto;
  }
  .gerecht-tekst h3{
    font-size: 1.1rem;
  }
  .gerecht-tekst p{
    font-size: 0.8rem;
  }
  }

.reservatie{
  color: antiquewhite;
}

.reservatie img{
    width: 25%;
    min-width:150px;
    border-radius: 2rem;
}


.blog{
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}

.blog-artikel{
display: flex;
align-items: flex-start;
flex-wrap: wrap;
gap: 1rem;
}

.blog-artikel{
  display: block;
}


.blog-artikel img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  margin-bottom: 1rem;
  object-position: 40% 65%;
}

.schrijver{
  display: flex;

  font-size: 0.8rem;
  gap: 0.5rem;
}

.schrijver img{
    height: 60px;
    width: 60px;
    border-radius:50%;
    object-fit: cover;
}

.blog-intro{
  color: rgb(6, 45, 6);
}

.blog-intro h2{
  margin-bottom: 0;
}

.blog h3{
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 600px){
  .blog-artikel{
    flex-direction: column;
  }

  .blog-artikel img{
    width: 100%;
    max-width: none;
  }
}

.over-ons-intro{
  color: rgb(8, 50, 8);
}

.team-member{
  padding: 1rem;
}

.team-member img{
    width: 200px;
    max-width: 200px;
    height: auto;
    border-radius: 5%; 
}

.team-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.naam{
  margin-bottom: 0.2rem;
}

.functie{
  font-style: italic;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.beschrijving{
  max-width: 100%;
  font-size: 0.8rem;
  margin-top: 0;
}

@media (max-width: 900px){
  .team-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .team-container{
    grid-template-columns: 1fr;
  }
}

.contact{
  color: rgb(6, 53, 6);
  margin: 0.2rem 0;
}

.contact h1, 
.contact h2{
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.contact h3{
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.label, input{
  display: block;
}

.reservatie-formulier{
  color: rgb(5, 44, 5);
}
