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

/* ===== HTML ===== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 17px;
  }
}

/* ===== BODY ===== */
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== BAŞLIKLAR ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-slate-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* ===== PARAGRAF ===== */
p {
  line-height: 1.7;
  color: var(--color-charcoal);
}

/* ===== LİNK ===== */
a {
  text-decoration: none;
  color: inherit;
}

/* ===== GÖRSELLER ===== */
img {
  max-width: 100%;
  display: block;
}

/* ===== LİSTE ===== */
ul, ol {
  list-style: none;
}

/* ===== LAYOUT YARDIMCILARI ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.section {
  padding: var(--space-2xl) 0;
}
