/* TheFriendlyWeb.com — token system
   Color: navy #1D2B3A / teal #2E8B87 / mustard #E8A33D / paper #F1EEE7 / ink #2C3B44
   Type: display "Quicksand" (rounded, approachable) + body "Source Sans 3"
   Signature: waypoint marker (>) before section labels — the "guide" motif; dotted trail divider
*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --navy: #1D2B3A;
  --teal: #2E8B87;
  --mustard: #E8A33D;
  --paper: #F1EEE7;
  --ink: #2C3B44;
  --max: 1040px;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'Source Sans 3', sans-serif; line-height: 1.6;
}
h1, h2, h3, .display {
  font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--navy); margin: 0 0 0.4em;
}
a { color: var(--teal); text-decoration: none; font-weight: 600; }
a:hover, a:focus-visible { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--mustard); outline-offset: 2px;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.site-nav { background: var(--navy); padding: 14px 0; }
.site-nav .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.site-nav .brand { color: #fff; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.25rem; }
.site-nav a { color: #EAF3F2; margin-left: 16px; font-size: 0.92rem; font-weight: 500; }
.site-nav a:first-child { margin-left: 0; }

/* dotted trail divider — signature element */
.trail {
  height: 6px;
  background-image: radial-gradient(circle, var(--teal) 2px, transparent 2.5px);
  background-size: 16px 6px; background-repeat: repeat-x; background-position: center;
  opacity: 0.7;
}

.hero { padding: 60px 0 36px; text-align: center; }
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.hero p { max-width: 600px; margin: 0 auto; font-size: 1.08rem; color: var(--ink); opacity: 0.85; }

.hubs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 36px 0; }
.hub-card { background: #fff; border: 1px solid rgba(29,43,58,0.1); border-radius: 12px; padding: 22px; }
.hub-card h3::before { content: "› "; color: var(--teal); }
.hub-card p { color: var(--ink); opacity: 0.85; font-size: 0.95rem; }

.section { padding: 40px 0; }
.section-label { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.76rem; color: var(--teal); font-weight: 700; }
.section-label::before { content: "› "; }

.resource-meta { color: var(--ink); opacity: 0.7; font-size: 0.9rem; margin-bottom: 1.2em; }
.resource-body { font-size: 1.05rem; max-width: 700px; }
.resource-body h2 { font-size: 1.3rem; margin-top: 1.4em; }

.reco-card { background: #fff; border: 1px solid rgba(29,43,58,0.1); border-radius: 10px; padding: 16px 18px; margin: 12px 0; }
.reco-card .reco-name { font-weight: 700; color: var(--navy); }
.reco-disclosure { font-size: 0.82rem; background: #FCF2E1; color: #7A5A19; padding: 8px 12px; border-radius: 8px; display: inline-block; margin-bottom: 10px; }
.reco-forwho { font-size: 0.88rem; margin-top: 6px; }

.test-flag {
  background: var(--mustard); color: var(--navy); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; padding: 3px 8px; border-radius: 6px; margin-bottom: 10px;
}

form.card { background: #fff; border: 1px solid rgba(29,43,58,0.1); border-radius: 12px; padding: 24px; max-width: 480px; }
form.card label { display: block; margin: 12px 0 4px; font-weight: 600; font-size: 0.92rem; }
form.card input, form.card textarea {
  width: 100%; padding: 10px; border: 1px solid #C9C2B4; border-radius: 8px; font-family: inherit; font-size: 0.95rem;
}
form.card button {
  margin-top: 16px; background: var(--teal); color: #fff; border: none;
  padding: 12px 22px; border-radius: 999px; font-family: 'Quicksand', sans-serif; font-weight: 700; cursor: pointer;
}
form.card button:hover { background: #256d69; }

footer.site-footer { background: var(--navy); color: #EAF3F2; padding: 28px 0; margin-top: 40px; font-size: 0.88rem; }
footer.site-footer a { color: var(--mustard); }
