/*
 * SharkMovie - Base Styles & Reset
 */

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

body {
  font-family: var(--sm-font-body);
  background-color: var(--sm-bg);
  color: var(--sm-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--sm-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Tamaños configurables desde el Panel de Administración */
h1 { font-size: var(--sm-h1-size); }
h2 { font-size: var(--sm-h2-size); }
h3 { font-size: var(--sm-h3-size); }
h4 { font-size: var(--sm-h4-size); }
p  { font-size: var(--sm-p-size); }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* Texto solo para lectores de pantalla (usado por WP en paginación, etc.) */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
