/* ============================================================
   Hiçbi' Yer — site stili
   Palet: krem zemin, toprak/kahve tonları (PDF arayüzünden)
   ============================================================ */
:root {
  --krem: #faf8f1;
  --krem-koyu: #f5f1e6;
  --kahve: #8b6435;
  --kahve-acik: #a87c4f;
  --kahve-koyu: #6f4e2a;
  --metin: #7a5c3e;
  --cizgi: rgba(139, 100, 53, .25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: #fff;
  color: var(--metin);
  font-size: 1.06rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--kahve);
  font-weight: 700;
}

a { color: var(--kahve); }
a:hover { color: var(--kahve-koyu); }

.bolum-baslik {
  text-align: center;
  padding: .9rem 1rem;
  background: var(--krem-koyu);
  color: var(--kahve);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 0;
}

.kucuk-metin { font-size: .95rem; }

/* ---------- navbar ---------- */
.site-nav {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
  min-height: 64px;
}
.site-nav .nav-link {
  color: var(--kahve);
  font-size: 1.08rem;
  padding-inline: .75rem;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--kahve-koyu); text-decoration: underline; text-underline-offset: 6px; }
.site-nav .navbar-toggler { border: 0; color: var(--kahve); }
.site-nav .navbar-toggler:focus { box-shadow: none; }
.site-nav .navbar-brand { padding-block: .25rem; }
.site-nav .navbar-brand img { height: 46px; width: auto; }

.mobil-menu { background: var(--krem); }
.mobil-menu-logo { height: 40px; width: auto; }
.mobil-menu .nav-link { color: var(--kahve); border-bottom: 1px solid var(--cizgi); padding-block: .8rem; }
.ikon-link { font-size: 1.5rem; color: var(--kahve); }

main { padding-top: 64px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 46vh;
  max-height: 640px;
  height: 56vw;
  overflow: hidden;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero .hero-icerik {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(rgba(40, 25, 10, .18), rgba(40, 25, 10, .30));
  padding: 1rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
  text-align: center;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video iframe, .hero-video video { width: 100%; height: 100%; object-fit: cover; border: 0; }
/* YouTube/Vimeo iframe'i kırpmadan kaplasın diye 16:9'u taşırarak ortala */
.hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: 177.78vh; height: 56.25vw;
}

/* hero slider */
.hero-karusel, .hero-karusel .carousel-inner, .hero-karusel .carousel-item { height: 100%; }
.hero-karusel .carousel-item { position: absolute; inset: 0; }
.hero-karusel .carousel-item.active { position: relative; }
.hero-karusel .carousel-indicators { margin-bottom: .75rem; }
.hero-karusel .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, .65);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}
.hero-karusel .carousel-indicators .active { background: #fff; }
.hero-karusel .carousel-control-prev, .hero-karusel .carousel-control-next { width: 9%; opacity: .55; }
.hero-karusel .carousel-control-prev:hover, .hero-karusel .carousel-control-next:hover { opacity: .9; }

/* ---------- kart ve bölümler ---------- */
.zemin-krem { background: var(--krem); }
.zemin-krem-koyu { background: var(--krem-koyu); }

.deger-karti { text-align: center; padding: 1.5rem 1.25rem; height: 100%; }
.deger-karti .ikon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--kahve-acik);
  color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.deger-karti h3 { font-size: 1.2rem; }

.ozellik-karti { text-align: center; padding: 1.25rem 1rem; height: 100%; }
.ozellik-karti .ikon { font-size: 1.9rem; color: var(--kahve-acik); }
.ozellik-karti h3 { font-size: 1.15rem; margin-top: .4rem; }

