/**
 * Kampyeri global — tüm sitelerde ortak temel + tasarım değişkenleri.
 * Site/tema: theme/overrides.css ile override.
 */
:root {
  --ky-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ky-radius: 12px;
  --ky-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --ky-color-text: #111827;
  --ky-color-muted: #6b7280;
  --ky-color-surface: #ffffff;
  --ky-color-border: #e5e7eb;
  --ky-color-primary: #059669;
  --ky-color-primary-contrast: #ffffff;
  --ky-color-accent: #16a34a;
  --ky-booking-cta-bg: #e5e7eb;
  --ky-booking-cta-text: #374151;
  --ky-booking-link: #16a34a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.ky-body {
  margin: 0;
  font-family: var(--ky-font);
  color: var(--ky-color-text);
  background: #f9fafb;
  line-height: 1.5;
}

/* —— Üst menü: tüm arka plan ve gölge yalnızca header (.ky-topnav) üzerinde.
   İç bar (.ky-topnav__bar aynı zamanda .ky-container) şeffaf kalır ki menü
   tam genişlikte, kenardan kenara akar. Tema sadece --ky-nav-bg değişkenini
   değiştirerek rengi özelleştirir. —— */
.ky-topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--ky-nav-border, var(--ky-color-border));
  background: var(--ky-nav-bg, rgba(255, 255, 255, 0.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--ky-shadow-nav, 0 1px 0 rgba(255, 255, 255, 0.8) inset);
}

.ky-topnav__bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  min-height: 3.25rem;
  background: transparent;
}

.ky-topnav__brand {
  font-weight: 800;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  letter-spacing: -0.02em;
  color: var(--ky-color-text);
  text-decoration: none;
  line-height: 1.2;
  max-width: min(56vw, 14rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ky-topnav__brand:hover {
  color: var(--ky-color-primary);
}

.ky-topnav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ky-color-border);
  border-radius: 0.65rem;
  background: var(--ky-color-surface);
  color: var(--ky-color-text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ky-topnav__toggle:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

@media (min-width: 1024px) {
  .ky-topnav__toggle {
    display: none;
  }
}

.ky-topnav__burger {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.ky-topnav__panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 1023px) {
  /* Tam ekran menü: dar çekmece + üstte marka şeridi “yarım beyaz / yarım blur”
     görünümüne yol açmaması için panel her zaman viewport’u kaplar. */
  .ky-topnav__panel {
    position: fixed;
    inset: 0;
    width: auto;
    max-width: none;
    padding: 0.75rem 1rem 1.25rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    background: var(--ky-color-surface);
    box-shadow: none;
    z-index: 60;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    pointer-events: none;
  }

  .ky-topnav--open .ky-topnav__panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
}

@media (min-width: 1024px) {
  .ky-topnav__panel {
    position: static;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem 2rem;
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
  }
}

.ky-topnav__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--ky-color-border);
}

@media (min-width: 1024px) {
  .ky-topnav__panel-head {
    display: none;
  }
}

.ky-topnav__panel-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ky-color-muted);
}

.ky-topnav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.5rem;
  background: #f3f4f6;
  color: var(--ky-color-text);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.15s ease;
}

.ky-topnav__close:hover {
  background: #e5e7eb;
}

@media (min-width: 1024px) {
  .ky-topnav__close {
    display: none;
  }
}

.ky-topnav__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
}

@media (min-width: 1024px) {
  .ky-topnav__links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 0.2rem 0.35rem;
  }
}

.ky-topnav__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ky-color-text);
  padding: 0.75rem 0.85rem;
  border-radius: 0.6rem;
  line-height: 1.3;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .ky-topnav__link {
    font-size: 0.9rem;
    padding: 0.4rem 0.65rem;
    width: auto;
    color: var(--ky-color-muted);
    text-align: center;
  }
}

.ky-topnav__link:hover {
  background: transparent;
  color: color-mix(in srgb, var(--ky-color-text) 82%, #ffffff 18%);
}

@media (min-width: 1024px) {
  .ky-topnav__link:hover {
    color: color-mix(in srgb, var(--ky-color-muted) 58%, var(--ky-color-primary) 42%);
  }
}

.ky-topnav__link--active {
  background: transparent;
  color: var(--ky-color-primary);
}

.ky-topnav__link--sub {
  font-size: 0.95rem;
  font-weight: 600;
  padding-left: 1.25rem;
  color: var(--ky-color-muted);
}

@media (min-width: 1024px) {
  .ky-topnav__link--sub {
    padding-left: 0.85rem;
  }
}

.ky-topnav__mobilecats {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ky-color-border);
}

@media (min-width: 1024px) {
  .ky-topnav__mobilecats {
    display: none;
  }
}

.ky-topnav__mobilecats-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ky-color-muted);
  padding: 0.35rem 0.85rem 0.25rem;
}

.ky-topnav__scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(15, 23, 42, 0.45);
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.ky-topnav--open .ky-topnav__scrim {
  display: block;
}

@media (min-width: 1024px) {
  .ky-topnav__scrim {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ky-topnav__panel {
    transition: none;
  }
}

body.ky-nav-is-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  body.ky-nav-is-open {
    overflow: auto;
  }
}

.ky-container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.ky-hero {
  background: transparent;
}

.ky-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.ky-hero p {
  margin: 0;
  color: var(--ky-color-muted);
  max-width: 40rem;
}

.ky-section {
  padding: 2.5rem 0;
}

.ky-card {
  background: var(--ky-color-surface);
  border: 1px solid var(--ky-color-border);
  border-radius: var(--ky-radius);
  box-shadow: var(--ky-shadow);
}

/* Dil seçici (language_switch modülü) */
.ky-lang {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--ky-color-muted);
}

