/* ==========================
   Body, Page and Content
========================== */

:root {
    --content-padding: 30px;
    --h1-size-desktop: 34px;
    --h2-size-desktop: 30px;
    --h3-size-desktop: 28px;
    --h4-size-desktop: 24px;
    --h5-size-desktop: 22px;
    --h1-size-mobile: 30px;
    --h2-size-mobile: 28px;
    --h3-size-mobile: 26px;
    --h4-size-mobile: 24px;
    --h5-size-mobile: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    background: #000;
    color: #fff;
    text-decoration: none;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.page {
    margin: 0;
    padding: 0;
}

.content {
    padding: var(--content-padding);
}

@media (min-width: 992px) {
    .content h1{
        font-size: var(--h1-size-desktop);
    }
    .content h2{
        font-size: var(--h2-size-desktop);
    }
    .content h3{
        font-size: var(--h3-size-desktop);
    }
    .content h4{
        font-size: var(--h4-size-desktop);
    }
    .content h5{
        font-size: var(--h5-size-desktop);
    }
}
@media (max-width: 991px) {
    .content h1{
        font-size: var(--h1-size-mobile);
    }
    .content h2{
        font-size: var(--h2-size-mobile);
    }
    .content h3{
        font-size: var(--h3-size-mobile);
    }
    .content h4{
        font-size: var(--h4-size-mobile);
    }
    .content h5{
        font-size: var(--h5-size-mobile);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
