/* Reset CSS - NaturalGlow */

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

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg-page);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

/* Form Elemanları */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

/* Linkler */
a {
  color: inherit;
  text-decoration: none;
}

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

/* Medya Elemanları */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* Odak Durumları (Erişilebilirlik) */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}
