/* ==========================================================================
   Kebapci Baki — modern arayuz katmani (2026-09-09)
   Mevcut Bootstrap 3.3.5 temasinin uzerine biner; eski kurallari ezmek yerine
   yalnizca .kb-* siniflarini tanimlar, boylece geri donus riski yoktur.
   ========================================================================== */

:root {
  --kb-altin:      #e9b947;
  --kb-altin-koyu: #c99a2e;
  --kb-koyu:       #1c1a17;
  --kb-gri:        #6b6560;
  --kb-cizgi:      #e2ddd5;
  --kb-zemin:      #fffdf9;
  --kb-ok:         #2e7d5b;
  --kb-hata:       #b3261e;
  --kb-wa:         #0f7a41;   /* 2026-09-10: marka yesili #25d366 beyaz metinle
                                yalnizca 1.98:1 kontrast veriyordu (WCAG asgarisi 4.5:1).
                                Ayni ailede koyu ton secildi: 5.41:1 — AA. */
  --kb-yuvarlak:   10px;
  --kb-golge:      0 1px 2px rgba(28,26,23,.06), 0 8px 24px rgba(28,26,23,.08);
}

/* --- Bot tuzagi: ekranda ve ekran okuyucuda gizli, DOM'da mevcut ---------
   Gorunur olursa gercek kullanicilar doldurur ve formlari reddedilir.       */
.kb-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* --- Form ------------------------------------------------------------- */
.kb-form { margin-top: 8px; }

.kb-label {
  display: block;
  margin: 14px 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--kb-koyu);
}
.kb-label span { color: var(--kb-hata); }

.kb-form input[type="text"],
.kb-form input[type="tel"],
.kb-form input[type="email"],
.kb-form input[type="date"],
.kb-form select,
.kb-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--kb-cizgi);
  border-radius: var(--kb-yuvarlak);
  background: #fff;
  color: var(--kb-koyu);
  font-size: 15px;              /* 16px alti iOS'ta otomatik zoom yapar */
  line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.kb-form textarea { min-height: 110px; resize: vertical; }

.kb-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.kb-form input:focus,
.kb-form select:focus,
.kb-form textarea:focus {
  outline: none;
  border-color: var(--kb-altin);
  box-shadow: 0 0 0 3px rgba(233,185,71,.25);
}

/* Tarayici dogrulamasi: yalnizca kullanici alandan ciktiktan sonra kizarsin */
.kb-form input:not(:placeholder-shown):invalid,
.kb-form textarea:not(:placeholder-shown):invalid {
  border-color: var(--kb-hata);
}

