/* ============================================================
   CONTACT APP — Communication hub. Warm and inviting.
   Character: An open door. Makes reaching out feel personal.
   ============================================================ */

.window.app-contact .window-body {
  overflow: auto;
  height: 100%;
  background: linear-gradient(145deg, #fff0f6, #fde8f2);
}

.window.app-contact .content-pane {
  padding: 28px 32px;
  max-width: 680px;
  margin: 0 auto;
}

.window.app-contact .doc h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #2e0618;
  margin: 0 0 6px;
  line-height: 1.0;
}

.window.app-contact .doc p {
  color: #8a3050;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 24px;
}

/* Contact method cards */
.window.app-contact .project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.window.app-contact .project-card {
  border: 1px solid rgba(200,80,130,0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,235,245,0.80));
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  position: relative;
  overflow: hidden;
}

/* Accent strip at left */
.window.app-contact .project-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f060a0, #c03070);
  border-radius: 3px 0 0 3px;
  opacity: 0.6;
  transition: opacity 150ms ease;
}

.window.app-contact .project-card:hover {
  transform: translateY(-1px);
  border-color: rgba(200,80,130,0.40);
  box-shadow: 0 8px 24px rgba(180,40,100,0.14);
}

.window.app-contact .project-card:hover::before { opacity: 1; }

.window.app-contact .project-card h3 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #3e0820;
  margin: 0 0 5px;
}

.window.app-contact .project-card span {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: #9a4060;
  display: block;
}

/* Email card — slightly different */
.window.app-contact .project-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,228,242,0.88));
  border-color: rgba(200,80,130,0.30);
}

.window.app-contact .project-card:first-child::before {
  width: 4px;
  opacity: 0.8;
  background: linear-gradient(180deg, #e04090, #a82060);
}

.window.app-contact .project-card:first-child h3 { font-size: 1.0rem; }
.window.app-contact .project-card:first-child span { font-size: 0.80rem; color: #7a3050; }
