/* order.css */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff8e1;
  font-family: 'Outfit', sans-serif;
  color: #333;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #ffcc00;
  padding: 1.5em 1em;
  text-align: center;
}

header h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: black;
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: #d00000;
  text-decoration: none;
  margin: 0 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 1em;
  text-align: center;
}

.order-box {
  background-color: #ffe9c4;
  padding: 2em 2.5em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
}

.order-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #d00000;
  margin-bottom: 0.5em;
}

.order-box p {
  font-size: 20px;
  margin: 1em 0;
  line-height: 1.6;
}

.order-box a {
  color: #d00000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.order-box a:hover {
  color: #ffb703;
  text-decoration: underline;
}

footer {
  background-color: #d00000;
  color: #fff8e1;
  text-align: center;
  padding: 1em;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
}
