/* ═══════════════════════════════════════════════════════════════
   North Peak Care — Contact Page Styles
   ═══════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Contact Page */
.contact-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--npc-navy);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.contact-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-email {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-email p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-email a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #E8922F;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact-email a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 28px 16px 32px !important;
  }

  .contact-content h1 {
    font-size: 1.8rem;
  }

  .contact-content p {
    font-size: 1rem;
  }

  .contact-email {
    padding: 1.5rem;
  }

  .contact-email a {
    font-size: 1.1rem;
  }
}
