/* site.css — suleymanfelek.com ana sayfa + GapJam sayfaları için ortak stil.
   Beyaz / Apple tarzı: sistem fontu, bol boşluk, yumuşak gölge, squircle ikonlar.
   NOT: MotoVolume alt sayfaları /styles.css kullanır (koyu tema) — ona dokunulmadı. */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;     /* Apple'ın açık gri zemini */
  --text: #1d1d1f;        /* Apple koyu metin */
  --text-muted: #6e6e73;  /* ikincil gri */
  --accent: #0071e3;      /* Apple mavi (linkler) */
  --line: #e5e5ea;        /* ince ayraç */
  --radius-card: 20px;
  --radius-icon: 22.5%;   /* iOS squircle yaklaşımı */
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 96px 0 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.hero .lead {
  font-size: 21px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Bölüm başlığı ──────────────────────────────────────────────────── */
.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 56px 0 24px;
}

/* ── Uygulama kartları ──────────────────────────────────────────────── */
.apps { display: grid; gap: 16px; }

.app-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--text);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.app-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.app-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-icon);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background-size: cover;
}
.app-meta { flex: 1; min-width: 0; }
.app-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}
.app-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.app-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.app-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34c759; /* Apple yeşil = canlı */
}
.app-status.soon .dot { background: #ff9f0a; } /* turuncu = yakında */
.app-chevron { color: var(--text-muted); font-size: 22px; flex-shrink: 0; }

/* ── İletişim + footer ──────────────────────────────────────────────── */
.contact { margin: 8px 0 0; color: var(--text-muted); }
.contact a { font-weight: 500; }

footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 32px 0 56px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Mobil ──────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .hero { padding: 64px 0 40px; }
  .hero h1 { font-size: 40px; }
  .hero .lead { font-size: 18px; }
  .app-icon { width: 64px; height: 64px; }
  .app-card { padding: 18px; gap: 16px; }
}

/* ── Legal/içerik sayfaları (GapJam privacy/terms vb.) için ─────────── */
.doc { padding: 56px 0 0; }
.doc .back-link { font-size: 15px; font-weight: 500; }
.doc h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin: 24px 0 4px; }
.doc .updated { color: var(--text-muted); font-size: 14px; margin: 0 0 32px; }
.doc h2 { font-size: 20px; font-weight: 600; margin: 36px 0 8px; }
.doc p, .doc li { font-size: 16px; color: #333336; }
.doc a { font-weight: 500; }
.doc hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
