/* contact.css */
/* AFTER: flow layout that works on any phone */
.contact_main {
  position: relative;
  max-width: 600px;
  width: min(92vw, 600px);
  margin: 18vh auto 40px;     /* pushed down below hero, centered */
  background: rgba(255, 255, 255, 0.85);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_form input[type="email"],
.contact_form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact_form button {
  padding: 12px;
  background: #002f5f;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact_form button:hover {
  background: #004080;
}

@media (max-width: 799px) {
  .contact_main {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .contact_main {
    margin: 16vh 12px 28px;
    padding: 18px;
  }
}

.nav_brand .brand_text_link {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700;
}
