.contact-form-section {
  padding: 60px 20px;
  background: var(--site-theme-primary);
  color: white;
  border-bottom: 3px solid var(--site-theme-secondary);
  display: flex;
  justify-content: center;
}

.form-wrapper {
  width: 100%;
  max-width: 600px;
}

.contact-form-section h2 {
  text-align: center;
  font-family: Aquire;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: 'Orbitron', sans-serif;
  background: var(--site-theme-quaternary-darker);
  color: white;
}

input:focus, textarea:focus {
  outline: 2px solid var(--site-theme-secondary);
}

button.heroButton {
  align-self: center;
  width: 50%;
}

.hero {
  height: 50vh;

  background-image: url("../img/contact.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; 
}
