/* ==========================================================================
   Sinop Süleymaniye Yurdu — Ana Stil Dosyası
   --------------------------------------------------------------------------
   Renk / yazı tipi / boşluk gibi tüm tema ayarları aşağıdaki :root
   bloğundadır. Kurumsal renkleri değiştirmek için SADECE oradaki
   değerleri güncellemeniz yeterlidir.
   ========================================================================== */

/* ---------- 1. TEMA DEĞİŞKENLERİ (buradan özelleştirin) ---------- */
:root {
  /* Kurumsal ana renk (koyu deniz yeşili / teal) */
  --brand-900: #082a31;
  --brand-800: #0d3b45;
  --brand-700: #114d5a;
  --brand-600: #16626f;
  --brand-500: #1d7d8c;
  --brand-100: #e3f1f3;

  /* Vurgu rengi (altın sarısı) */
  --gold-600: #a9861c;
  --gold-500: #c9a227;
  --gold-400: #e2bd4a;
  --gold-100: #fbf3d9;

  /* Nötr renkler */
  --ink: #12202a;
  --ink-soft: #33485a;
  --muted: #64798a;
  --line: #e2e9ee;
  --line-soft: #eef3f6;
  --surface: #ffffff;
  --surface-2: #f5f9fb;
  --surface-3: #eaf2f5;

  /* Durum renkleri */
  --success: #1f8a53;
  --whatsapp: #25d366;

  /* Tipografi */
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  /* Ölçek */
  --container: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Gölgeler */
  --shadow-sm: 0 1px 2px rgba(18, 32, 42, .06), 0 1px 3px rgba(18, 32, 42, .05);
  --shadow: 0 6px 18px rgba(18, 32, 42, .08);
  --shadow-lg: 0 18px 44px rgba(18, 32, 42, .14);

  /* Sabit üst menü yüksekliği (anchor kaydırmalarında kullanılır) */
  --header-h: 76px;
}

/* ---------- 2. TEMEL SIFIRLAMA ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Kapalı mobil menü ekranın sağında durur; 'clip' yatay kaydırmayı engeller.
     'hidden' yerine 'clip' kullanılır çünkü sticky menüyü bozmaz. */
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--surface);
  overflow-x: clip;
}

img, svg, video { max-width: 100%; display: block; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-500); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 1.3rem + 3.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. YERLEŞİM YARDIMCILARI ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--surface-2); }
.section--deep { background: var(--brand-900); color: #cfe1e5; }
.section--deep h2, .section--deep h3 { color: #fff; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 52px);
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-100);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  margin-bottom: 16px;
}
.section--deep .eyebrow { color: var(--gold-400); background: rgba(226, 189, 74, .12); }

.lead { font-size: 1.06rem; color: var(--muted); }
.section--deep .lead { color: #a9c4ca; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 4. BUTONLAR ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--brand-700); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--brand-600); color: #fff; }

.btn--gold { background: var(--gold-500); color: var(--brand-900); }
.btn--gold:hover { background: var(--gold-400); color: var(--brand-900); }

.btn--ghost { background: transparent; color: var(--brand-700); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface-2); color: var(--brand-600); border-color: var(--brand-500); }