.ky-lang__label {
  font-weight: 600;
  color: var(--ky-color-text);
}

.ky-lang__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.ky-lang__list li {
  margin: 0;
}

.ky-lang__link {
  color: var(--ky-color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
}

.ky-lang__link:hover {
  text-decoration: underline;
}

.ky-lang__current {
  font-weight: 700;
  color: var(--ky-color-text);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  background: #e5e7eb;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ky-topnav__aside {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ky-color-border);
}

@media (min-width: 1024px) {
  .ky-topnav__aside {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

.ky-topnav__dropdown--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .ky-topnav__dropdown--desktop {
    display: block;
  }
}

.ky-topnav__dropdown {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .ky-topnav__dropdown {
    width: auto;
  }
}

.ky-topnav__dropbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

@media (min-width: 1024px) {
  .ky-topnav__dropbtn {
    width: auto;
    justify-content: center;
  }
}

.ky-topnav__chev {
  font-size: 0.6rem;
  opacity: 0.75;
}

.ky-topnav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.35rem;
  min-width: 12.5rem;
  background: var(--ky-color-surface, #fff);
  border: 1px solid var(--ky-color-border);
  border-radius: 10px;
  box-shadow: var(--ky-shadow);
  padding: 0.35rem 0;
  z-index: 60;
}

.ky-topnav__dropdown-menu.is-open {
  display: block;
}

.ky-topnav__dropdown-item {
  display: block;
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ky-color-text);
  text-decoration: none;
}

.ky-topnav__dropdown-item:hover {
  background: #f3f4f6;
  color: var(--ky-color-primary);
}

.ky-lang-select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--ky-color-border);
  background: var(--ky-color-surface, #fff);
}

.ky-lang-select__icon {
  color: var(--ky-color-primary);
  font-size: 1rem;
}

.ky-lang-select {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ky-color-text);
  padding: 0.25rem 1.25rem 0.25rem 0;
  cursor: pointer;
  min-width: 5.5rem;
}

.ky-inner-page {
  padding: 2rem 0 3rem;
}

.ky-inner-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.ky-inner-page__body .ky-ms-section {
  padding-top: 0;
}

.ky-inner-lead {
  font-size: 1.05rem;
  color: var(--ky-color-muted);
  max-width: 48rem;
}

/* Hakkımızda — kamp açıklaması / özel HTML (TinyMCE uyumlu) */
.ky-about-body {
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ky-color-text);
}

.ky-about-body > *:first-child {
  margin-top: 0;
}

.ky-about-body > *:last-child {
  margin-bottom: 0;
}

.ky-about-body p {
  margin: 0 0 1em;
}

.ky-about-body h2,
.ky-about-body h3,
.ky-about-body h4 {
  margin: 1.25em 0 0.5em;
  line-height: 1.3;
  color: var(--ky-color-text);
}

.ky-about-body ul,
.ky-about-body ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.ky-about-body a {
  color: var(--ky-color-accent, #059669);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ky-about-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ky-radius, 0.5rem);
}

.ky-cat-hero {
  margin: 0 0 1.25rem;
  border-radius: var(--ky-radius);
  overflow: hidden;
  box-shadow: var(--ky-shadow);
}

.ky-cat-hero img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.ky-cat-count {
  font-weight: 700;
  color: var(--ky-color-text);
}

.ky-cat-intro {
  margin-bottom: 1.5rem;
  max-width: 48rem;
}

.ky-inner-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ky-color-muted);
  margin: 0 0 1rem;
}

.ky-inner-breadcrumb a {
  color: var(--ky-color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ky-inner-breadcrumb a:hover {
  color: var(--ky-color-primary);
}

.ky-inner-breadcrumb__sep {
  opacity: 0.45;
  user-select: none;
}

.ky-inner-breadcrumb__here {
  color: var(--ky-color-text);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ky-cat-page-head {
  margin-bottom: 1.5rem;
}

.ky-cat-page-head__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ky-color-text);
}

.ky-cat-page-head__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--ky-color-muted);
  max-width: 40rem;
  line-height: 1.55;
}

.ky-cat-page-head__intro {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ky-color-text);
  max-width: 48rem;
}

.ky-cat-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ky-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ky-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ky-cat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -20px rgba(15, 23, 42, 0.18);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ky-cat-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--ky-accent, #059669) 22%, rgba(15, 23, 42, 0.08));
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.05),
    0 20px 44px -22px rgba(15, 23, 42, 0.22);
}

.ky-cat-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
}

.ky-cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ky-cat-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 2rem;
}

.ky-cat-card__badges {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  max-width: calc(100% - 1.3rem);
  z-index: 1;
}

.ky-cat-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 10px -4px rgba(15, 23, 42, 0.25);
  line-height: 1.2;
  text-align: right;
}

.ky-cat-card__badge--muted {
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-size: 0.72rem;
  color: #334155;
}

.ky-cat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1rem 1.1rem 1.15rem;
  gap: 0.5rem;
}

.ky-cat-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.25;
}

.ky-cat-card__desc {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.ky-cat-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.ky-cat-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.ky-cat-card__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ky-accent, #059669), var(--ky-accent-hover, #047857));
  border-color: color-mix(in srgb, #fff 18%, transparent);
  box-shadow: 0 4px 14px -6px color-mix(in srgb, var(--ky-accent, #059669) 50%, transparent);
}

.ky-cat-card__btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ky-cat-card__btn--ghost {
  color: #0f172a;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.ky-cat-card__btn--ghost:hover {
  background: #fff;
  border-color: #cbd5e1;
}

.ky-area-breadcrumb {
  margin-bottom: 1rem;
}

.ky-area-detail__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 42rem;
}

.ky-inner-page--with-modules {
  padding-bottom: 0;
}
