@import url('/blog/style.css');

/* ============================================================
   Main site (homepage / social / contact) — reuses the Forest
   Canopy design tokens and shared classes defined in /blog/style.css
   (colors, fonts, .tag, .site-footer, nav.site, header.site, etc.)
   and adds the homepage-specific layout below.
   ============================================================ */

.hero {
  max-width: 620px;
  margin: 0 auto 72px;
  text-align: center;
}

.hero .leaf-icon-lg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 40px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.hero .tagline {
  font-size: 16.5px;
  color: var(--accent-soft);
  font-weight: 600;
  margin: 0 0 26px;
  letter-spacing: 0.01em;
}

.hero .bio {
  font-size: 16px;
  line-height: 1.9;
  color: #414d3d;
  margin: 0;
  text-align: left;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.link-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--accent-soft);
}

.link-card .icon {
  color: var(--accent);
}

.link-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  margin: 0;
}

.link-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.link-card .go {
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 760px) {
  .hero h1 { font-size: 30px; }
  .link-cards { grid-template-columns: 1fr; }
}

/* ---------- Social / Contact pages ---------- */

.simple-page {
  max-width: 560px;
  margin: 0 auto;
}

.simple-page h1 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0 0 16px;
}

.simple-page > p.lead {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 40px;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.social-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--accent-soft);
}

.social-item .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.social-item .label {
  font-weight: 600;
  font-size: 15px;
}

.social-item .handle {
  font-size: 13px;
  color: var(--muted);
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}

.contact-card .icon {
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-card a.email {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-card a.email:hover { border-color: var(--accent); }
