body {
    font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  background: #fefbf3;
  color: #333;
  line-height: 1.6;
}

header {
  background: url(/media/bh-header-3.jpeg) no-repeat center center/cover;
  color: white;
  padding: 15px;
  height: 70vh;
  display: grid;

}
.header-logo {
  display: grid;
  grid-template-columns: min-content max-content min-content;
  place-items: center;
  align-self: flex-start;
  place-content:center;
  gap: 20px;
}
header img {
    max-width: 100%;
    height: auto;
    height:90px;
}
.header-footer {
  display: grid;
  grid-template-columns: max-content max-content;
  place-items: center;
  gap:20px;
  align-self: flex-end;
  place-content:center;
}
.header-footer img {
  height:50px;
  width: auto;
}
.tagline {
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.small-text {
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

section {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: auto;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
}

.divider span {
  padding: 0 1rem;
  font-weight: bold;
  white-space: nowrap;
  font-size: 20px;
  color: #3b3b3b;  
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}
.menu-grid {
  display: grid;
  grid-template-columns: auto max-content min-content;
  gap: 20px;
}
.menu-price {
    white-space: nowrap;
    font-weight: bold;
}
.menu-grid a {
  text-decoration: none;
  color: #f1f1f1;
  margin-right: 5px;
  background: #3b3b3b;
  padding: 0px 5px;
  border-radius: 6px;
  white-space: nowrap;
}
h2 {
  color: #3b3b3b;
  margin-bottom: 1rem;
}
.insta-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5rem;
}
ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.qr {
  width: 180px;
  display: block;
  margin: 1rem auto;
}

a {
  color: #3b3b3b;
  
}

footer {
  text-align: center;
  padding: 1rem;
  background: #3b3b3b;
  font-size: 0.9rem;
  color:#ddd
}
footer .footer-wrapper-grid {
  display: grid;
  place-items: center;
  grid-template-columns: max-content max-content;
  place-content: center;
  gap:5px;
}
footer img {
  height:23px;
  width: auto;
}
footer a {
  color: white;
  text-decoration: none;
  display: grid;
  grid-template-columns: max-content max-content;
  place-content: center;
  gap:5px;

}