/* ============================================
   DONGINBI - CSS Reset
   Modern CSS Reset with sensible defaults
   ============================================ */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
    line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Remove default anchor styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

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

/* Button reset */
button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Form element reset */
input,
textarea,
select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Add focus outline for keyboard users */
:focus-visible {
    outline: 2px solid var(--color-ginseng, #8B2942);
    outline-offset: 2px;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Quote reset */
blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

/* Strong and emphasis */
strong,
b {
    font-weight: var(--weight-bold, 700);
}

em,
i {
    font-style: italic;
}

/* Code and pre */
code,
pre,
kbd,
samp {
    font-family: var(--font-mono, monospace);
    font-size: 0.9em;
}

/* HR reset */
hr {
    border: none;
    height: 1px;
    background: currentColor;
    opacity: 0.2;
}

/* Selection styling */
::selection {
    background-color: var(--color-ginseng, #8B2942);
    color: var(--color-white, #FFFFFF);
}

/* Placeholder styling */
::placeholder {
    color: var(--color-gray-light, #9A9A9A);
    opacity: 1;
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream, #F8F5F0);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-light, #9A9A9A);
    border-radius: var(--radius-full, 9999px);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray, #6B6B6B);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gray-light, #9A9A9A) var(--color-cream, #F8F5F0);
}