/* ==========================================================================
   Global styles — shared across every page
   ========================================================================== */

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Boxed container matching the 1200px content width of the existing site */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 15px;
}

/* Visible only to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* Skip link — hidden until focused */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    background-color: var(--color-maroon-dark);
    color: var(--color-white);
    font-size: 14px;
}

.skip-link:focus {
    top: 10px;
}

:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

/* Prevent background scrolling while the mobile menu is open */
body.nav-open {
    overflow: hidden;
}
