body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #0a0e1a;
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* align to top */
  padding: 4rem 2rem 2rem; /* more top padding, keep side and bottom padding */
  text-align: center;
}


.wordmark {
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #ffffff;
  color: #0a0e1a;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #eaeaea;
}
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  margin-top: 1.5rem;
}

.contact-form label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  margin-bottom: 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffffff;
  background-color: #1a1e33;
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.brand {
  font-family: 'Cinzel', serif;
  font-weight: 400; /* lighter weight */
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