.btn--light { background: #fff; color: var(--brand-800); }
.btn--light:hover { color: var(--brand-700); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn--wa { background: var(--whatsapp); color: #04361a; }
.btn--wa:hover { background: #3ddb78; color: #04361a; }

.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--block { width: 100%; }

/* ---------- 5. ÜST BİLGİ ŞERİDİ ---------- */
.topbar {
  background: var(--brand-900);
  color: #b9d2d7;
  font-size: .84rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__list a, .topbar__item { color: #b9d2d7; display: inline-flex; align-items: center; gap: 7px; }
.topbar__list a:hover { color: var(--gold-400); }
.topbar svg { width: 15px; height: 15px; flex: none; opacity: .85; }
.topbar__social { display: flex; gap: 6px; }
.topbar__social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.topbar__social a:hover { background: var(--gold-500); color: var(--brand-900); }
.topbar__social svg { width: 14px; height: 14px; opacity: 1; }

/* ---------- 6. ÜST MENÜ ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: var(--header-h);
}

/* 1100px altında logo alt yazısını gizleyip menüye yer aç */
@media (min-width: 901px) and (max-width: 1120px) {
  .nav a { padding: 10px 9px; font-size: .88rem; }
  .logo__title { font-size: .9rem; }
  .logo__mark { width: 38px; height: 38px; }
}

.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); flex: none; }
.logo__mark { width: 44px; height: 44px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .98rem;
  color: var(--brand-800);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo__sub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .93rem;
  white-space: nowrap;
  position: relative;
}
.nav a:hover { color: var(--brand-600); background: var(--surface-2); }
.nav a.is-active { color: var(--brand-700); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Menü açıkken kapatma düğmesi panelin ÜSTÜNDE kalmalı (nav z-index: 99) */
  position: relative;
  z-index: 100;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--brand-800);
  border-radius: 2px;
  position: relative;
  transition: background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--brand-800);
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 42, 49, .5);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 98;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 55%, var(--brand-600) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.svg");
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px; top: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.28), transparent 68%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 7vw, 104px) 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(226,189,74,.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(226,189,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,189,74,0); }
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero__text { color: #c8dee2; font-size: 1.08rem; max-width: 54ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero__points li { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: #cfe4e8; font-weight: 600; }
.hero__points svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.14);
}
.hero__card {
  position: absolute;
  left: -22px; bottom: -26px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero__card svg { width: 38px; height: 38px; color: var(--brand-600); flex: none; }
.hero__card strong { display: block; font-size: 1.05rem; color: var(--brand-800); }
.hero__card span { font-size: .82rem; color: var(--muted); }

/* ---------- 8. DUYURU ŞERİDİ ---------- */
.notice {
  background: var(--gold-100);
  border-block: 1px solid #f0e2b6;
}
.notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  text-align: center;
}
.notice__tag {
  background: var(--gold-500);
  color: var(--brand-900);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  flex: none;
}
.notice p { color: #6b5510; font-weight: 600; margin: 0; }

/* ---------- 9. İSTATİSTİK KARTLARI ---------- */
.stats { margin-top: -46px; position: relative; z-index: 3; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat { background: #fff; padding: 30px 22px; text-align: center; }
.stat__icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-600);
}
.stat__icon svg { width: 22px; height: 22px; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem);
  font-weight: 800;
  color: var(--brand-800);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__label { font-size: .88rem; color: var(--muted); margin-top: 8px; font-weight: 600; }

/* ---------- 10. HAKKIMIZDA ---------- */
.about__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about__media .about__img-2 {
  position: absolute;
  right: -28px; bottom: -34px;
  width: 52%;
  border: 7px solid #fff;
  border-radius: var(--radius);
}
.about__badge {
  position: absolute;
  left: -20px; top: 26px;
  background: var(--brand-800);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge strong { display: block; font-size: 1.7rem; font-family: var(--font-display); line-height: 1; }
.about__badge span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-400); }

.checklist { display: grid; gap: 14px; margin: 26px 0 30px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--brand-500); flex: none; margin-top: 2px; }
.checklist strong { display: block; color: var(--ink); font-size: .98rem; }
.checklist span { font-size: .92rem; color: var(--muted); }

/* ---------- 11. ODALAR ---------- */
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.room-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-3); }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(8,42,49,.86);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.room-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: 8px; }
.room-card__body > p { font-size: .93rem; color: var(--muted); }
.room-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.room-card__specs li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-100);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
}
.room-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.room-card__price { font-size: .84rem; color: var(--muted); }
.room-card__price strong {
  display: block;
  font-size: 1.02rem;
  color: var(--brand-800);
  font-family: var(--font-display);
  white-space: nowrap;
}

/* ---------- 12. İMKANLAR ---------- */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.feature__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
  margin-bottom: 16px;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- 13. GALERİ ---------- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}
.gallery-filter button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s ease;
}
.gallery-filter button:hover { border-color: var(--brand-500); color: var(--brand-600); }
.gallery-filter button.is-active { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
  border: 0;
  padding: 0;
  display: block;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,42,49,.75), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  text-align: left;
  transform: translateY(8px);
  opacity: 0;
  transition: all .3s ease;
}
.gallery__item:hover .gallery__cap { transform: none; opacity: 1; }
.gallery__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(6, 25, 30, .93);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  /* Dokunmatikte kaydırmanın sayfaya/tarayıcıya taşmasını engeller.
     Bu olmadan sağa kaydırma Android Chrome'da "geri" hareketini tetikler. */
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(1000px, 92vw); max-height: 78vh; border-radius: var(--radius); }
.lightbox__cap { color: #cfe1e5; text-align: center; margin-top: 14px; font-size: .92rem; }
.lightbox__btn {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- 14. YEMEKHANE / AKTİVİTE ŞERİDİ ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.split__thumbs img { border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit: cover; }

.menu-day {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-day:last-child { border-bottom: 0; }
.menu-day dt { font-weight: 700; color: var(--brand-700); font-size: .92rem; }
.menu-day dd { margin: 0; font-size: .93rem; color: var(--muted); }

/* ---------- 15. YORUMLAR ---------- */
.testimonials { position: relative; }
.tst-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.tst-track::-webkit-scrollbar { display: none; }
.tst {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.tst__stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 14px; }
.tst__stars svg { width: 17px; height: 17px; }
.tst__quote { font-size: .97rem; color: var(--ink-soft); flex: 1; }
.tst__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tst__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  flex: none;
}
.tst__who strong { display: block; color: var(--ink); font-size: .95rem; }
.tst__who span { font-size: .84rem; color: var(--muted); }

.slider-nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.slider-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-700);
  display: grid; place-items: center;
  transition: all .2s ease;
}
.slider-nav button:hover { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }
.slider-nav svg { width: 18px; height: 18px; }