.izgara-cizgili > div { border-bottom: 1px solid var(--cizgi); }
/* mobilde iki sütun: tek numaralı kartların sağında ayraç */
@media (max-width: 767.98px) {
  .izgara-cizgili > div:nth-child(odd) { border-right: 1px solid var(--cizgi); }
  .deger-karti, .ozellik-karti { padding-inline: .75rem; }
  .deger-karti .ikon { width: 48px; height: 48px; font-size: 1.25rem; }
  .deger-karti h3, .ozellik-karti h3 { font-size: 1.05rem; }
  .deger-karti p, .ozellik-karti p { font-size: .92rem; }
}
@media (min-width: 768px) {
  .izgara-cizgili > div { border-right: 1px solid var(--cizgi); }
  .izgara-cizgili > div:nth-child(3n) { border-right: 0; }
}

/* büyük görselli kartlar (Hiçbi' Yer sayfası) */
.foto-kart {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(80, 55, 25, .18);
}
.foto-kart img { width: 100%; aspect-ratio: 5 / 2; object-fit: cover; display: block; }
.foto-kart .carousel-indicators { margin-bottom: .5rem; }
.foto-kart .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .7);
}
.foto-kart .carousel-indicators .active { background: #fff; }
.foto-kart .baslik {
  position: absolute; left: 1.25rem; bottom: .9rem;
  color: #fff;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
  margin: 0;
}

/* yorumlar (Google) */
.yorum-karti {
  border: 1px solid var(--kahve-acik);
  border-radius: .5rem;
  background: #fff;
  padding: 1.35rem 1.25rem;
  height: 100%;
  display: flex; flex-direction: column;
}
.yorum-karti .yildizlar { color: var(--kahve-acik); letter-spacing: .2em; }
.yorum-karti p { flex-grow: 1; }
.yorum-karti .google-rozet {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--krem-koyu);
  color: var(--kahve);
  display: flex; align-items: center; justify-content: center;
}
.yorum-alt {
  display: flex; flex-wrap: wrap; gap: .25rem 1rem;
  justify-content: space-between; align-items: center;
  color: var(--kahve-acik);
  border-top: 1px solid var(--cizgi);
  padding-top: .6rem;
  margin-top: auto;
}
.yorum-alt a { text-decoration: none; }
.yorum-alt a:hover { text-decoration: underline; }

/* alan kartları */
.alan-karti {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  border-radius: .9rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(80, 55, 25, .15);
}
.alan-karti img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .4s; }
.alan-karti:hover img, .alan-karti:focus-visible img { transform: scale(1.04); }
.alan-karti:focus-visible { outline: 2px solid var(--kahve); outline-offset: 3px; }
.alan-karti .etiket {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, .82);
  color: var(--kahve);
  text-align: center;
  font-weight: 600;
  padding: .45rem .5rem;
}
.alan-karti .buyut {
  position: absolute; top: .6rem; right: .6rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: var(--kahve);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  opacity: 0; transition: opacity .25s;
}
.alan-karti:hover .buyut, .alan-karti:focus-visible .buyut { opacity: 1; }
@media (hover: none) { .alan-karti .buyut { opacity: 1; } }
.alan-rozet {
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: 2rem;
  padding: .45rem 1.1rem;
  display: inline-block;
  color: var(--kahve);
}

/* ruh şeridi — kesintisiz otomatik kayan görseller */
.ruh-serit {
  overflow: hidden;
  position: relative;
  /* kenarlarda yumuşak geçiş */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ruh-kayan {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ruh-kay var(--ruh-sure, 30s) linear infinite;
}
.ruh-serit:hover .ruh-kayan { animation-play-state: paused; }
@keyframes ruh-kay {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - .5rem)); }
}
.ruh-oge { margin: 0; flex: 0 0 auto; width: 220px; }
.ruh-oge img {
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 6px 18px rgba(80, 55, 25, .15);
}
.ruh-oge figcaption {
  text-align: center;
  color: var(--kahve);
  font-size: .95rem;
  padding-top: .5rem;
}
@media (max-width: 575.98px) { .ruh-oge { width: 150px; } }
@media (prefers-reduced-motion: reduce) {
  .ruh-kayan { animation: none; }
  .ruh-serit { overflow-x: auto; }
}

