
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff8f0;
  color: #3f3f3f;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: linear-gradient(90deg, #b45309, #d97706);
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.site-header h1 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1rem;
  color: #fef3c7;
  margin-top: 0.3rem;
}

/* ====== FORM CONTAINER ====== */
.form-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}

.order-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  border: 3px solid #fbbf24;
}

.order-form h2 {
  color: #78350f;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #fbbf24;
  padding-bottom: 0.3rem;
}

.form-section {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-top: 0.6rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  background: #fffaf3;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 5px rgba(217, 119, 6, 0.5);
}

.toppings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.toppings label {
  background: #fef3c7;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #fbbf24;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toppings input {
  margin-right: 0.3rem;
}

.toppings label:hover {
  background: #fde68a;
}

/* ====== BUTTON ====== */
.form-actions {
  text-align: center;
  margin-top: 1rem;
}

button {
  background: #b45309;
  color: #fff;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #92400e;
  transform: translateY(-2px);
}

#message {
  margin-top: 1rem;
  font-weight: 600;
}

/* ====== SUCCESS MESSAGE BOX ====== */
.success-box {
  background: #fffaf3;
  border: 3px solid #fbbf24;
  border-radius: 12px;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #78350f;
  animation: fadeIn 0.6s ease;
  max-width: 600px;
  margin: 2rem auto;
}

.success-box h2 {
  color: #b45309;
  margin-bottom: 0.5rem;
}

.success-box p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== FOOTER ====== */
.site-footer {
  background: #78350f;
  color: #fef3c7;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
