
/* =========================
    PAGE BACKGROUND
    ========================= */

body::before,
body::after {
    position: fixed;
    top: 50%;

    width: 22rem;
    height: 70vh;

    background-image: url("../images/branding/logo/direblood_logo_241x512.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    opacity: 0.75;

    content: "";

    pointer-events: none;

    transform: translateY(-50%);

    z-index: -1;
}

body::before {
    left: 1rem;
}

body::after {
    right: 1rem;
}


/* =========================
    RESET
    ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    min-height: 100%;
}


body {
    min-height: 100vh;
    margin: 0;
    background: var(--page-bg);
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
}


/* =========================
    TYPOGRAPHY
    ========================= */
h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


a {
    color: var(--link);
}


a:hover {
    color: var(--link-hover);
}


/* =========================
    PAGE LAYOUT
    ========================= */
.site-main {
    width: 100%;
    min-height: calc(100dvh - 90px);
}


/* =========================
    ACCESSIBILITY
    ========================= */
:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}


.skip-link {
    position: absolute;
    top: -10rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: var(--surface);
    color: var(--text);
}


.skip-link:focus {
    top: 1rem;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}


/* =========================
    SITE HEADER
    ========================= */

.site-header {
    position: sticky;
    z-index: 3000;
    top: 0;
}


/* =========================
    FOOTER / TRADEMARK
    ========================= */
.site-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 29px;
    z-index: 100;
    border-top: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
}


.trademark {
    width: 100%;
    height: 99%;
}


.trademark .page-container {
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}


.trademark__text {
    margin: 0;
    text-align: center;
}


/* =========================
    REDUCED MOTION
    ========================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