/* rezervasyon formu */
.rez-kutu {
  background: var(--krem-koyu);
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.rez-kutu .form-control, .rez-kutu .form-select,
.iletisim-form .form-control {
  border: 1px solid var(--kahve-acik);
  border-radius: .35rem;
  background: #fff;
  color: var(--metin);
  padding: .65rem .9rem;
  font-family: inherit;
}
.rez-kutu .form-control:focus, .rez-kutu .form-select:focus,
.iletisim-form .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(168, 124, 79, .2);
  border-color: var(--kahve);
}
.rez-kutu .form-label, .iletisim-form .form-label {
  color: var(--kahve);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .3rem;
}
.zorunlu { color: #b3502f; }
.btn-kahve {
  background: var(--kahve-acik);
  border: 0;
  color: #fff;
  padding: .7rem 2.2rem;
  border-radius: .35rem;
  letter-spacing: .06em;
}
.btn-kahve:hover { background: var(--kahve); color: #fff; }
.btn-cerceve {
  border: 1px solid var(--kahve-acik);
  color: var(--kahve);
  border-radius: .35rem;
  padding: .55rem 1.6rem;
}
.btn-cerceve:hover { background: var(--kahve-acik); color: #fff; }

/* manifesto şiiri — metin solda, ince uzun görsel yanında */
.siir-blok { align-items: stretch; }
.siir {
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}
.siir p { margin-bottom: .7rem; }
.siir p:last-child { margin-bottom: 0; }
.siir-foto {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(80, 55, 25, .16);
}
@media (max-width: 767.98px) {
  .siir-foto { max-height: 420px; }
}

/* avantaj listesi (ikişerli) */
.avantaj {
  display: flex; gap: .9rem;
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: .9rem;
  padding: 1.15rem 1.1rem;
}
.avantaj .ikon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--krem-koyu);
  color: var(--kahve-acik);
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.avantaj h4 { font-size: 1.1rem; margin-bottom: .25rem; }

/* üyelik kartları */
.uyelik-karti {
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(80, 55, 25, .08);
}
.uyelik-karti .sure {
  color: var(--kahve-acik);
  font-style: italic;
  margin-bottom: .75rem;
}

/* etkinlikler */
.etkinlik-karti {
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 18px rgba(80, 55, 25, .08);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
a.etkinlik-karti:hover, a.etkinlik-karti:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(80, 55, 25, .16);
  color: inherit;
}
.etkinlik-karti img { width: 100%; aspect-ratio: 5 / 2.4; object-fit: cover; }
.etkinlik-karti .kart-alt {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: auto; padding-top: .35rem;
}
.etkinlik-karti .fiyat { color: var(--kahve); font-weight: 700; }
.etkinlik-karti .devam { color: var(--kahve-acik); margin-left: auto; }

/* etkinlik detay sayfası */
.etkinlik-detay p { margin-bottom: 1rem; }
.etkinlik-kunye {
  background: var(--krem-koyu);
  border-radius: 1rem;
  padding: 1.5rem;
  position: sticky;
  top: 84px;
}
.etkinlik-kunye li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--cizgi);
}
.etkinlik-kunye li:last-child { border-bottom: 0; }
.etkinlik-kunye li i { color: var(--kahve-acik); font-size: 1.15rem; line-height: 1.4; }
.etkinlik-kunye .fiyat span { color: var(--kahve); font-weight: 700; font-size: 1.15rem; }
.etkinlik-karti .tarih-kutusu {
  background: var(--kahve-acik);
  color: #fff;
  border-radius: .6rem;
  text-align: center;
  padding: .4rem .8rem;
  line-height: 1.15;
  min-width: 64px;
}
.etkinlik-karti .tarih-kutusu .gun { font-size: 1.4rem; font-weight: 700; display: block; }

