.contact-page {
  padding: 100px 0;
  background: #fffafc;
}

.contact-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* title */
.contact-title {
  font-family: "Marcellus", serif;
  font-size: 42px;
  margin-bottom: 20px;
}

/* intro */
.contact-intro {
  font-family: "Roboto", sans-serif;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* email button */
.contact-email {
  margin-bottom: 60px;
}

.email-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #f7a6b8;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: 0.3s;
}

.email-btn:hover {
  background: #e88aa0;
}

/* contact info cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  font-family: "Marcellus", serif;
  margin-bottom: 10px;
}

.contact-card p {
  font-family: "Roboto", sans-serif;
  color: #555;
  font-size: 14px;
}

@media (max-width: 800px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=contact.css.map */