/* Modern CSS Reset - Tüm tarayıcılar için temel normalizasyon */

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

/* Margin kaldırma */
body, h1, h2, h3, h4, h5, h6, p, 
figure, blockquote, dl, dd {
  margin: 0;
}

/* Body düzeni için temel kurallar */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

/* Liste stillerini kaldırma */
ul[class], ol[class] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Resimleri daha kolay özelleştirilebilir yapma */
img {
  max-width: 100%;
  display: block;
}

/* Formlar için varsayılan stiller */
input, button, textarea, select {
  font: inherit;
}

/* Köprüler için genel stiller */
a {
  text-decoration: none;
  color: inherit;
}

/* Animasyon tercihleri */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
