/* Brand type baseline — applied site-wide via header.cfm so every page is on-brand
   by default: Bangers for headings, Archivo for body. Page CSS can still override. */

body {
    font-family: 'Archivo', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bangers', system-ui, cursive;
    font-weight: 400;          /* Bangers ships a single weight */
    letter-spacing: .5px;
}

/* Legal footer — fixed strip at the bottom-right, semi-transparent white. */
.legal {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 55;
    background: rgba(255, 255, 255, 0.6);   /* white at 60% */
    padding: 8px 16px;
    font-size: .8rem;                        /* small; Archivo inherited from body */
}
.legal ul {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.legal a {
    color: #00f;                             /* royal blue */
    font-weight: 700;                        /* bold */
    text-decoration: none;
}
.legal a:hover { text-decoration: underline; }

/* Tiny cookie-consent notice — sits over the footer corner until accepted. */
.consent {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 70;                                 /* above the legal bar */
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: min(560px, 100vw - 16px);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    font-size: .8rem;
    line-height: 1.25;
}
.consent p { margin: 0; }
.consent__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.consent__btn {                                  /* nav-badge style, smaller */
    font-family: 'Archivo', system-ui, sans-serif;
    font-weight: 800;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    text-decoration: none;
    color: #000;
    background: #ff0;
    border: 2px solid #000;
    padding: 3px 8px;
    cursor: pointer;
    white-space: nowrap;
}
.consent__x {
    flex: 0 0 auto;
    background: none;
    border: 0;
    padding: 0 2px;
    font-size: 1.2rem;
    line-height: 1;
    color: #000;
    cursor: pointer;
}
