/**
 * Lunara Film — Base Reset & Scaffold
 *
 * Minimal CSS reset replacing the Blocksy parent base styles.
 * Loaded before lunara-style (style.css).
 *
 * @package Lunara_Film
 * @version 3.0.0
 */

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

/* Document defaults */
html {
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    scroll-behavior: smooth;
}

/* Body reset */
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading resets */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 700;
}

/* Paragraph and list resets */
p, ul, ol, dl, figure, blockquote, pre {
    margin-top: 0;
}

ul, ol {
    padding-left: 1.5em;
}

/* HTML5 semantic elements */
article, aside, details, figcaption, figure,
footer, header, main, nav, section, summary {
    display: block;
}

/* Link baseline */
a {
    color: inherit;
    text-decoration: none;
    text-decoration-skip-ink: auto;
}

/* Media */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.alignwide {
    max-width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
}

.alignfull {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

/* Form element font inheritance */
input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

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

/* Screen reader utility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
