/* ============================================
   The Career Junction — Shared Site Styles
   Design tokens matched to the live homepage
   (thecareerjunction.com) so every page feels
   like one site.
   ============================================ */

:root {
  --tcj-navy: #0E3A53;
  --tcj-navy-light: #14507a;
  --tcj-teal: #0F9E8E;
  --tcj-sky: #1D5FA8;
  --tcj-border: #DCE7E6;
  --tcj-bg: #F6FAFA;
  --tcj-bg-soft: #F6FAFA;
  --tcj-card-bg: #ffffff;
  --tcj-text: #152A34;
  --tcj-text-soft: #5B6E76;
  --tcj-shadow: 0 14px 32px -18px rgba(21, 42, 52, 0.28);
  --tcj-shadow-sm: 0 12px 28px -14px rgba(14, 58, 83, 0.22);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --font: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--tcj-text);
  background: var(--tcj-bg);
}

h1, h2, h3, h4, .tcj-logo, .tcj-nav a, .tcj-btn, .tcj-eyebrow {
  font-family: var(--font-display);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.tcj-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.tcj-header {
  background: var(--tcj-navy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.tcj-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 5%;
  max-width: 1300px;
  margin: 0 auto;
}
.tcj-logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.2px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tcj-logo .tcj-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tcj-teal);
  flex-shrink: 0;
}
.tcj-nav {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tcj-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.tcj-nav a:hover,
.tcj-nav a[aria-current="page"] {
  color: #fff;
}
.tcj-signup {
  background: var(--tcj-bg);
  color: var(--tcj-navy);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}
.tcj-nav-toggle { display: none; }

@media (max-width: 720px) {
  .tcj-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tcj-navy);
    flex-direction: column;
    padding: 16px 24px 24px;
    display: none;
    gap: 16px;
  }
  .tcj-nav.tcj-nav-open { display: flex; }
  .tcj-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .tcj-signup { display: none; }
}

/* ---------- Buttons ---------- */
.tcj-btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease;
}
.tcj-btn:hover { transform: translateY(-1px); }
.tcj-btn-primary {
  background: var(--tcj-navy);
  color: #fff;
  box-shadow: var(--tcj-shadow-sm);
}
.tcj-btn-primary:hover { background: var(--tcj-navy-light); }
.tcj-btn-outline {
  background: #fff;
  color: var(--tcj-navy);
  border-color: var(--tcj-navy);
  border-color: var(--tcj-navy);
}

/* ---------- Hero banner ---------- */
.tcj-hero-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--tcj-shadow);
  margin: 40px auto 0;
  max-width: 1160px;
}
.tcj-hero-banner img { width: 100%; height: auto; }

/* ---------- Section layout ---------- */
.tcj-section {
  padding: 56px 0;
}
.tcj-section-tight { padding: 32px 0; }
.tcj-eyebrow {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 32px;
}
.tcj-h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px;
}
.tcj-h2-center { text-align: center; }
.tcj-p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--tcj-text-soft);
  margin: 0 0 16px;
}

.tcj-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .tcj-grid-2 { grid-template-columns: 1fr; }
}

.tcj-photo,
.tcj-photo-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--tcj-shadow-sm);
  border: 1px solid var(--tcj-border);
}
.tcj-photo-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--tcj-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tcj-text-soft);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

.tcj-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tcj-bullets li {
  margin: 0 0 20px;
}
.tcj-bullets .tcj-bullet-title {
  font-weight: 700;
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}
.tcj-bullets .tcj-bullet-title::before {
  content: "• ";
}

.tcj-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tcj-photo-grid .tcj-photo-placeholder {
  aspect-ratio: 1 / 1;
  font-size: 12px;
  padding: 10px;
}

.tcj-divider {
  border: none;
  border-top: 1px solid var(--tcj-border);
  margin: 0;
}

/* ---------- Donate card ---------- */
.tcj-donate-card {
  background: var(--tcj-card-bg);
  border: 2px solid var(--tcj-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--tcj-shadow);
}
.tcj-donate-icons {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tcj-donate-icons span {
  font-size: 12px;
  font-weight: 700;
  color: var(--tcj-text-soft);
  border: 1px solid var(--tcj-border);
  border-radius: 6px;
  padding: 4px 8px;
}

/* ---------- Job category grid (Tips & Resources) ---------- */
.tcj-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.tcj-job-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
}
.tcj-job-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--tcj-border);
  box-shadow: var(--tcj-shadow-sm);
  margin-bottom: 14px;
}
.tcj-job-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--tcj-text-soft);
  margin: 0;
}
.tcj-job-cta h3 {
  font-size: 22px;
  margin: 0 0 14px;
}
.tcj-job-cta p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tcj-text-soft);
  margin: 0 0 14px;
}
@media (max-width: 860px) {
  .tcj-jobs-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.tcj-footer {
  background: var(--tcj-navy);
  color: #fff;
  padding: 28px 24px;
  margin-top: 40px;
}
.tcj-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tcj-social {
  display: flex;
  gap: 18px;
}
.tcj-social a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.tcj-social a:hover { opacity: 1; }
.tcj-footer-nav {
  display: flex;
  gap: 10px 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  max-width: 760px;
}
.tcj-footer-nav a { text-decoration: none; color: #fff; opacity: 0.92; }
.tcj-footer-nav a:hover,
.tcj-footer-nav a[aria-current="page"] { opacity: 1; text-decoration: underline; }
.tcj-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  opacity: 0.85;
}
.tcj-footer-links a { text-decoration: none; color: #fff; }
.tcj-footer-links a:hover { text-decoration: underline; }
.tcj-copyright {
  font-size: 12px;
  opacity: 0.7;
}

/* ---------- Coming Soon ---------- */
.tcj-coming-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.tcj-coming-soon-badge {
  display: inline-block;
  background: rgba(15, 158, 142, 0.12);
  color: var(--tcj-teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.tcj-coming-soon h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--tcj-navy);
  margin: 0 0 16px;
}
.tcj-coming-soon .tcj-p {
  font-size: 17px;
  margin: 0 auto 30px;
}
.tcj-coming-soon-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
