/*
Theme Name: Sherap Therchin Resume
Theme URI: https://canadatibet.com
Author: Sherap Therchin
Author URI: https://linkedin.com/in/sheraptherchin
Description: A professional single-page resume and portfolio theme for Sherap Therchin — Executive Director, Canada Tibet Committee. Features news links, parliamentary testimonies, publications, and awards.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Tags: one-page, resume, portfolio, human-rights
*/

:root {
  --ink: #0d0f14;
  --snow: #f9f6f0;
  --gold: #c9960c;
  --saffron: #e8a020;
  --deep-blue: #0a1628;
  --mid-blue: #1a2f52;
  --pale-gold: #fdf3dc;
  --muted: #6b7280;
  --border: rgba(201,150,12,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', 'Gill Sans', 'Optima', 'Segoe UI', sans-serif;
  background: var(--snow);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.st-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,12,0.2);
}
.st-nav-logo {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--saffron);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.st-nav-links { display: flex; gap: 2rem; list-style: none; }
.st-nav-links a {
  color: rgba(249,246,240,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
}
.st-nav-links a:hover { color: var(--saffron); }

/* ===== HERO ===== */
.st-hero {
  background: var(--deep-blue);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.st-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,150,12,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,47,82,0.8) 0%, transparent 60%);
  pointer-events: none;
}
.st-hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,150,12,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,150,12,0.04) 40px);
  pointer-events: none;
}
.st-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 6rem 5rem;
  position: relative;
  z-index: 2;
}
.st-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.st-hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--saffron); }
.st-hero-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--snow);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.st-hero-name em { font-style: italic; color: var(--saffron); }
.st-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(249,246,240,0.65);
  margin-bottom: 2.5rem;
}
.st-hero-divider { width: 5rem; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 2.5rem; }
.st-hero-summary {
  font-size: 1.05rem;
  color: rgba(249,246,240,0.75);
  line-height: 1.8;
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 3rem;
}
.st-hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.st-badge {
  background: rgba(201,150,12,0.12);
  border: 1px solid rgba(201,150,12,0.3);
  color: var(--saffron);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  font-weight: 500;
}
.st-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.st-btn-primary {
  background: var(--gold); color: var(--deep-blue);
  text-decoration: none; padding: 0.8rem 1.8rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; transition: all 0.25s; display: inline-block;
}
.st-btn-primary:hover { background: var(--saffron); transform: translateY(-1px); }
.st-btn-outline {
  border: 1px solid rgba(249,246,240,0.3); color: rgba(249,246,240,0.8);
  text-decoration: none; padding: 0.8rem 1.8rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; transition: all 0.25s; display: inline-block;
}
.st-btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.st-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 5rem 6rem 2rem;
  position: relative;
  z-index: 2;
}
.st-stat-panel { border-left: 2px solid rgba(201,150,12,0.3); padding-left: 2rem; margin-bottom: 3rem; }
.st-stat-item { margin-bottom: 2rem; }
.st-stat-number { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; font-weight: 300; color: var(--saffron); line-height: 1; margin-bottom: 0.3rem; }
.st-stat-label { font-size: 0.75rem; color: rgba(249,246,240,0.55); letter-spacing: 0.15em; text-transform: uppercase; }
.st-sanction-notice { background: rgba(201,150,12,0.08); border: 1px solid rgba(201,150,12,0.25); padding: 1.5rem; }
.st-sanction-notice p { font-size: 0.85rem; color: rgba(249,246,240,0.7); line-height: 1.6; }
.st-sanction-notice strong { color: var(--saffron); display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }

/* ===== SECTIONS ===== */
.st-section { padding: 6rem 0; }
.st-container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.st-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.st-eyebrow::after { content: ''; display: block; width: 3rem; height: 1px; background: var(--gold); }
.st-eyebrow--light { color: rgba(201,150,12,0.7); }
.st-eyebrow--light::after { background: rgba(201,150,12,0.7); }
.st-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--deep-blue); line-height: 1.1; margin-bottom: 3.5rem;
}
.st-section-title--light { color: var(--snow); }

