html, body {
  height: 100%;
}


body {
  margin: 1rem;
  font-family: "Segoe UI", sans-serif;
  background-color: rgb(221, 240, 207);
  color: rgb(47, 66, 40);
  line-height: 1.6;
}
.dish-image {
max-width: 300px;
width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px;
}




.menu-item {
  display:flex;
  flex-wrap: wrap;
  align-self: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border-end-end-radius: 12px;
}




a {
  color: rgb(5, 96, 5);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}



.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;

  
}




.site-header {
  background-color: rgb(200, 226, 184);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  margin: 0;
}

.main-nav a {
  margin-left: 1.5rem;
}



.main-nav a:hover {
  color: rgb(47, 66, 40);
}



section {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

h2 {
  margin-top: 0;
  color: rgb(5, 96, 5);
}

footer {
  background-color: rgb(200, 226, 184);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}



@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    margin-top: 1rem;
  }

  .main-nav a {
    margin: 0 0.8rem;
  }
}


.video-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}


