body {
  width: 100%;
  text-align: center;
  margin: 0;
  font-family: "Sacramento", cursive;
  font-weight: 400;
  font-style: normal;
  background-color: #fff0e6;
  position: relative;
  font-size: 1.5rem;
}

.header {
  background-color: #ffb84d;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  padding: 2.5rem 0;
  background: url("/assets/burgerBackground.jpg") no-repeat center center fixed;
  opacity: 0.8;
  background-size: cover;
  min-height: 100vh;
  color: #fff;
  text-shadow: 2px 2px 10px #000000;
  font-weight: bold;
}

h1 {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 2.5rem;
}

h2 {
  margin: 0;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
}

label {
  font-size: 1.5rem;
  margin: 10px 0;
  font-family: "Marck Script", cursive;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  margin-bottom: 50px;
}

.menu-item {
  text-align: center;
  width: 80%;
  border-bottom: 1px solid #ccc;
  padding: 10px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
}

.left-side {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  column-gap: 3rem;
}

.emoji {
  font-size: 2.5rem;
}

button.add-btn {
  font-size: 1.6rem;
  background-color: #ffb84d;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-left: 0.75rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

button {
  background-color: #ffb84d;
  border: none;
  color: white;
  padding: 0.5em 0.8em;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 15px;
  font-family: "Sacramento", cursive;
}

.place-order-btn {
  width: 80%;
  font-size: 1.75rem;
  display: inline-block;
}

button:hover {
  background-color: #e68a00;
}

.order-item {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 2rem;
}

#total-price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}

.modal {
  display: flex;
  width: 60%;
  font-size: 1.5rem;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  margin: auto;
  overflow: auto;
  justify-content: center;
  align-items: center;
  right: 0;
  bottom: 0;
}

.modal-content {
  background-color: rgba(0, 0, 0, 1);
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.payment-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}

label {
  font-size: 1.5rem;
  font-family: "Sacramento", cursive;
}

.payment-form label {
  font-size: 1.5rem;
  text-align: left;
}

input {
  padding: 10px;
  margin: 5px 0;
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 80%;
}

.hidden {
  display: none;
}

.modal-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}

footer {
  background-color: #ffb84d;
  padding: 10px 0;
  width: 100%;
  bottom: 0;
  text-align: center;
  font-size: 1.25rem;
}

footer p {
  margin: 0;
  padding: 5px 0;
}

@media (min-width: 780px) {
  .menu-item {
    font-size: 2rem;
  }

  .order-item {
    font-size: 2rem;
  }

  main h2 {
    font-size: 2.5rem;
  }

  label {
    font-size: 2rem;
  }

  .place-order-btn {
    font-size: 2rem;
    width: auto;
  }
}