/* ===== EXPERTISE ===== */
.st-expertise { background: var(--deep-blue); }
.st-expertise-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px; background: rgba(201,150,12,0.15); border: 1px solid rgba(201,150,12,0.15);
}
.st-expertise-card { background: var(--deep-blue); padding: 2.5rem; transition: background 0.3s; position: relative; }
.st-expertise-card:hover { background: var(--mid-blue); }
.st-expertise-card::after { content: ''; position: absolute; bottom: 0; left: 2.5rem; right: 2.5rem; height: 1px; background: rgba(201,150,12,0.15); }
.st-expertise-icon { width: 2.5rem; height: 2.5rem; background: rgba(201,150,12,0.1); border: 1px solid rgba(201,150,12,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1rem; }
.st-expertise-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; font-weight: 400; color: var(--snow); margin-bottom: 0.75rem; }
.st-expertise-card p { font-size: 0.85rem; color: rgba(249,246,240,0.55); line-height: 1.7; }
.st-expertise-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.st-etag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron); border: 1px solid rgba(201,150,12,0.25); padding: 0.2rem 0.6rem; }

/* ===== EXPERIENCE ===== */
.st-experience { background: var(--snow); }
.st-timeline { position: relative; }
.st-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(201,150,12,0.1)); }
.st-exp-item { padding-left: 3rem; padding-bottom: 4rem; position: relative; }
.st-exp-item::before { content: ''; position: absolute; left: -5px; top: 0.4rem; width: 11px; height: 11px; border: 2px solid var(--gold); background: var(--snow); transform: rotate(45deg); }
.st-exp-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.st-exp-role { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 500; color: var(--deep-blue); }
.st-exp-date { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted); background: rgba(201,150,12,0.08); border: 1px solid var(--border); padding: 0.3rem 0.75rem; white-space: nowrap; font-weight: 500; }
.st-exp-org { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.st-exp-sub { margin-bottom: 1.5rem; }
.st-exp-sub-title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.st-exp-sub-title::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--border); }
.st-bullets { list-style: none; }
.st-bullets li { font-size: 0.92rem; color: #374151; line-height: 1.75; padding-left: 1rem; position: relative; margin-bottom: 0.5rem; }
.st-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 300; }
.st-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; padding-left: 1rem; }
.st-chip { display: inline-flex; align-items: center; font-size: 0.68rem; letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; padding: 0.3rem 0.7rem; text-decoration: none; transition: all 0.2s; }
.st-chip:hover { opacity: 0.85; transform: translateY(-1px); }
.st-chip--cbc { background: #d30000; color: #fff; }
.st-chip--globe { background: #1a3a6b; color: #fff; }
.st-chip--phayul { background: #c9960c; color: #fff; }
.st-chip--parl { background: #1a1a1a; color: #fff; }
.st-chip--tribune { background: #4a1942; color: #fff; }

/* ===== IN THE NEWS ===== */
.st-news { background: var(--pale-gold); }
.st-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.st-news-card { background: white; border: 1px solid rgba(201,150,12,0.15); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.st-news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.st-news-card-top { padding: 1.5rem 1.5rem 0; display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.st-news-outlet { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.6rem; }
.st-news-outlet--cbc { background: #d30000; color: #fff; }
.st-news-outlet--globe { background: #1a3a6b; color: #fff; }
.st-news-outlet--phayul { background: var(--gold); color: #fff; }
.st-news-outlet--tribune { background: #4a1942; color: #fff; }
.st-news-outlet--commons { background: #8B0000; color: #fff; }
.st-news-date { font-size: 0.72rem; color: var(--muted); }
.st-news-card-body { padding: 0 1.5rem 1.5rem; }
.st-news-card-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-weight: 500; color: var(--deep-blue); line-height: 1.35; margin-bottom: 0.75rem; }
.st-news-card-body p { font-size: 0.83rem; color: #6b7280; line-height: 1.65; margin-bottom: 1rem; }
.st-news-read-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color 0.2s; }
.st-news-read-more:hover { color: var(--deep-blue); border-color: var(--deep-blue); }

/* ===== TESTIMONY ===== */
.st-testimony { background: var(--deep-blue); }
.st-testimony-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 1.5rem; }
.st-testimony-card { border: 1px solid rgba(201,150,12,0.2); padding: 2rem; position: relative; background: rgba(255,255,255,0.03); transition: background 0.25s; }
.st-testimony-card:hover { background: rgba(255,255,255,0.06); }
.st-testimony-year { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; font-weight: 300; color: rgba(201,150,12,0.2); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.st-testimony-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-weight: 400; color: var(--snow); margin-bottom: 0.5rem; padding-right: 4rem; }
.st-testimony-card .st-committee { font-size: 0.72rem; color: var(--saffron); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.st-testimony-card p { font-size: 0.85rem; color: rgba(249,246,240,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.st-testimony-card a { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saffron); text-decoration: none; border-bottom: 1px solid rgba(201,150,12,0.3); padding-bottom: 1px; transition: all 0.2s; }
.st-testimony-card a:hover { color: var(--snow); border-color: rgba(249,246,240,0.3); }

/* ===== PUBLICATIONS ===== */
.st-publications { background: white; }
.st-pub-list { display: flex; flex-direction: column; border: 1px solid rgba(201,150,12,0.2); }
.st-pub-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; padding: 1.75rem 2rem; border-bottom: 1px solid rgba(201,150,12,0.1); text-decoration: none; transition: background 0.2s; }
.st-pub-item:last-child { border-bottom: none; }
.st-pub-item:hover { background: var(--pale-gold); }
.st-pub-type { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.7rem; white-space: nowrap; }
.st-pub-type--policy { background: #2c5f2e; color: #fff; }
.st-pub-type--report { background: #1a3a6b; color: #fff; }
.st-pub-type--brief { background: var(--gold); color: #fff; }
.st-pub-body h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-weight: 500; color: var(--deep-blue); margin-bottom: 0.3rem; }
.st-pub-meta { font-size: 0.78rem; color: var(--muted); }
.st-pub-arrow { font-size: 1rem; color: var(--gold); }

/* ===== AWARDS ===== */
.st-awards { background: var(--pale-gold); }
.st-awards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.st-award-card { border: 1px solid rgba(201,150,12,0.3); background: white; padding: 2.5rem; position: relative; overflow: hidden; }
.st-award-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.st-award-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 500; color: var(--deep-blue); margin-bottom: 0.35rem; }
.st-award-card .st-award-date { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.st-award-card p { font-size: 0.88rem; color: #4b5563; line-height: 1.7; }
.st-award-card a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); font-weight: 500; }
.st-award-card a:hover { color: var(--deep-blue); }

/* ===== EDUCATION ===== */
.st-education { background: var(--deep-blue); }
.st-edu-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(201,150,12,0.15); border: 1px solid rgba(201,150,12,0.15); }
.st-edu-card { background: var(--deep-blue); padding: 2rem; transition: background 0.25s; }
.st-edu-card:hover { background: var(--mid-blue); }
.st-edu-card .st-deg { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 0.75rem; }
.st-edu-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 400; color: var(--snow); margin-bottom: 0.4rem; }
.st-edu-card .st-school { font-size: 0.82rem; color: rgba(249,246,240,0.5); }
.st-edu-card .st-year { font-size: 0.72rem; color: rgba(201,150,12,0.6); margin-top: 0.5rem; font-weight: 500; }
.st-lang-row { display: flex; gap: 3rem; padding: 3rem 0 0; border-top: 1px solid rgba(201,150,12,0.15); margin-top: 3rem; flex-wrap: wrap; }
.st-lang-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; color: var(--snow); font-weight: 300; margin-bottom: 0.2rem; }
.st-lang-level { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(201,150,12,0.6); }

/* ===== FOOTER ===== */
.st-footer { background: var(--ink); padding: 3rem 0; border-top: 1px solid rgba(201,150,12,0.15); }
.st-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.st-footer-left p { font-size: 0.82rem; color: rgba(249,246,240,0.4); }
.st-footer-left a { color: var(--saffron); text-decoration: none; font-weight: 500; }
.st-footer-links { display: flex; gap: 1.5rem; }
.st-footer-links a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,246,240,0.4); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.st-footer-links a:hover { color: var(--saffron); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.st-hero-left > * { animation: fadeUp 0.7s ease-out both; }
.st-hero-eyebrow { animation-delay: 0.1s; }
.st-hero-name    { animation-delay: 0.2s; }
.st-hero-title   { animation-delay: 0.3s; }
.st-hero-divider { animation-delay: 0.35s; }
.st-hero-summary { animation-delay: 0.4s; }
.st-hero-badges  { animation-delay: 0.5s; }
.st-hero-cta     { animation-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .st-hero { grid-template-columns: 1fr; }
  .st-hero-right { display: none; }
  .st-hero-left { padding: 8rem 2rem 4rem; }
  .st-nav { padding: 1rem 1.5rem; }
  .st-nav-links { display: none; }
  .st-container { padding: 0 1.5rem; }
  .st-section { padding: 4rem 0; }
  .st-awards-row, .st-edu-row { grid-template-columns: 1fr; }
  .st-exp-header { flex-direction: column; gap: 0.5rem; }
  .st-pub-item { grid-template-columns: auto 1fr; }
  .st-pub-arrow { display: none; }
}
