/* Nazan Sarıyer — Boğaz Kıyısı Balık Restoranı
   Yeni Revize Edilmiş Tasarım Dili:
   - Zemin: Tamamen aydınlık beyaz zemin.
   - Accent Rengi: Derin Marin Mavisi (#0d4b68) - Yat/Deniz esintili premium lüks renk.
   - Üst Header: Her zaman arkasında şık, yarı şeffaf buzlu beyaz bir katman (layer) ve alt çizgi ile okunabilirliği yüksek.
   - Sadece Hero: Şimdilik açıldığında sadece kahraman (hero) alanı görünür, diğer tüm alt bölümler gizlidir.
   - Ortadaki Cam Layer: Yazıların her zaman mükemmel okunabilmesi için ortada şık, yarı şeffaf buzlu bir beyaz cam katman oluşturulmuştur.
   - Marka Ortada: "Nazan Sarıyer" marka adı bu cam layer'ın içinde en tepede ve tam ortalı yer alır.
   - Sayfa Altına Dayalı Bilgiler: Adres ve WhatsApp bilgileri sayfanın en altına konumlandırılmış, gölgeli ve beyaz olarak tasarlanmıştır.
   - Mobil Tek Fotoğraf: Mobil cihazlarda sadece ilk dikey fotoğraf kolonu (data-col="0") tam ekran gösterilir; diğer iki kolon gizlenmiştir. Masaüstünde ise yan yana 3 dikey kolon pürüzsüzce açılır.
   ASLA GRİ RENK KULLANILMAMIŞTIR. */

:root {
  --bg: #ffffff;
  --bg-2: #ffffff;
  --bg-3: #ffffff;
  --bone: #111111; /* Kömür Siyahı */
  --bone-soft: #222222; /* Net Sıcak Siyah */
  --taupe: #5c6b73; /* Modern Deniz Mavisi Vizonu */
  --gold: #0d4b68; /* Derin Marin Mavisi */
  --gold-deep: #07253d; /* Koyu Marin Siyahı */
  --line: rgba(13, 75, 104, 0.18);
  --line-soft: rgba(17, 17, 17, 0.08);
  --panel: rgba(255, 255, 255, 0.95);
  --shadow-none: none;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 64px);

  --f-display: "Montserrat", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  font-family: var(--f-body);
  background-color: transparent; /* Sabit arka plan videosunun gorunmesi icin */
  color: var(--bone);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* Dikey scroll açık, yatay taşma engellendi */
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: #ffffff;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--bone);
  text-transform: uppercase;
}

.lead {
  color: var(--bone-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
}

.muted {
  color: var(--taupe);
}

/* ---------- Navbar (Üst Header) ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center; /* Marka ismini tam ortalıyoruz */
  padding: 20px var(--gut);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav.is-stuck {
  padding-block: 14px;
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.nav .brand {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--bone);
  transition: color 0.4s var(--ease);
  text-align: center;
}

.brand span {
  color: var(--gold);
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1)
    drop-shadow(0 2px 10px rgba(7, 37, 61, 0.45));
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}

.nav.is-stuck .brand-logo {
  height: 44px;
  filter: none;
}

/* Navbar linkleri şimdilik gizlidir */
.nav-links {
  display: none !important;
}

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--gold);
  --fg-btn: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--r-pill);
  background-color: var(--bg-btn);
  color: var(--fg-btn);
  border: 1px solid var(--bg-btn);
  cursor: pointer;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 75, 104, 0.22);
}

.btn .ic {
  width: 16px;
  height: 16px;
  flex: none;
}

.nav .btn {
  padding: 10px 24px;
  font-size: 12px;
}

/* ---------- Sabit (Parallax) Arka Plan Videosu ---------- */
/* Video viewport'a sabitlenir; sayfa kayarken o yerinde durur, dalgalar
   parallax gibi hero'dan altindaki bolume kadar devam eder. */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #07253d; /* Video yuklenene kadar koyu marin zemin */
}

.bg-video-el {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Yaziların okunmasi icin videoya cok hafif koyulastirma katmani */
.bg-video-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 37, 61, 0.28) 0%,
    rgba(7, 37, 61, 0.12) 40%,
    rgba(7, 37, 61, 0.32) 100%
  );
}

/* ---------- Hero (Tam ekran video, ortada marka) ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  width: 100%;
  overflow: hidden;
  background-color: transparent; /* Arkadaki sabit video gorunur */
}

/* Ortadaki Lüks Metin Wrapper (Kaba arka plan kutusu kaldırıldı, sadece sarmalayıcı) */
.hero-content {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 44%; /* Dikeyde kusursuz altın oran hizalama */
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 650px; /* Metinlerin rahat yayılması için genişletildi */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  pointer-events: none; /* Arkadaki slayt geçişlerini veya tıklamaları engellemez */
}

.hero-title {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0;
  pointer-events: auto;
}