/* bülten kutusu */
.bulten-kutu {
  background: var(--krem-koyu);
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 960px;
  margin-inline: auto;
}
.bulten-kutu .form-control {
  border: 1px solid var(--kahve-acik);
  border-radius: .35rem;
  background: #fff;
  color: var(--metin);
  padding: .65rem .9rem;
  font-family: inherit;
}
.bulten-kutu .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(168, 124, 79, .2);
  border-color: var(--kahve);
}

/* menü ögeleri */
.menu-oge { margin-bottom: 2rem; }
.menu-oge .ikon { color: var(--kahve-acik); font-size: 1.4rem; margin-right: .5rem; }
.menu-oge h3 { font-size: 1.25rem; display: inline; }

/* iletişim */
.iletisim-kutu {
  background: var(--krem);
  border: 1px solid var(--cizgi);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  text-align: center;
}
.iletisim-kutu i { font-size: 1.8rem; color: var(--kahve-acik); }
.harita-cerceve { border-radius: 1rem; overflow: hidden; box-shadow: 0 6px 18px rgba(80, 55, 25, .12); }
.harita-cerceve iframe { width: 100%; height: 380px; border: 0; display: block; }

/* footer */
.site-footer { background: var(--krem-koyu); }
.footer-logo { max-height: 150px; max-width: 100%; }
.footer-iletisim a { text-decoration: none; }
.footer-iletisim a:hover { text-decoration: underline; }

.footer-baslik {
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.footer-menu li { margin-bottom: .5rem; }
.footer-menu a { text-decoration: none; }
.footer-menu a:hover { text-decoration: underline; }

/* alt bilgideki 4 büyük iletişim kısayolu */
.kisayol-kutu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  height: 100%;
  padding: 1.15rem .75rem;
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--metin);
  transition: transform .2s, box-shadow .2s;
}
.kisayol-kutu:hover, .kisayol-kutu:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(80, 55, 25, .14);
  color: var(--kahve);
}
.kisayol-kutu .ikon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--krem-koyu);
  color: var(--kahve);
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .2rem;
}
.kisayol-kutu .ikon.wa { background: #25d366; color: #fff; }
.kisayol-kutu .baslik { font-weight: 700; color: var(--kahve); }
.kisayol-kutu .deger { font-size: .88rem; line-height: 1.35; }

/* whatsapp butonu */
.wa-butonu {
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 1040;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}
.wa-butonu:hover { color: #fff; transform: scale(1.06); }

/* alan foto modalı — tam ekran galeri */
.alan-modal .modal-content {
  border: 0; border-radius: 0;
  background: #1c1409;
}
.alan-modal .modal-body {
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.alan-modal .carousel, .alan-modal .carousel-inner, .alan-modal .carousel-item { width: 100%; }
.alan-modal .carousel-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.alan-modal .carousel-item { display: none; }
.alan-modal .carousel-item.active,
.alan-modal .carousel-item-next,
.alan-modal .carousel-item-prev { display: block; }
.alan-modal .carousel-control-prev, .alan-modal .carousel-control-next { width: 12%; }
.alan-modal .carousel-indicators [data-bs-target] { width: 9px; height: 9px; border-radius: 50%; border: 0; }
.alan-modal .modal-footer {
  background: var(--krem-koyu);
  border: 0;
  gap: .75rem;
  padding: .85rem 1.1rem;
}
.alan-modal .modal-footer .kucuk-metin { color: var(--kahve); }
.alan-modal-kapat {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
  opacity: 1;
  padding: 0;
}
.alan-modal-kapat:hover { background-color: #fff; }

/* yardımcılar */
.dar-metin { max-width: 820px; margin-inline: auto; }
.on-baslik { letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; color: var(--kahve-acik); }

@media (max-width: 575.98px) {
  .hero { height: 62vw; min-height: 300px; }
  .foto-kart img { aspect-ratio: 16 / 9; }
  .site-nav .navbar-brand img { height: 38px; }
}
