/* guclu.page — 60+ yaş kullanıcılar için erişilebilir tasarım sistemi
   Kurallar: sade sans-serif, en fazla 3 renk (zemin + metin + tek vurgu),
   yüksek kontrast (WCAG AA/AAA), KIRMIZI METİN YOK, düz zemin, cam/gölge kart yok,
   büyük kenarlıklı dolu butonlar (ikon + HER ZAMAN metin etiketi),
   merkez odaklı ferah düzen, hover'a bağlı kontrol yok, mikro-animasyon yok. */

:root {
  --bg: #fbfaf8;        /* düz, sıcak açık zemin (desen/gradient yok) */
  --panel: #f1efe9;     /* çok hafif ayrım zemini (yine düz) */
  --text: #191919;      /* metin — zemin üstünde ~15:1 (AAA) */
  --muted: #454545;     /* ikincil metin — ~8:1 (AAA) */
  --accent: #0b5f2b;    /* TEK vurgu: koyu yeşil — beyaz metinle ~7:1, zemin üstünde ~6:1 */
  --accent-ink: #094a22;
  --line: #cfccc4;      /* nötr kenarlık */
  --r: 8px;             /* tek yarıçap sistemi */
  --sans: system-ui, -apple-system, Arial, "Segoe UI", Tahoma, Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.7;
  padding-bottom: 92px;               /* sabit alt çubuk için */
}
img { max-width: 100%; display: block; }
a { color: var(--accent-ink); }

.wrap { width: min(820px, 100% - 36px); margin-inline: auto; }

/* Odak her zaman net (klavye erişimi) */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 4px solid var(--accent);
  outline-offset: 2px;
}

.meta { font-size: 17px; color: var(--muted); }
.eyebrow { font-size: 17px; font-weight: 700; color: var(--muted); }