.hero-logo {
  display: block;
  width: clamp(220px, 38vw, 360px);
  height: auto;
  /* Siyah SVG logoyu koyu video uzerinde net beyaza cevirir */
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.55));
}

.hero-tag {
  display: inline-block;
  margin: 0 auto;
  font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95); /* Net okunabilir beyaz */
  max-width: 44ch;
  line-height: 1.6;
  padding: 8px 20px; /* Sadece yazıyı kaplayacak şekilde daraltıldı */
  border-radius: var(--r-sm); /* Daha zarif yuvarlatılmış köşeler */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.03) 100%);
  background-size: 200% auto;
  -webkit-backdrop-filter: none; /* Fotoğrafların net görünmesi için blur kaldırıldı */
  backdrop-filter: none;
  border: none; /* Kutu hissini yok etmek için sınır çizgisi kaldırıldı */
  box-shadow: none; /* Kutu gölgesi kaldırıldı */
  animation: glass-shimmer 4s infinite linear;
  animation-delay: 0.8s; /* Şık asenkron parıltı akışı */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); /* Okunabilirliği artıran gölge */
  pointer-events: auto;
}

/* Sayfa Altına Sabitlenen Bilgiler ve Buton Grubu */
.hero-footer-info {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 90%;
  max-width: 800px;
  text-align: center;
}

