/* ============================================================
   BASE — HTML element default'ları. Sadece token kullanır.
   Tasarım kararları: tokens.css. Component-spesifik stil burada
   YAZMA — assets/css/components/ altına git.
   ============================================================ */

html {
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
}

/* Başlıklar — rehber: weight 600+, letter-spacing açık (0.05em),
   genellikle uppercase (uppercase opsiyonel: .uppercase utility ile). */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-wide);
  color: var(--color-heading);
}

h1 { font-size: var(--text-hero); }     /* clamp 40 → 80px */
h2 { font-size: var(--text-h2); }       /* clamp 24 → 32px */
h3 { font-size: var(--text-h3); }       /* clamp 20 → 24px */
h4 { font-size: var(--text-xl); }       /* 20px */
h5 { font-size: var(--text-lg); }       /* 18px */
h6 {
  font-size: var(--text-sm);            /* 14px — eyebrow/label */
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

p {
  line-height: var(--leading-normal);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-accent);
}

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

small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

hr {
  border: 0;
  border-top: var(--border-thin);
  margin: var(--space-6) 0;
}

::selection {
  background: var(--color-heading);
  color: var(--color-bg);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

img {
  border-radius: 0;  /* rehber: görseller keskin (0px) */
}