/* ---------- 16. KAYIT / EVRAKLAR ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  position: relative;
  padding-left: 62px;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 4px; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }

.doc-list { display: grid; gap: 10px; }
.doc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.doc-list svg { width: 19px; height: 19px; color: var(--brand-500); flex: none; }

/* ---------- 17. FORMLAR ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.field label .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(29,125,140,.14);
}
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 3px; }
.field--check label { font-weight: 500; font-size: .86rem; color: var(--muted); line-height: 1.55; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #e7f6ee; color: #14653b; border: 1px solid #b9e3cd; }

/* ---------- 18. SSS ---------- */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item.is-open { border-color: var(--brand-500); box-shadow: var(--shadow); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: 0;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq__q:hover { color: var(--brand-600); }
.faq__icon {
  width: 28px; height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  display: grid; place-items: center;
  transition: transform .3s ease, background .2s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--brand-700); color: #fff; }
.faq__icon svg { width: 15px; height: 15px; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a-inner { padding: 0 22px 20px; font-size: .95rem; color: var(--muted); }

/* ---------- 19. İLETİŞİM ---------- */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-of-type { border-bottom: 0; }
.contact-item__icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: var(--radius-sm);
  background: var(--brand-100);
  color: var(--brand-700);
  display: grid; place-items: center;
}
.contact-item__icon svg { width: 21px; height: 21px; }
.contact-item h3 { font-size: .95rem; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: .94rem; color: var(--muted); margin: 0; display: block; }
.contact-item a:hover { color: var(--brand-600); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-3);
  aspect-ratio: 16 / 9;
  margin-top: 26px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  padding: 20px;
  background: repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 12px, var(--surface-3) 12px, var(--surface-3) 24px);
}

/* ---------- 20. BAĞIŞ ÇAĞRISI ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--brand-900), var(--brand-700));
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -120px; bottom: -180px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.25), transparent 70%);
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 32px;
  align-items: center;
  padding: clamp(44px, 5vw, 72px) 0;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #b8d3d8; margin: 0; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; }

.iban-box {
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.iban-box span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400); display: block; }
.iban-box strong { font-size: 1rem; letter-spacing: .04em; color: #fff; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.copy-btn {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: .84rem;
  font-weight: 600;
}
.copy-btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--brand-900); }

/* ---------- 21. ALT BİLGİ ---------- */
.footer { background: var(--brand-900); color: #9fbfc6; padding: clamp(48px, 6vw, 72px) 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer h4 {
  color: #fff;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.footer p { font-size: .92rem; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: #9fbfc6; font-size: .93rem; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a:hover { color: var(--gold-400); }
.footer__links a::before { content: "›"; color: var(--gold-500); }
.footer .logo__title { color: #fff; }
.footer .logo__sub { color: var(--gold-400); }
.footer__contact { display: grid; gap: 12px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-500); flex: none; margin-top: 4px; }
.footer__contact a { color: #9fbfc6; }
.footer__contact a:hover { color: var(--gold-400); }

.footer__social { display: flex; gap: 9px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #cfe1e5;
  display: grid; place-items: center;
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--gold-500); color: var(--brand-900); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .86rem;
}
.footer__bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bottom a { color: #9fbfc6; }
.footer__bottom a:hover { color: var(--gold-400); }

/* ---------- 22. YÜZEN BUTONLAR ---------- */
.fab-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa svg { width: 28px; height: 28px; }

.to-top {
  position: fixed;
  right: 20px; bottom: 86px;
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-700);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- 23. ÇEREZ BANDI ---------- */
.cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 150;
  max-width: 560px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie h4 { font-size: 1rem; margin-bottom: 6px; }
.cookie p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- 24. İÇ SAYFA BAŞLIĞI (kvkk.html vb.) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--brand-900), var(--brand-700));
  color: #fff;
  padding: clamp(46px, 6vw, 78px) 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #b8d3d8; margin: 0; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: .86rem; color: #9fbfc6; margin-top: 16px; }
