/* MetinYilmaz.com.tr — Minimal single stylesheet (2026) */

:root{
  --bg: #0f1115;
  --text: #e6e8ee;
  --muted: #aab3c5;
  --line: rgba(255,255,255,.14);
  --link: #5daed5;
  --linkHover: #8dc6e1;
  --max: 720px;
}

*{ box-sizing: border-box; }

html, body{ height:100%; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 20px 52px;
  text-align: left;
}

section{ margin: 28px 0 0; }
section:first-child{ margin-top: 0; }

h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--muted);
}

h3{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

p{
  margin: 0 0 12px;
  max-width: 70ch;
}

a{
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid rgba(93,174,213,.35);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}

a:hover{
  color: var(--linkHover);
  border-bottom-color: rgba(141,198,225,.55);
}

a:focus-visible{
  outline: 2px solid rgba(93,174,213,.7);
  outline-offset: 3px;
  border-bottom-color: transparent;
  border-radius: 4px;
}

ul{
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

li{ margin: 6px 0; }

.inline{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

footer{
  margin-top: 44px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

::selection{ background: var(--link); color: #fff; }
::-moz-selection{ background: var(--link); color: #fff; }

@media (max-width: 480px){
  main{ padding-top: 52px; }
  h2{ font-size: 16px; }
}
