/* base.css */

/* PDF RULE: Archivo Black = Title */
h1, .font-title {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900; 
    letter-spacing: -0.02em; /* Tighten it up for impact */
}

/* PDF RULE: Archivo Narrow Bold = Subtitle */
h2, h3, .font-subtitle {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
}

/* PDF RULE: Archivo Narrow = Body */
body, p, input, textarea, .font-body {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

/* HTMX Transitions */
.htmx-swapping {
    opacity: 0;
    transition: opacity 200ms ease-out;
}
.htmx-settling {
    opacity: 1;
    transition: opacity 200ms ease-in;
}

/* base.css */
.pb-safe {
    padding-bottom: env(safe-area-inset-bottom);
}