/**
 * KurumsalScript - Reset & Normalizasyon
 */

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

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

body {
    font-family: var(--font-birincil);
    font-size: var(--font-base);
    line-height: var(--line-height-normal);
    color: var(--metin-birincil);
    background-color: var(--arkaplan-birincil);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, svg, canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    border-style: none;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    cursor: pointer;
    border: none;
    background: none;
}

button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

input:focus, textarea:focus, select:focus, button:focus {
    outline: 2px solid rgba(var(--renk-birincil-rgb), 0.4);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-baslik);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-siki);
    color: var(--metin-birincil);
}

p {
    color: var(--metin-ikincil);
    line-height: var(--line-height-gevşek);
}

strong, b {
    font-weight: var(--font-weight-semibold);
}

hr {
    border: 0;
    border-top: 1px solid var(--kenar-rengi);
    height: 0;
}

::-moz-selection { background: rgba(var(--renk-birincil-rgb), .15); color: var(--metin-birincil); }
::selection      { background: rgba(var(--renk-birincil-rgb), .15); color: var(--metin-birincil); }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--arkaplan-ikincil); }
::-webkit-scrollbar-thumb { background: var(--renk-gri-300); border-radius: var(--kenar-radius-tam); }
::-webkit-scrollbar-thumb:hover { background: var(--renk-gri-400); }