.breadcrumb a { color: var(--gold-400); }

.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: 1.4rem; margin-top: 2em; }
.prose h3 { font-size: 1.1rem; margin-top: 1.6em; }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .5em; }
.prose ol { list-style: decimal; padding-left: 1.3em; margin-bottom: 1rem; }
.prose ol li { margin-bottom: .5em; }

/* ---------- 25. GİRİŞ ANİMASYONLARI ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 26. DUYARLI (RESPONSIVE) DÜZEN ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 560px; }
  .hero__card { left: 0; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 99;
    width: min(320px, 84vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-left: 1px solid var(--line);
    padding: 84px 18px calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav a {
    padding: 14px;
    font-size: 1rem;
    min-height: 48px;            /* rahat dokunma hedefi */
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { color: var(--brand-700); background: var(--brand-100); }
  .nav-toggle { display: grid; }
  .header__actions .btn--desktop { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .about__badge { left: 12px; }
  .about__media .about__img-2 { right: 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== MOBİL (≤720px) ===================== */
@media (max-width: 720px) {
  :root { --header-h: 62px; }

  /* Dokunmada mavi parlama yerine yumuşak vurgu */
  a, button, input, select, textarea, .gallery__item {
    -webkit-tap-highlight-color: rgba(29, 125, 140, .15);
  }

  /* --- Üst bilgi şeridi: tek satır, kompakt --- */
  .topbar { font-size: .82rem; }
  .topbar__inner { justify-content: center; min-height: 40px; }
  .topbar__list { gap: 14px; justify-content: center; }
  .topbar__hide-sm { display: none; }
  .topbar__social { display: none; }   /* WhatsApp için yüzen buton zaten var */
  .topbar__list a { padding: 9px 4px; }  /* dokunma alanını büyüt */

  /* --- Üst menü: logo daralabilsin, hamburger asla taşmasın --- */
  .header__inner { gap: 10px; }
  .logo { flex: 1 1 auto; min-width: 0; gap: 10px; }
  .logo__mark { width: 36px; height: 36px; }
  .logo__text { min-width: 0; }
  .logo__title {
    font-size: .88rem;
    white-space: normal;           /* dar ekranda sarabilsin */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.15;
  }
  .logo__sub { font-size: .62rem; letter-spacing: .12em; }
  .header__actions { flex: none; }  /* hamburger her zaman görünür kalır */

  /* --- Bölüm boşluklarını sıkılaştır (sayfa çok uzamasın) --- */
  .section { padding: 46px 0; }
  .section--tight { padding: 32px 0; }
  .section-head { margin-bottom: 28px; }
  .container { padding-inline: 16px; }

  /* --- Butonlar: en az 46px dokunma yüksekliği --- */
  .btn { min-height: 46px; padding: 13px 20px; }
  .btn--sm { min-height: 44px; padding: 11px 18px; }

  /* Hero'da butonlar tam genişlik — tek elle kolay erişim */
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .hero__points { gap: 8px 18px; }
  .hero__points li { font-size: .88rem; }
  .hero__card { position: static; margin-top: 16px; max-width: none; }

  /* --- Tek sütuna in --- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .menu-day { grid-template-columns: 1fr; gap: 4px; }

  /* --- İstatistikler --- */
  .stats { margin-top: -24px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 12px; }

  /* --- Hakkımızda görselleri --- */
  .about__media .about__img-2 { position: static; width: 100%; margin-top: 14px; border-width: 0; }
  .about__badge { top: 12px; }

  /* --- Duyuru şeridi --- */
  .notice__inner { padding: 14px 0; gap: 10px; }

  /* --- Galeri --- */
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Filtre düğmeleri 3 satıra sarmak yerine yatay kaysın */
  .gallery-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-inline: -16px;
    padding: 2px 16px 10px;
  }
  .gallery-filter::-webkit-scrollbar { display: none; }
  .gallery-filter button { flex: none; min-height: 44px; }
  /* Dokunmatikte :hover olmadığı için başlıklar hep görünsün */
  .gallery__item::after { opacity: 1; }
  .gallery__cap { opacity: 1; transform: none; font-size: .8rem; }

  .lightbox { padding: 12px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: max(14px, env(safe-area-inset-top)); right: 14px; }
  .lightbox__img { max-height: 68vh; }

  /* --- Yorum kartları ekrana sığsın --- */
  .tst-track { grid-auto-columns: minmax(min(320px, 84vw), 1fr); gap: 14px; }
  .tst { padding: 22px 20px; }

  /* --- Oda kartları --- */
  .room-card__specs li { font-size: .82rem; padding: 6px 12px; }

  /* --- Kayıt adımları --- */
  .step { padding-left: 56px; }

  /* --- Yüzen butonlar: çentikli/ev göstergeli telefonlarda güvenli alan --- */
  .fab-wa {
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  /* --- Çerez bandı: ekranı kaplamasın --- */
  .cookie {
    left: 10px; right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 16px;
    border-radius: var(--radius);
  }
  .cookie h4 { font-size: .95rem; margin-bottom: 4px; }
  .cookie p { font-size: .82rem; line-height: 1.5; margin-bottom: 12px; }
  .cookie__actions { flex-wrap: nowrap; }
  .cookie__actions .btn { flex: 1; min-height: 44px; }

  /* --- Alt bilgi ve iletişim: parmakla rahat dokunulabilir bağlantılar --- */
  .footer__links { gap: 2px; }
  .footer__links a { min-height: 44px; display: flex; align-items: center; gap: 8px; }
  .footer__contact li { padding: 6px 0; }
  .footer__contact a { min-height: 40px; display: flex; align-items: center; }
  .footer__bottom nav { gap: 6px 20px; }
  .footer__bottom nav a { min-height: 40px; display: inline-flex; align-items: center; }
  .footer__social a { width: 44px; height: 44px; }
  .contact-item a { min-height: 40px; display: flex; align-items: center; }
  .copy-btn { min-height: 44px; }

  /* --- İç sayfalar --- */
  .page-hero { padding: 38px 0; }
  .prose h2 { font-size: 1.25rem; }
}

/* --- Çok dar ekranlar (≤380px): iPhone SE vb. --- */
@media (max-width: 380px) {
  .logo__sub { display: none; }         /* menüye yer aç */
  .logo__title { font-size: .84rem; -webkit-line-clamp: 2; }
  .logo__mark { width: 32px; height: 32px; }
  .container { padding-inline: 14px; }
  .stats__grid { grid-template-columns: 1fr; }
  .notice__inner { flex-direction: column; }
  .iban-box { flex-direction: column; align-items: stretch; text-align: center; }
  .iban-box strong { font-size: .86rem; word-break: break-all; }
  .copy-btn { min-height: 44px; }
  .slider-nav button { width: 48px; height: 48px; }
}

/* --- iOS: form alanına dokununca sayfanın yakınlaşmasını (zoom) önle ---
   Safari, yazı boyutu 16px'in altındaki alanlara odaklanınca sayfayı
   otomatik büyütür. 16px bunu engeller. --- */
@media (max-width: 900px) {
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
  }
  .field textarea { min-height: 120px; }
  .field--check input[type="checkbox"] {
    width: 22px; height: 22px;
    min-height: 0;
    flex: none;
  }
  .field--check label { font-size: .88rem; }
}

/* --- Yatay (landscape) modda kısa ekranlar --- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 480px) {
  .nav { padding-top: 68px; }
  .hero__inner { padding: 32px 0; }
  .cookie { max-height: 70vh; overflow-y: auto; }
}

/* ---------- 27. YAZDIRMA ---------- */
@media print {
  .topbar, .header, .fab-wa, .to-top, .cookie, .gallery-filter, .hero__cta { display: none !important; }
  body { color: #000; }
  .section { padding: 20px 0; }
}

/* ==========================================================================
   SUNUCU TARAFLI FORM DOĞRULAMA (ASP.NET Core)
   ========================================================================== */
.field-error {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #c0392b;
  min-height: 1em;
}
.field-error:empty { display: none; }
.field--check .field-error--full { flex-basis: 100%; }

.field input.input-validation-error,
.field select.input-validation-error,
.field textarea.input-validation-error {
  border-color: #c0392b;
  background: #fdf3f2;
}

.form-errors ul {
  margin: 0 0 18px;
  padding: 12px 16px 12px 32px;
  list-style: disc;
  font-size: .86rem;
  font-weight: 600;
  color: #8e2a1e;
  background: #fdf3f2;
  border: 1px solid #f0c6c0;
  border-radius: 10px;
}
.form-errors ul:empty,
.form-errors ul li[style*="display:none"] { display: none; }
