/* Temel reset + tipografi */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent2-text); text-decoration: none; }
a:hover { color: var(--forest); }

::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); margin: 0; }

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

button { font-family: var(--font-body); }

/* Buton görünümlü linkler ve düğmeler için ortak sıfırlama */
.dk-btn, .dk-link-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-head);
  background: none;
}

/* Ekran okuyucu için gizli etiket */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

/* Atlama bağlantısı: yalnızca klavye odağında görünür.
   Ekran okuyucu ve klavye kullanıcısı header'ın tamamını geçip içeriğe iner. */
.dk-skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 300;
  display: inline-flex; align-items: center; min-height: 44px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: var(--radius-row); padding: 0 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  transition: top .15s ease;
}
.dk-skip-link:focus {
  top: 12px; color: var(--accent-ink);
  outline: 2px solid var(--forest); outline-offset: 2px;
}
