/* OZD Reset.css – hafif, modern tarayıcı sıfırlama  */

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

html:focus-within {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: #fff;
  color: #111;
}

/* Görseller ve medya elemanları */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form elemanları */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

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

/* Listeler */
ul[role="list"], ol[role="list"] {
  list-style: none;
}

/* Bağlantılar */
a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Başlıklar, paragraflar */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Odak görünürlüğü */
:focus-visible {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

/* Table normalization */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Form placeholder renk uyumu */
::placeholder {
  color: #888;
  opacity: 1;
}

/* Erişilebilir gizleme (honeypot, screen-reader-only) */
.hide, .hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
