/* ==========================================================================
   DELTA HARD RESET (Full Control Version)
   ========================================================================== */

/* 1. Box Model: Padding ve Border genişliği asla hesaplarını bozmasın */
*, *::before, *::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Mobil tıklama gölgesini kaldırır */
}

/* 2. Tüm Margin ve Padding'leri Sıfırla */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* 3. HTML & Body Ayarları */
html {
    line-height: 1; /* Satır aralığını senin belirlemen için sıfırladık */
    scroll-behavior: smooth;
    height: 100%;
}

body {
    line-height: 1.5; /* Kurumsal okunabilirlik için ideal başlangıç */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    overscroll-behavior: none; /* Premium uygulama hissi */
}

/* 4. HTML5 Elemanları */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 5. Liste ve Link Temizliği */
ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 6. Form ve Buton Sıfırlama (Kritik Bölge) */
button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    appearance: none; /* Tarayıcının kendi buton stilini siler */
    -webkit-appearance: none;
}

button {
    cursor: pointer;
}

/* 7. Görsel Elemanlar */
img, svg, video, canvas {
    display: block;
    max-width: 100%;
    height: auto;
}