/**
 * Omran Base Styles
 * Essential reset, accessibility, and base typography
 * Replaces what GeneratePress used to provide.
 */

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

/* ── Reset ── */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Images ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Forms ── */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

/* ── Accessibility ── */
.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100000;
}
.skip-link:focus {
  top: 6px;
}

/* ── Alignment classes (WordPress core expects these) ── */
.alignleft {
  float: left;
  margin-right: 1.5em;
}
.alignright {
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignwide,
.alignfull {
  max-width: none;
  width: 100%;
}

/* ── Basic list reset ── */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ── Links ── */
a {
  color: inherit;
  text-decoration: none;
}
