/* styles.css */

.shantell-sans-<uniquifier> {
  font-family: "Shantell Sans", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "BNCE" 0,
    "INFM" 0,
    "SPAC" 0;
}

.shantell-sans-400 {
  font-weight: 400;
}   

.gaegu-regular {
  font-family: "Gaegu", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* H1 - Restaurant Name */
h1 {
  font-family: 'Slackey', cursive;
  font-size: 110px;
  font-weight: 900; /* Extra Bold */
}

/* H2 - Sections */
h2 {
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 800; /* Extra Bold */
  font-size: 55px;
  text-transform: uppercase;
}

/* H3 - Dishes */
h3 {
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
}

h4{
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

/* H4 - Description */
p {
  font-family: 'Gaegu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #A97C50;
}


.container {
  max-width: 900px;
  margin: 20px auto;
  border: 6px solid #442A26;
  background-color: #F0DBC8;
  padding: 20px;
  border-radius: 20px;

  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header img {
  width: 220px;
}

.banner img {
  width: 100%;
  margin-top: 20px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin: 10px 0;
  letter-spacing: 2px;
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;

  display: grid;
  place-items: center;
}

.menuitem {
  display: grid;
  grid-template-columns: 180px 1fr 70px;
  gap: 15px;
  align-items: center;

  padding: 15px;
  border-top: 1px solid #442A26;
}

.menuitem img {
  width: 180px;
  height: 120px;
  border-radius: 10px;
  display: block;
}

.text h3 {
  margin: 0;
  font-family: 'Shantell Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #333;
}

.price {
  font-weight: 900;
  text-align: right;
  font-family: 'Shantell Sans', sans-serif;
  font-size: 18px;
  color: #442A26;
}

.footerbanner img {
  width: 100%;
  display: block;
  margin: 30px 0 5px;
}

.footer {
  border-top: 2px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}