/* Liquid Glass — video üzerinde duran rezervasyon butonu */
.hero-footer-info .btn-footer-reserve {
  position: relative;
  overflow: hidden;
  padding: 15px 38px;
  font-size: 13px;
  color: #ffffff;
  background-color: rgba(13, 75, 104, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 14px 34px rgba(7, 37, 61, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
    border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
/* Üstten geçen cam parıltısı */
.hero-footer-info .btn-footer-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}
.hero-footer-info .btn-footer-reserve > * {
  position: relative;
  z-index: 1;
}
.hero-footer-info .btn-footer-reserve:hover {
  transform: translateY(-2px);
  background-color: rgba(13, 75, 104, 0.46);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(7, 37, 61, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.hero-footer-info .info-item {
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff; /* Her zaman mükemmel görünmesi için saf beyaz */
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9); /* Güçlü lüks gölge */
  line-height: 1.4;
}

/* ============================================================
   TAM SAYFA — Scroll açık, tüm bölümler görünür ve stillenmiş.
   Tasarım dili korunur: beyaz zemin, marin mavisi #0d4b68,
   vizon #5c6b73, Montserrat (display) + Plus Jakarta (gövde).
   Bol nefes alan, ferah ve sakin ritim.
   ============================================================ */

/* Scroll reveal — JS .is-in ekler */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Bölüm ortak dikey ritmi */
.intro,
.featured,
.experience,
.gallery,
.faq,
.location,
.reserve {
  position: relative;
  padding-block: clamp(76px, 13vh, 150px);
  background-color: #ffffff;
}

/* Intro: ust kismi videodan beyaza yumusak gecis — video parallax gibi
   hero'dan bu bolumun icine kadar uzanir, sonra beyaza karisir. */
.intro {
  background-color: transparent;
  padding-top: clamp(140px, 24vh, 280px);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 28%,
    rgba(255, 255, 255, 0.92) 52%,
    #ffffff 70%
  );
}

/* İnce ayraç çizgi */
.divider {
  width: 64px;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.55;
  margin: 22px 0;
}
.divider.left {
  margin-inline: 0;
}
.divider.center {
  margin-inline: auto;
}

/* Bölüm başlığı bloğu */
.section-head {
  max-width: 660px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head .section-title {
  margin-top: 16px;
}
.section-head .lead {
  margin-top: 22px;
}
.intro-lead-wide {
  max-width: 56ch;
}

/* ---------- Hakkında (intro) ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.intro-aside .eyebrow {
  display: block;
}
.facts-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 4px;
}
.fact dt {
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.fact dd {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bone-soft);
  line-height: 1.55;
}
.intro-body .section-title {
  margin-bottom: 26px;
}
.intro-body .muted {
  margin-top: 20px;
}
@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }
}

/* ---------- Öne Çıkan Lezzetler ---------- */
.featured-list {
  margin-top: clamp(48px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 110px);
}
.taste {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.taste-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.taste-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
.taste:hover .taste-media img {
  transform: scale(1.05);
}
.taste-index {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.taste-name {
  font-family: var(--f-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 14px 0 18px;
  color: var(--bone);
}
.taste-text {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--bone-soft);
  max-width: 46ch;
}
.taste-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.taste-tag {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
@media (min-width: 880px) {
  .taste {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .taste:nth-child(even) .taste-media {
    order: 2;
  }
}

/* ---------- Deneyim / Atmosfer ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(16px, 2vw, 28px);
}
.exp-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.exp-body .section-title {
  margin: 16px 0 26px;
}
.exp-modes {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 32px;
}
.exp-mode {
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.exp-mode h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.exp-mode p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone-soft);
  max-width: 48ch;
}
@media (min-width: 900px) {
  .exp-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }
}

/* ---------- Galeri ---------- */
.gallery-head {
  max-width: 660px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.gallery-head .section-title {
  margin: 16px 0 22px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.5vw, 18px);
}
.tile {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
.tile:hover img {
  transform: scale(1.06);
}
.tile .cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(7, 37, 61, 0.9);
}
@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tile:nth-child(1),
  .tile:nth-child(8) {
    grid-column: span 2;
  }
  .tile:nth-child(1) img,
  .tile:nth-child(8) img {
    aspect-ratio: 16 / 10;
  }
}

/* ---------- Sık Sorulan Sorular ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 60px);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(13, 75, 104, 0.1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--bone);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-sign {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}
.faq-sign::before,
.faq-sign::after {
  content: "";
  position: absolute;
  background-color: var(--gold);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.faq-sign::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-sign::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-sign::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.faq-answer {
  padding: 0 24px 24px;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--bone-soft);
  max-width: 62ch;
}
.faq-aside {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
}
.faq-aside h3 {
  font-family: var(--f-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--bone);
  margin-bottom: 16px;
}
.faq-aside p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone-soft);
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .faq-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* ---------- Konum ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.loc-info .section-title {
  margin: 16px 0 30px;
}
.loc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}
.loc-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.loc-list .ic {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--gold);
  margin-top: 2px;
}
.loc-list strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.loc-list span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bone-soft);
  line-height: 1.5;
}
.loc-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.loc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.map-cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  background-color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  transition: background-color 0.4s var(--ease);
}
.map-cta .go {
  color: var(--gold);
  white-space: nowrap;
}
.map-cta:hover {
  background-color: #ffffff;
}
@media (min-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* ---------- Rezervasyon ---------- */
.reserve {
  text-align: center;
}
.reserve .wrap {
  max-width: 760px;
}
.reserve .eyebrow {
  display: inline-block;
}
.reserve .section-title {
  margin: 16px 0 22px;
}
.reserve p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone-soft);
  max-width: 52ch;
  margin: 0 auto 36px;
}
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn-ghost {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background-color: #ffffff;
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(54px, 8vw, 88px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
}
.footer .brand-logo {
  height: 48px;
  margin-bottom: 20px;
}
.footer-grid > div:first-child p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--taupe);
  max-width: 36ch;
}
.foot-col h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-col a,
.foot-col span {
  display: block;
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--bone-soft);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}
.foot-col a:hover {
  color: var(--gold);
}
.footer-base {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--taupe);
}
@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .footer-base {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Scroll ipucu — sade, çakışmaması için gizli tutuldu */
.scroll-cue {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background-color: var(--gold);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(13, 75, 104, 0.3);
  transition: width 0.4s var(--ease), background-color 0.3s var(--ease);
  white-space: nowrap;
  padding-left: 15px;
}

.wa-float .ic {
  width: 24px;
  height: 24px;
  flex: none;
}

.wa-float .label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  margin-left: 12px;
  transition: opacity 0.3s var(--ease);
}

.wa-float:hover {
  width: 180px;
  background-color: var(--gold-deep);
  color: #ffffff;
}

.wa-float:hover .label {
  opacity: 1;
}

/* ---------- Medya Sorguları ---------- */
@media (min-width: 960px) {
  /* Masaüstünde (Web'de) Yan Yana 3 Kolon Pürüzsüzce Açılır */
  .hero-stage {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-col {
    display: block !important;
  }
  
  .hero-col + .hero-col {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
  }
  
  .wa-float {
    right: 28px;
    bottom: 28px;
  }
  
  /* Masaüstünde adres bandı ve buton yerleşimi */
  .hero-footer-info {
    flex-direction: column;
    gap: 24px;
    bottom: 50px;
  }

  .footer-details {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
  
  .footer-details .info-item:not(:last-child)::after {
    content: "·";
    margin-left: 32px;
    color: rgba(255, 255, 255, 0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
  .hero-col .slide {
    transition: opacity 0.4s linear;
    transform: none;
  }
}

/* Shimmer Animasyonu */
@keyframes glass-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ---------- Mobil: buton yazı düzeni ---------- */
@media (max-width: 600px) {
  .btn {
    font-size: 12px;
    letter-spacing: 0.06em;
    gap: 9px;
    padding: 13px 24px;
    white-space: nowrap;
  }
  .btn .ic {
    width: 15px;
    height: 15px;
  }
  .hero-footer-info {
    width: 92%;
    bottom: 32px;
    gap: 16px;
  }
  .hero-footer-info .btn-footer-reserve {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 12.5px;
    letter-spacing: 0.05em;
  }
  .reserve-actions {
    width: 100%;
    flex-direction: column;
  }
  .reserve-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .btn {
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 12px 18px;
  }
  .hero-footer-info .btn-footer-reserve {
    font-size: 11.5px;
  }
}