/* --- Butonlar --------------------------------------------------------- */
.kb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 13px 26px;
  border: 0;
  border-radius: var(--kb-yuvarlak);
  background: var(--kb-altin);
  color: var(--kb-koyu);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, transform .08s ease, box-shadow .15s ease;
  box-shadow: var(--kb-golge);
}
.kb-btn:hover  { background: var(--kb-altin-koyu); color: #fff; }
.kb-btn:active { transform: translateY(1px); }
.kb-btn:focus-visible { outline: 3px solid var(--kb-altin); outline-offset: 2px; }

.kb-btn-wa { background: var(--kb-wa); color: #fff; }
.kb-btn-wa:hover { background: #0b6b39; color: #fff; }

.kb-form-not {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--kb-gri);
}

/* --- Bildirim kutulari ------------------------------------------------ */
.kb-uyari {
  margin: 0 0 16px;
  padding: 13px 16px;
  border-radius: var(--kb-yuvarlak);
  border-left: 4px solid;
  font-size: 14.5px;
  line-height: 1.5;
}
.kb-uyari-ok    { background: #eaf6f0; border-color: var(--kb-ok);   color: #14532d; }
.kb-uyari-hata  { background: #fdeceb; border-color: var(--kb-hata); color: #7f1d1d; }

/* --- Sabit WhatsApp butonu ------------------------------------------- */
.kb-wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--kb-wa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15,122,65,.42);
  transition: transform .15s ease;
}
.kb-wa-fab:hover  { transform: scale(1.06); color: #fff; }
.kb-wa-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.kb-wa-fab svg { width: 30px; height: 30px; fill: currentColor; }

@media (max-width: 767px) {
  .kb-wa-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

/* Hareket azaltma tercihine saygi */
@media (prefers-reduced-motion: reduce) {
  .kb-btn, .kb-wa-fab, .kb-form input, .kb-form select, .kb-form textarea {
    transition: none;
  }
}

/* ==========================================================================
   Denizli kebabi galerisi — 2026-09-09
   ========================================================================== */

.kb-galeri {
  padding: 70px 0 60px;
  background: var(--kb-zemin);
}
.kb-galeri .main-title { margin-bottom: 34px; }
.kb-galeri-aciklama {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--kb-gri);
  font-size: 15px;
  line-height: 1.65;
}

/* Otomatik sutun: dar ekranda 2, genis ekranda 4 sutuna kadar */
.kb-galeri-izgara {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.kb-galeri-kutu {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--kb-yuvarlak);
  background: #efe9e0;
  box-shadow: var(--kb-golge);
}
/* Ilk iki gorsel iki sutun kaplar */
@media (min-width: 700px) {
  .kb-galeri-kutu.kb-genis { grid-column: span 2; }
}

.kb-galeri-kutu a {
  display: block;
  position: relative;
  line-height: 0;
  color: inherit;
}
.kb-galeri-kutu img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.kb-galeri-kutu.kb-genis img { aspect-ratio: 4 / 3; }
.kb-galeri-kutu a:hover img,
.kb-galeri-kutu a:focus-visible img { transform: scale(1.05); }
.kb-galeri-kutu a:focus-visible { outline: 3px solid var(--kb-altin); outline-offset: -3px; }

/* Alt yazi: gorselin uzerinde okunakli seride */
.kb-galeri-yazi {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 11px;
  background: linear-gradient(to top, rgba(20,18,15,.82), rgba(20,18,15,0));
  color: #fff;
  font-size: 12.5px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.kb-galeri-kutu a:hover .kb-galeri-yazi,
.kb-galeri-kutu a:focus-visible .kb-galeri-yazi { opacity: 1; transform: none; }
/* Dokunmatik cihazda hover yok — yazi hep gorunur */
@media (hover: none) {
  .kb-galeri-yazi { opacity: 1; transform: none; }
}

/* --- Video --- */
.kb-video-sarmal { margin-top: 34px; text-align: center; }
.kb-video-baslik {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--kb-koyu);
}
.kb-video {
  width: 100%;
  max-width: 760px;
  border-radius: var(--kb-yuvarlak);
  box-shadow: var(--kb-golge);
  background: #000;
}

/* --- Buyutme penceresi --- */
/* [hidden] display:flex tarafindan ezilmesin — aksi halde karartma katmani
   sayfa acilir acilmaz gorunur kalir ve tum sayfayi karartir. */
.kb-lightbox[hidden] { display: none !important; }

.kb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: rgba(14,12,10,.94);
}
.kb-lightbox img {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  border-radius: var(--kb-yuvarlak);
  object-fit: contain;
}
.kb-lightbox-yazi {
  margin: 0;
  max-width: 640px;
  color: #f3ece1;
  font-size: 14px;
  text-align: center;
}
.kb-lightbox-kapat {
  position: absolute;
  top: 16px; right: 20px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.kb-lightbox-kapat:hover { background: rgba(255,255,255,.26); }
.kb-lightbox-kapat:focus-visible { outline: 3px solid var(--kb-altin); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .kb-galeri-kutu img, .kb-galeri-yazi { transition: none; }
}

/* ==========================================================================
   Rezervasyon formu duzeni — 2026-09-09
   Eski tema alanlari Bootstrap float'lariyla diziyordu; kutuya tam oturmuyor,
   sagda bosluk birakiyordu. Grid'e alindi: float yok, hizalama kesin.
   ========================================================================== */

.booking-form .kb-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 2px;
  align-items: start;
}
/* Bootstrap sutun sarmallarini grid hucresine cevir */
.booking-form .kb-form > [class*="col-md-"] {
  width: auto;
  float: none;
  padding-left: 0;
  padding-right: 0;
  min-width: 0;
}
.booking-form .kb-form > .col-md-12,
.booking-form .kb-form > .kb-hp,
.booking-form .kb-form > .g-recaptcha,
.booking-form .kb-form > button,
.booking-form .kb-form > .kb-form-not,
.booking-form .kb-form > input[type="hidden"] {
  grid-column: 1 / -1;
}
/* Temizleyici div'ler grid'de yer kaplamasin */
.booking-form .kb-form > div[style*="clear"] { display: none; }

.booking-form .kb-form .field { margin: 0; }
.booking-form .kb-form button { justify-self: start; }

@media (max-width: 640px) {
  .booking-form .kb-form { grid-template-columns: 1fr; }
}

/* reCAPTCHA dar ekranda tasmasin */
.g-recaptcha {
  margin: 16px 0 0 !important;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 400px) {
  .g-recaptcha { transform: scale(.86); transform-origin: 0 0; }
}

/* Iletisim / konuk defteri formlarinda da alanlar tam genislik */
.get-touch-form .kb-form input,
.get-touch-form .kb-form textarea { width: 100%; }

/* ==========================================================================
   Rezervasyon yan kolonu — 2026-09-09
   ========================================================================== */

.kb-rezervasyon-yan {
  background: var(--kb-krem, #fffdf9);
  border: 1px solid var(--kb-cizgi, #e4ded4);
  border-radius: var(--kb-yuvarlak-bs, 16px);
  padding: 24px 22px;
  box-shadow: var(--kb-golge);
}
.kb-rezervasyon-yan h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: var(--kb-is, #1c1a17);
}
.kb-yan-aciklama {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--kb-gri, #6b6560);
}
.kb-yan-etiket {
  display: block;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kb-gri, #6b6560);
  margin-bottom: 2px;
}
.kb-yan-tel {
  display: block;
  padding: 11px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--kb-cizgi, #e4ded4);
  border-radius: var(--kb-yuvarlak, 10px);
  background: #fff;
  color: var(--kb-is, #1c1a17);
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.kb-yan-tel strong { font-size: 17px; letter-spacing: .01em; }
.kb-yan-tel:hover,
.kb-yan-tel:focus-visible {
  border-color: var(--kb-altin, #e9b947);
  background: #fffaf0;
  color: var(--kb-is, #1c1a17);
  text-decoration: none;
}
.kb-yan-wa {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 6px 0 20px;
  text-decoration: none;
}
.kb-yan-wa:hover { text-decoration: none; }

.kb-yan-adres {
  padding-top: 16px;
  border-top: 1px solid var(--kb-cizgi, #e4ded4);
}
.kb-yan-adres p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--kb-is-yumusak, #3a352e);
}
.kb-yan-adres a {
  font-size: 14px;
  font-weight: 600;
  color: var(--kb-kor, #b8402a);
}

@media (max-width: 991px) {
  .kb-rezervasyon-yan { margin-top: 24px; }
}

/* ==========================================================================
   Mobil hizli iletisim cubugu — 2026-09-09
   Ekranin altina sabitlenir. Onceki PNG butonlar icerigi ortuyordu; bu cubuk
   sayfaya alt bosluk ekleyerek (padding-bottom) icerigi ortmez.
   ========================================================================== */

.kb-mobil-cubuk { display: none; }

@media (max-width: 767px) {
  .kb-mobil-cubuk {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9998;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    background: #fff;
    border-top: 1px solid var(--kb-cizgi, #e4ded4);
    box-shadow: 0 -2px 14px rgba(28,26,23,.10);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .kb-cubuk-og {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 56px;               /* WCAG 2.2 dokunma hedefi */
    padding: 8px 4px;
    color: var(--kb-is, #1c1a17);
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
  }
  .kb-cubuk-og + .kb-cubuk-og { border-left: 1px solid var(--kb-cizgi, #e4ded4); }
  .kb-cubuk-og svg { width: 21px; height: 21px; fill: currentColor; }
  .kb-cubuk-og:active { background: #f7f1e6; }
  .kb-cubuk-og:focus-visible { outline: 3px solid var(--kb-altin, #e9b947); outline-offset: -3px; }
  .kb-cubuk-wa { color: #0f7a41; }  /* 4.31:1 -> 5.41:1 */

  /* Cubuk sayfanin son icerigini ortmesin */
  body { padding-bottom: 62px; }

  /* Mobilde alt cubuk zaten var — yuvarlak WhatsApp butonu tekrar olmasin */
  .kb-wa-fab { display: none; }
}

/* ==========================================================================
   İletişim / konuk defteri formu — 2026-09-10
   Eski tema `.get-touch-form input[type=text]`e float:left; width:48% veriyordu.
   Yeni etiketler bu float'ların arasında kalınca alanlar birbirine giriyordu.
   Alanlar .kb-alan sarmalayıcısına alındı ve float tamamen iptal edildi.
   ========================================================================== */

.get-touch-form .kb-form,
.contact-page .get-in-touch .get-touch-form .kb-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 4px;
  align-items: start;
}

.kb-alan { min-width: 0; }
.kb-genis { grid-column: 1 / -1; }

/* Eski float/genişlik kuralları bu form içinde geçersiz */
.contact-page .get-in-touch .get-touch-form .kb-form input[type="text"],
.contact-page .get-in-touch .get-touch-form .kb-form input[type="email"],
.contact-page .get-in-touch .get-touch-form .kb-form input[type="tel"],
.contact-page .get-in-touch .get-touch-form .kb-form input#email_address,
.get-touch-form .kb-form input,
.get-touch-form .kb-form textarea {
  float: none !important;
  width: 100% !important;
  height: auto;
  margin: 0;
  font-size: 15px;
}
.get-touch-form .kb-form textarea,
.contact-page .get-in-touch .get-touch-form .kb-form textarea {
  height: auto;
  min-height: 130px;
  margin: 0;
}
.get-touch-form .kb-form button { justify-self: start; }

/* Başarı mesajı mutlak konumluydu, alanların üstüne biniyordu */
.get-touch-form .success_msg { position: static; margin-bottom: 10px; }

@media (max-width: 640px) {
  .get-touch-form .kb-form,
  .contact-page .get-in-touch .get-touch-form .kb-form { grid-template-columns: 1fr; }
}

/* --- Sayfa başlığı bandı: metin görselin üzerinde okunmuyordu ----------
   Fotoğraf açık tonlu olduğunda beyaz başlık kayboluyordu; koyu bir
   degrade katman eklendi (kontrast WCAG AA). */
.sub-banner { position: relative; }
.sub-banner .banner-img::after,
.sub-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.30) 45%, rgba(20,18,15,.55) 100%);
  pointer-events: none;
}
.sub-banner .detail { z-index: 2; }
.sub-banner .detail h1,
.sub-banner .detail h2,
.sub-banner .detail span,
.sub-banner .detail ul li a { text-shadow: 0 1px 3px rgba(0,0,0,.45); }

/* ==========================================================================
   HERO — 2026-09-10
   Revolution Slider'ın yerini alır. JS bağımlılığı yok; görsel art direction
   <picture> ile yapılır (mobilde dikey fotoğraf, masaüstünde yatay).
   ========================================================================== */

.kb-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86vh;
  min-height: 86svh;              /* mobil tarayıcı çubuklarını hesaba katar */
  overflow: hidden;
  background: #14120f;
  isolation: isolate;
}

.kb-hero-gorsel,
.kb-hero-gorsel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.kb-hero-gorsel img {
  object-fit: cover;
  object-position: center;
}

/* Okunabilirlik katmanı — fotoğraf açık tonlu olduğunda başlık kaybolmasın */
.kb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,18,15,.62) 0%, rgba(20,18,15,.34) 38%, rgba(20,18,15,.78) 100%);
}

.kb-hero-icerik {
  position: relative;
  width: min(760px, 90vw);
  padding: 96px 0 74px;
  text-align: center;
  color: #fff;
}

.kb-hero-ust {
  margin: 0 0 14px;
  font-family: var(--kb-font-govde, sans-serif);
  font-size: clamp(.78rem, .6rem + .5vw, .92rem);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--kb-altin, #e9b947);
}

.kb-hero-baslik {
  margin: 0 0 18px;
  font-family: var(--kb-font-baslik, Georgia, serif);
  font-size: clamp(2.1rem, 1.2rem + 4.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
  text-wrap: balance;
}

.kb-hero-alt {
  max-width: 58ch;
  margin: 0 auto 30px;
  font-size: clamp(.98rem, .9rem + .35vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 8px rgba(0,0,0,.42);
}

.kb-hero-eylem {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.kb-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .16s ease, transform .08s ease, box-shadow .16s ease;
}
.kb-hero-btn:hover { text-decoration: none; }
.kb-hero-btn:active { transform: translateY(1px); }
.kb-hero-btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.kb-hero-btn-birincil {
  background: var(--kb-kor, #b8402a);
  color: #fff;
  box-shadow: 0 8px 24px rgba(184,64,42,.42);
}
.kb-hero-btn-birincil:hover { background: var(--kb-kor-koyu, #8f2f1e); color: #fff; }

.kb-hero-btn-ikincil {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.kb-hero-btn-ikincil:hover { background: rgba(255,255,255,.26); color: #fff; }

/* Aşağı kaydırma göstergesi */
.kb-hero-kaydir {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  animation: kb-zipla 2.4s ease-in-out infinite;
}
.kb-hero-kaydir svg { width: 24px; height: 24px; fill: currentColor; }
.kb-hero-kaydir:hover { background: rgba(255,255,255,.3); color: #fff; }
.kb-hero-kaydir:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

@keyframes kb-zipla {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

@media (max-width: 767px) {
  .kb-hero { min-height: 100svh; }
  .kb-hero-icerik { padding: 84px 0 96px; }
  .kb-hero-eylem { flex-direction: column; align-items: stretch; }
  .kb-hero-btn { justify-content: center; width: 100%; }
  .kb-hero-kaydir { bottom: 74px; }   /* mobil alt çubuğun üstünde kalsın */
}

@media (prefers-reduced-motion: reduce) {
  .kb-hero-kaydir { animation: none; }
}

/* ==========================================================================
   Hero altı eylem şeridi — birincil dönüşüm yolu göz önünde
   ========================================================================== */

.kb-cta-serit {
  background: var(--kb-krem-koyu, #f7f1e6);
  border-bottom: 1px solid var(--kb-cizgi, #e4ded4);
  padding: 20px 0;
}
.kb-serit-ic {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.kb-serit-metin strong {
  display: block;
  font-family: var(--kb-font-baslik, Georgia, serif);
  font-size: 1.22rem;
  color: var(--kb-is, #1c1a17);
}
.kb-serit-metin span {
  font-size: .92rem;
  color: var(--kb-gri, #6b6560);
}
.kb-serit-eylem {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* Birincil CTA rengi sayfa genelinde tek olmali (landing.csv: "One primary CTA").
   Hero'daki "Masa Ayirt" kor renkte; serit butonu da ayni renge cekildi. */
.kb-serit-btn {
  margin-top: 0;
  background: var(--kb-kor, #b8402a);
  color: #fff;
}
.kb-serit-btn:hover,
.kb-serit-btn:focus-visible { background: var(--kb-kor-koyu, #8f2f1e); color: #fff; }
.kb-serit-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--kb-is, #1c1a17);
  text-decoration: none;
}
.kb-serit-tel:hover { color: var(--kb-kor, #b8402a); text-decoration: none; }

@media (max-width: 767px) {
  .kb-serit-ic { flex-direction: column; align-items: stretch; text-align: center; }
  .kb-serit-eylem { justify-content: center; }
  .kb-serit-btn { flex: 1 1 auto; justify-content: center; }
}

/* ==========================================================================
   Türkçe takvim — 2026-09-10
   ========================================================================== */

.kb-takvim-sarmal { position: relative; }

.kb-tarih-girdi { cursor: pointer; background-image: none !important; }

.kb-takvim {
  position: absolute;
  z-index: 60;
  top: calc(100% + 6px);
  left: 0;
  width: 300px;
  max-width: calc(100vw - 32px);
  padding: 12px;
  background: #fff;
  border: 1px solid var(--kb-cizgi, #e4ded4);
  border-radius: var(--kb-yuvarlak, 10px);
  box-shadow: 0 12px 32px rgba(28,26,23,.16);
}
.kb-takvim[hidden] { display: none !important; }

.kb-takvim-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.kb-takvim-ust strong {
  font-family: var(--kb-font-baslik, Georgia, serif);
  font-size: 1.02rem;
  color: var(--kb-is, #1c1a17);
}
.kb-takvim-ok {
  width: 34px; height: 34px;
  border: 1px solid var(--kb-cizgi, #e4ded4);
  border-radius: 8px;
  background: #fff;
  color: var(--kb-is, #1c1a17);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.kb-takvim-ok:hover:not(:disabled) { background: var(--kb-krem-koyu, #f7f1e6); }
.kb-takvim-ok:disabled { opacity: .35; cursor: not-allowed; }
.kb-takvim-ok:focus-visible { outline: 3px solid var(--kb-altin, #e9b947); outline-offset: 1px; }

.kb-takvim-gunler {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.kb-takvim-baslik {
  display: grid;
  place-items: center;
  height: 30px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--kb-gri, #6b6560);
}
.kb-takvim-gun {
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--kb-is, #1c1a17);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .12s ease;
}
.kb-takvim-gun:hover:not(:disabled) { background: var(--kb-krem-koyu, #f7f1e6); }
.kb-takvim-gun:disabled { color: #c9c2b8; cursor: not-allowed; }
.kb-takvim-gun:focus-visible { outline: 2px solid var(--kb-altin, #e9b947); outline-offset: -2px; }
.kb-takvim-gun.kb-bugun { box-shadow: inset 0 0 0 1px var(--kb-altin, #e9b947); }
.kb-takvim-gun.kb-secili {
  background: var(--kb-kor, #b8402a);
  color: #fff;
  font-weight: 700;
}

/* Dar ekranda takvim taşmasın */
@media (max-width: 420px) {
  .kb-takvim { left: 50%; transform: translateX(-50%); }
}

/* --- Tanıtım videosu (Hakkında bölümü) --- */
.kb-tanitim-video { margin: 0; }
.kb-tanitim-video video {
  width: 100%;
  height: auto;
  border-radius: var(--kb-yuvarlak-bs, 16px);
  background: #14120f;
  box-shadow: var(--kb-golge);
  display: block;
}
.kb-tanitim-video figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--kb-gri, #6b6560);
  text-align: center;
}
