/**
 * ==========================================================================
 * StabilityTest Theme - Main Styles
 * ==========================================================================
 *
 * Global theme foundation styles.
 *
 * Responsibilities:
 *
 * - Font imports
 * - CSS resets
 * - Global typography
 * - Body styling
 * - Links
 * - Images
 * - Accessibility helpers
 * - Shared utility styles
 *
 * This file should contain only site-wide styles that apply
 * across the entire theme.
 *
 * @package StabilityTest_Theme
 * @since 1.0.0
 * ==========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   StabilityTest Theme - Main Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    background: var(--stabilitytest-color-background);
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    min-height: 100vh;
    padding-top: 77px;

    display: flex;
    flex-direction: column;

    background-color: var(--stabilitytest-color-background);
    background-image:
        radial-gradient(
            ellipse 80vw 50vh at 20% 10%,
            var(--stabilitytest-background-glow) 0%,
            transparent 60%
        );
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100vw 100vh;

    color: var(--stabilitytest-color-text-muted);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea,
label {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

strong,
b {
    color: #ffffff;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
}

img {
    max-width: 100%;
    height: auto;
}

:where(.site-main :focus) {
    outline: none;
}

:where(.site-main :focus-visible) {
    outline-width: 2px;
    outline-style: solid;
    outline-offset: 4px;
}

:where(pre) {
    overflow-x: auto;
}

blockquote,
caption,
figcaption,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    text-wrap: pretty;
}

/* Main */

.site-main {
    flex: 1;
    width: 100%;
    max-width: var(--stabilitytest-container-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Shared Content */

.site-content-none {
    max-width: var(--stabilitytest-content-width);
    margin: 0 auto;
    padding: 72px 24px;
}

.site-content-none__message {
    color: var(--stabilitytest-color-text-subtle);
}

/* Shared Eyebrow */

.site-eyebrow {
    margin-bottom: 50px;
    color: var(--stabilitytest-color-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}