/* =========================================================
   base.css — shared foundation (body, links, footer)
   Load AFTER tokens.css. Page-specific sheets layer on top.
   ========================================================= */

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.65;
    font-size: 1.05rem;
    margin: 0;
    padding: 0;
    background-color: #b8ecea;
}

/* ---- links (general) ---- */
a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    font-weight: 600;
    transition: color 0.2s ease;
}
a:hover { color: var(--link-hover); }

/* ---- shared marker / handwritten note ---- */
.marker-text {
    font-family: var(--font-hand);
    font-size: 1.25rem;
    line-height: 1.3;
}

/* ---- shared "back to the house" link ---- */
.back-home {
    text-align: center;
    margin-top: 2rem;
    font-family: var(--font-western);
}
.back-home a { color: var(--burnt); text-decoration: none; }
.back-home a:hover { color: var(--link-hover); }

/* ---- footer ---- */
footer {
    text-align: center;
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 3px dashed var(--border-pink);
    clear: both;
}
footer a { color: var(--burnt); }
