/* ============================================================
   CONTACT PAGE — extends styles.css
   Reuses the existing --navy / --pink / --yellow / --green / --cream
   variables and the VT323 / Righteous type pairing already set up
   in styles.css. Only new, page-specific classes live here.
   ============================================================ */

/* highlight the current page in the nav */
.nav-current {
  color: var(--pink) !important;
}

/* ---- REACH OUT (intro text + form) ---- */

.reach-out {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 5rem 0;
  border-bottom: 1px dashed rgba(38, 84, 124, 0.2);
}

.reach-out-text {
  flex: 1;
  max-width: 480px;
}

.reach-out-text h2 {
  font-family: 'VT323', monospace;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--navy);
  margin-bottom: 1.4rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.reach-out-text p {
  font-family: 'Righteous', cursive;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  color: #3a4a5c;
  line-height: 1.85;
  margin-bottom: 1rem;
  opacity: 0.88;
}

/* reuse the homepage's "see-more" link style, but left-align it here */
.reach-out-text .see-more {
  margin: 1.5rem 0 0 0;
}

.reach-out-form {
  flex: 1;
  max-width: 480px;
}

.form-row {
  margin-bottom: 1.3rem;
}

/* spacing for Netlify's injected recaptcha widget */
[data-netlify-recaptcha] {
  margin-bottom: 1.3rem;
}

/* honeypot field — hidden off-screen rather than display:none,
   since some spam bots specifically skip display:none fields */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-row label {
  display: block;
  font-family: 'Righteous', cursive;
  font-size: 0.8rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'Righteous', cursive;
  font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.2);
}

.reach-out-form button[type="submit"] {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 0.7rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reach-out-form button[type="submit"]:hover {
  background: var(--pink);
  color: var(--cream);
  transform: rotate(-1deg) scale(1.03);
}

/* ---- PROCESS (what happens next) ---- */

.process {
  padding: 5rem 0;
}

.process h2 {
  font-family: 'VT323', monospace;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  background: rgba(38, 84, 124, 0.04);
  border-top: 4px solid var(--pink);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:nth-child(2) { border-top-color: var(--yellow); }
.process-card:nth-child(3) { border-top-color: var(--green); }

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 4px 10px 24px rgba(38, 84, 124, 0.12);
}

.process-number {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 2.4rem;
  color: var(--pink);
}

.process-card:nth-child(2) .process-number { color: var(--yellow); }
.process-card:nth-child(3) .process-number { color: var(--green); }

.process-card h3 {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.5rem 0 0.6rem;
}

.process-card p {
  font-family: 'Righteous', cursive;
  font-size: 0.92rem;
  color: #3a4a5c;
  line-height: 1.7;
  opacity: 0.88;
}

/* ---- ACCESSIBILITY: respect reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  .reach-out-form button[type="submit"],
  .process-card {
    transition: none;
  }
  .reach-out-form button[type="submit"]:hover {
    transform: none;
  }
  .process-card:hover {
    transform: none;
  }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

  .reach-out {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
  }

  .reach-out-text,
  .reach-out-form {
    max-width: 100%;
  }

  .reach-out-text .see-more {
    margin-left: auto;
    margin-right: auto;
  }

  .process {
    padding: 3rem 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}