html {
  scroll-behavior: smooth;
}

body {
  font-family: "PT Serif", serif;
  margin: 0;
  padding: 0;
  background: #f9f7f3;
  color: #222;
  font-size: 20px;
}

h1 {
  font-family: "Chonburi", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 0 0 0.5rem 0;
  font-size: 4rem;
  color: #fff1f1;
}

h2 {
  font-family: "Chonburi", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #75455d;
}

.menu-heading {
  font-family: "Chonburi", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #75455d;
  scroll-margin-top: 85px;
}

.menu-sub-heading {
  font-size: 16px;
  margin-top: -0.8rem;
  margin-bottom: 1rem;
  color: #75455d;
}

.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8ba460;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: bold;
}

.cover-title {
  background-image: linear-gradient(#452836, rgba(0, 0, 0, 0.6)),
    url(./header-bg.jpg);
  background-size: auto, cover;
  text-align: center;
  background-color: #452836;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 3rem;
}

.card-container {
  display: flex;
  text-align: center;
  margin: 2rem auto;
  padding: 0.75rem;
  background: #e9e1e3;
  max-width: 900px;
}

.card-body {
  background: #ffffff;
  padding: 1.5rem;
  background-image: url(./card-bg.png);
  background-size: auto 460px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  flex-direction: column;
  display: flex;
  justify-content: center;
  background-position: 100% 0%;
  flex: 1;
}

.card-image {
  padding: 0;
  background: rgb(77, 77, 77);
  background-size: cover;
  background-position: 0% 50%;
  flex: 1;
}

.footer {
  flex-direction: column;
  display: flex;
  text-align: justify;
  align-items: stretch;
}

.footer-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(132, 60, 95, 0.5)),
    url(./footer-bg.jpg);
  background-size: auto, cover;
  text-align: center;
  background-color: #452836;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: 50% 25%;
  padding: 8rem;
}

.menu-item {
  font-weight: bold;
  margin-bottom: 4px;
}

.menu-item-description {
  font-size: 18px;
  margin-bottom: 0.75rem;
}

#banner {
  width: 100%;
  background: #4d2245;
  text-align: center;
  color: #ffe842;
  font-size: 1.5rem;
  padding: 1rem 0;
}

#menu-container {
  display: flex;
  gap: 1rem;
  padding: 0 4rem;
}

#menu-mobile-nav {
  display: none;
}

h1 a {
  color: inherit;
  text-decoration: inherit;
}

a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .card-container {
    display: block;
  }

  .card-body {
    flex: none;
  }

  .card-image {
    padding: 20%;
    flex: none;
  }

  .cover-title {
    padding: 1rem;
  }

  .footer-image {
    padding: 4rem;
  }

  h1 {
    font-size: 3rem;
  }

  #menu-container {
    display: block;
    padding: 0 1rem;
  }

  #menu-mobile-nav {
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(68, 28, 48);
    padding: 0.5rem;
    color: white;
  }
  #menu-mobile-nav a {
    color: white;
    text-decoration: none;
  }
}