/* ---------- Üst bar ---------- */
.util { border-bottom: 2px solid var(--line); background: var(--bg); }
.util .wrap { width: min(1200px, 100% - 36px); }   /* header tam genişlik → masaüstünde tek satır */
.util__row { display: flex; align-items: center; justify-content: space-between; gap: 14px 20px; padding: 14px 0; flex-wrap: wrap; }
.util__row--sub { justify-content: flex-start; gap: 12px 18px; border-top: 1px solid var(--line); padding: 12px 0; }
.hero__owner { margin-bottom: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; text-decoration: none; color: var(--text); }
.brand-logo { height: 48px; width: auto; display: block; }
.util__right { display: flex; align-items: center; gap: 14px 20px; flex-wrap: wrap; }
.tag {
  font-size: 16px; font-weight: 700; color: #191919; background: #ffe800;
  padding: 6px 12px; border-radius: var(--r);
}
.phone-top {
  font-size: clamp(22px, 4vw, 28px); font-weight: 800; text-decoration: none; color: var(--text);
  min-height: 44px; display: inline-flex; align-items: center;
}
.lang { display: flex; align-items: center; gap: 6px; }
.lang a {
  min-width: 48px; min-height: 48px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; text-decoration: none;
  color: var(--accent-ink); background: #fff; border: 2px solid var(--accent); border-radius: var(--r);
}
.lang a[aria-current="page"] { color: #fff; background: var(--accent); }

/* ---------- Hero (merkez odaklı, sade) ---------- */
.hero { padding: clamp(28px, 5vw, 52px) 0 clamp(20px, 3vw, 32px); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.hero__title {
  font-size: clamp(30px, 6vw, 46px); font-weight: 800; line-height: 1.2;
  letter-spacing: -0.01em; margin: 14px 0 16px;
}
.hero__title em { font-style: normal; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.hero__aside { border: 2px solid var(--line); border-radius: var(--r); padding: 20px; background: #fff; }
.price { font-size: clamp(38px, 8vw, 56px); font-weight: 800; line-height: 1.05; color: var(--text); }
.price small { font-size: 19px; font-weight: 600; color: var(--muted); }
.price-note { margin: 8px 0 0; }

/* ---------- Bölümler ---------- */
.section { padding-block: clamp(26px, 4vw, 44px); border-top: 2px solid var(--line); }
.section--tight { padding-block: clamp(20px, 3vw, 30px); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
h2.title { font-size: clamp(24px, 4vw, 32px); font-weight: 800; line-height: 1.2; margin: 0; }

/* ---------- Galeri ---------- */
.gallery-main { position: relative; background: #111; border-radius: var(--r); overflow: hidden; }
.gallery-img { width: 100%; height: auto; max-height: 72vh; object-fit: contain; background: #111; cursor: zoom-in; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border: 2px solid #fff; border-radius: var(--r);
  background: rgba(0,0,0,.72); color: #fff; font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gallery-prev { left: 12px; } .gallery-next { right: 12px; }
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 12px 0; }
.gallery-thumb { flex: 0 0 auto; width: 96px; height: 72px; object-fit: cover; border-radius: var(--r); border: 3px solid transparent; cursor: pointer; }
.gallery-thumb.is-active { border-color: var(--accent); }

/* ---------- Lightbox ---------- */
body.lb-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 94vw; max-height: 86vh; object-fit: contain; }
.lb-close, .lb-arrow {
  position: fixed; border: 2px solid #fff; background: rgba(0,0,0,.6); color: #fff; cursor: pointer;
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 16px; right: 16px; width: 56px; height: 56px; font-size: 26px; }
.lb-arrow { top: 50%; transform: translateY(-50%); width: 60px; height: 60px; font-size: 30px; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-counter { position: fixed; top: 22px; left: 50%; transform: translateX(-50%); font-size: 20px; font-weight: 800; color: #fff; }

/* ---------- Künye / spec ---------- */
.specs { display: grid; grid-template-columns: 1fr; border-top: 2px solid var(--text); margin: 0; }
@media (min-width: 620px) { .specs { grid-template-columns: 1fr 1fr; column-gap: 44px; } }
.spec { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); margin: 0; }
.spec__k { color: var(--muted); font-size: 18px; }
.spec__v { font-weight: 800; text-align: right; }

/* ---------- Açıklama ---------- */
.prose { max-width: 66ch; font-size: 20px; }
.prose p { margin: 0 0 1em; }
.prose p.lead { font-size: clamp(22px, 3.4vw, 26px); font-weight: 700; line-height: 1.45; }
.prose strong { font-weight: 800; }

/* Konum listesi */
.loc { columns: 2; column-gap: 40px; padding: 0; margin: 0; list-style: none; }
@media (max-width: 560px) { .loc { columns: 1; } }
.loc li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 18px; }

/* ---------- Butonlar (büyük, kenarlıklı, dolu, ikon + metin) ---------- */
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 700; text-decoration: none; cursor: pointer;
  border-radius: var(--r); border: 2px solid var(--accent); background: var(--accent); color: #fff;
}
.btn svg { width: 22px; height: 22px; flex: 0 0 auto; }
.btn--ghost { background: #fff; color: var(--accent-ink); }
.btn--sea { background: var(--accent); border-color: var(--accent); color: #fff; }
/* WhatsApp resmi marka rengi */
.btn--wa { background: #25D366; border-color: #1da851; color: #fff; }

/* deniz manzarası vurgusu */
.sea-badge { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--accent-ink); }
.sea-badge svg { width: 24px; height: 24px; }

/* durum rozeti (kırmızı DEĞİL — nötr koyu) */
.status-badge {
  display: inline-block; font-size: 18px; font-weight: 800; letter-spacing: 0.04em;
  color: #fff; background: var(--text); padding: 8px 16px; border-radius: var(--r); margin-bottom: 16px;
}
.is-inactive { opacity: 0.6; }

/* ---------- ilan2 (yakında) ---------- */
.coming { border: 2px solid var(--line); border-radius: var(--r); padding: clamp(22px, 4vw, 34px); background: #fff; display: grid; gap: 16px; }
.coming .idx { font-size: 17px; font-weight: 700; color: var(--muted); }

/* ---------- Sabit alt çubuk ---------- */
.dock { position: fixed; bottom: 0; inset-inline: 0; z-index: 50; background: var(--bg); border-top: 2px solid var(--line); }
.dock__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 0; }
.dock .btn { min-height: 50px; justify-content: center; }

/* ---------- Footer ---------- */
.foot { border-top: 2px solid var(--line); padding: 34px 0 20px; }
.foot__grid { display: flex; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; align-items: center; }
.backtop { font-size: 18px; font-weight: 700; text-decoration: underline; color: var(--accent-ink); min-height: 44px; display: inline-flex; align-items: center; }

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
