/* Davidson HR CRM — holding page: logo, background colour, one line. */
:root { --navy:#16233f; }

.crm-holding {
    position: fixed;
    inset: 0;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

.crm-holding-inner { max-width: 560px; }

.crm-logo { width: min(340px, 80vw); height: auto; margin: 0 auto 2rem; display: block; }

.crm-holding h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/* The heading is auto-focused on load (FocusOnNavigate) — hide the focus outline
   so it doesn't show a ring around the text, matching the default template behaviour. */
.crm-holding h1:focus,
.crm-holding h1:focus-visible {
    outline: none;
}
