
/* Additional pastel-themed UI styling and layout improvements for Honeymoon Planner */
body {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #fcf8f7;
  color: #4a4a4a;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-shadow: 0 0 15px 2px #ebd9d8;
  border-radius: 12px;
}

header {
  text-align: center;
  margin-bottom: 1rem;
  color: #9f7d7a;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

h2 {
  font-weight: 600;
  color: #a37573;
  border-bottom: 2px solid #debebd;
  padding-bottom: 0.2rem;
  margin-bottom: 0.75rem;
}

textarea {
  min-height: 150px;
  border: 1px solid #dababa;
  border-radius: 8px;
  padding: 0.5rem;
  background-color: #fff8f7;
  color: #5d4a49;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}
textarea:focus {
  border-color: #b37977;
  outline: none;
  background-color: #fff0ef;
}

label, button {
  font-weight: 600;
  color: #8f605d;
  cursor: pointer;
}

input[type="text"], input[type="number"] {
  border-color: #d9b7b1;
  border-radius: 5px;
  padding: 0.4rem 0.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  font-size: 1rem;
  color: #6a4f4d;
}
input[type="text"]:focus, input[type="number"]:focus {
  border-color: #a9645f;
  background-color: #fff6f5;
  outline: none;
}

button {
  background-color: #d9b7b1;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  transition: background-color 0.25s ease;
  box-shadow: 1px 1px 3px #c5a19a;
}

button:hover {
  background-color: #a9645f;
  color: #fff;
}

li {
  background-color: #f7d9d7;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  box-shadow: inset 0 0 5px #ebd6d5;
}

li span {
  flex-grow: 1;
  margin-right: 0.5rem;
}

li .controls {
  display: flex;
  gap: 0.3rem;
}

li button {
  background-color: #d4b9b8;
  border: none;
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-weight: 700;
  color: #793f3c;
  box-shadow: 1px 1px 2px #b99190;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

li button:hover {
  background-color: #a9645f;
  color: #fff;
}

.section-instructions {
  color: #A67C7C;
  font-style: italic;
  margin-bottom: 0.75rem;
}

footer {
  color: #a07066;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  body {
    padding: 0.75rem;
    max-width: 100%;
  }
  h1 {
    font-size: 1.5rem;
  }
  button {
    width: 100%;
    margin-top: 0.5rem;
  }
  li {
    flex-direction: column;
    align-items: flex-start;
  }
  li button {
    margin-left: 0;
    margin-top: 0.3rem;
  }
}

