/*
 * contact.css
 * ─────────────────────────────────────────────────────────────
 * Contact section and footer — both dark navy.
 * ─────────────────────────────────────────────────────────────
 */

/* ── Contact section ── */
#contact {
  padding: 5rem 4rem;
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-h {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.contact-h em { font-style: italic; color: rgba(255, 255, 255, 0.65); }

.contact-p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
  font-weight: 300;
}

/* Pill-shaped link buttons */
.contact-links { display: flex; gap: 1rem; }
.clink {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.2s;
  border-radius: 4px;
}
.clink:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Footer ── */
footer {
  background: var(--ink);
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer span {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}
