/* ===============================
   Contact Page Custom Styles
   =============================== */

body {
  background-color: #fffdf9;
  font-family: 'Georgia', serif;
  color: #400000;
  margin: 0;
  padding: 0;
}

/* --- Header Section --- */
.contact-header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.headline {
  font-family: 'Antic Slab', serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: #7a0000;
  margin-bottom: 10px;
  animation: fadeIn 1.5s ease;
}

.trust-line {
  font-size: 1.1rem;
  font-style: italic;
  color: #7a4a4a;
  animation: fadeIn 2s ease;
}

/* --- Form Box (optional enhancement) --- */
form {
  background-color: #fff9f5;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(128, 0, 0, 0.15);
  max-width: 480px;
  margin: 0 auto 50px auto;
}

input, textarea {
  border-radius: 10px;
  border: 1px solid #a44;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  color: #400000;
}

button {
  background-color: #a44;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

button:hover {
  background-color: #c55;
}

/* --- Animation Effects --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .headline {
    font-size: 1.8rem;
  }

  .trust-line {
    font-size: 1rem;
  }
}
