/* =============================================
   RESET.CSS — Varsayılan CSS Sıfırlama
   Tarayıcı farklılıklarını ortadan kaldırır
   ============================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* --- Listeler --- */
ul, ol {
    list-style: none;
}

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

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

/* --- Formlar --- */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

button {
    cursor: pointer;
}

/* --- Tablo --- */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* --- Alıntı --- */
blockquote, q {
    quotes: none;
}

/* --- Medya --- */
audio, canvas, embed, iframe, object {
    display: block;
    vertical-align: middle;
}
