/* Reset basique */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #f1e8db;
  color: #5a4f43;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.commande-page {
  max-width: 480px;
  margin: 60px auto 80px auto;
  padding: 30px 25px;
  background-color: #b89f84; /* couleur douce marron clair */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(90, 79, 67, 0.3);
  text-align: center;
}

.commande-page h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #3a2f25;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

#commande-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#commande-form input[type="text"],
#commande-form input[type="tel"],
#commande-form input[type="email"],
#commande-form textarea {
  padding: 14px 20px;
  font-size: 1.1rem;
  border-radius: 20px;
  border: 1.5px solid #5a4f43;
  background-color: #f1e8db;
  color: #5a4f43;
  font-family: 'Georgia', serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
  min-height: 44px;
}

#commande-form textarea {
  min-height: 100px;
}

#commande-form input:focus,
#commande-form textarea:focus {
  border-color: #3a2f25;
  box-shadow: 0 0 8px #3a2f25aa;
  outline: none;
}

#commande-form p {
  font-weight: 600;
  color: #7a6f63;
  margin-top: 10px;
  font-size: 0.95rem;
}

#commande-form button {
  margin-top: 20px;
  padding: 15px 0;
  background-color: #5a4f43;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(90,79,67,0.6);
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Georgia', serif;
}

#commande-form button:hover {
  background-color: #3a2f25;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 520px) {
  .commande-page {
    margin: 40px 15px 60px 15px;
    padding: 25px 20px;
  }

  .commande-page h1 {
    font-size: 2.2rem;
  }

  #commande-form button {
    font-size: 1.1rem;
    padding: 14px 0;
  }
}
