/* contact.css — Contact page styles */

#contact-content {
  max-width: 900px;
  margin: 32px auto;
  padding: 0 24px;
}

.contact-intro {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.9;
  text-align: center;
}

.contact-email {
  color: var(--purple-bright);
  text-decoration: none;
  white-space: nowrap;
}

.contact-email:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Social cards grid ──────────────────────────────────────────── */
.social-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--purple-glow);
}

/* ── Logo icon box ──────────────────────────────────────────────── */
.social-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #fff;
}

.social-logo--discord {
  background: #5865F2;
}

.social-logo--x {
  background: transparent;
}

/* ── Text ───────────────────────────────────────────────────────── */
.social-info {
  min-width: 0;
}

.social-platform {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.social-handle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Twitter profile avatar (replaces static X logo) ───────────── */
.social-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .social-card {
    transition: none;
  }
}
