/* ==========================================================================
   Kıbrıs Gece Hayatı VIP — Tasarım Sistemi
   ========================================================================== */

:root {
  --color-bg: #0a0a0f;
  --color-bg-alt: #12121b;
  --color-surface: #1a1a26;
  --color-border: #2a2a3a;
  --color-text: #f2f0f7;
  --color-text-muted: #a8a5b8;
  --color-accent: #d6427e;
  --color-accent-dim: #8a2a54;
  --color-accent-contrast: #ffffff;
  --color-whatsapp: #158a41;

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-logo: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --container-width: 1180px;
  --radius: 6px;
  --transition: 180ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #d17ea3; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .5em;
  color: #fff;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; color: var(--color-text-muted); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: .75em;
}

.section { padding: 72px 0; }
.section--alt { background: var(--color-bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head p { margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, filter 160ms ease;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #e468a0, var(--color-accent) 65%, var(--color-accent-dim));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(214, 66, 126, .3);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 10px 26px rgba(214, 66, 126, .42); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,.02);
  color: var(--color-text);
  border-color: var(--color-border);
  border-radius: var(--radius);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(214,66,126,.07); }

.btn-whatsapp {
  background: linear-gradient(135deg, #1f9e4f, var(--color-whatsapp) 65%, #0d5c28);
  color: #fff;
  box-shadow: 0 6px 20px rgba(21, 138, 65, .28);
}
.btn-whatsapp:hover { filter: brightness(1.08); box-shadow: 0 10px 26px rgba(21, 138, 65, .38); color: #fff; }

.btn-block { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .btn { padding: 13px 20px; font-size: .9rem; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 15, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.site-branding { display: flex; flex-direction: column; }
.site-title {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
}
.site-title span { color: var(--color-accent); }

.primary-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.primary-nav a { color: var(--color-text); font-size: .93rem; font-weight: 500; }
.primary-nav a:hover { color: var(--color-accent); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.nav-toggle::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) top / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) bottom / 100% 2px no-repeat;
}
.nav-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); }

@media (max-width: 860px) {
  .primary-nav { display: none; width: 100%; order: 3; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 4px; padding: 16px 0 6px; }
  .primary-nav a { display: block; padding: 10px 0; border-top: 1px solid var(--color-border); }
  .site-header-inner { flex-wrap: wrap; row-gap: 14px; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background:
    radial-gradient(ellipse at top right, rgba(214,66,126,.14), transparent 55%),
    linear-gradient(180deg, #0a0a0f 0%, #100d13 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  overflow: hidden;
}
.hero > .container { width: 100%; position: relative; z-index: 2; }

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-image {
  width: 100%; height: 100%; object-fit: cover;
  animation: kgh-kenburns 13s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,.9) 0%, transparent 16%),
    linear-gradient(100deg, rgba(10,10,15,.94) 0%, rgba(10,10,15,.72) 38%, rgba(10,10,15,.32) 65%, rgba(10,10,15,.55) 100%),
    linear-gradient(0deg, rgba(10,10,15,.9) 0%, transparent 30%);
}
.hero--photo { border-bottom-color: rgba(255,255,255,.08); }

@keyframes kgh-kenburns {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.26) translate(-3%, -2%); }
}

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

.hero .eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  padding: 7px 16px;
  border: 1px solid rgba(214,66,126,.4);
  border-radius: 999px;
  background: rgba(214,66,126,.08);
  margin-bottom: 20px;
}
.hero h1.hero-signature {
  max-width: 900px;
  min-height: 2.4em;
  margin: 0;
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.15;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
  transition: opacity 400ms ease;
}
.hero h1.hero-signature span {
  background: linear-gradient(100deg, #f0a9c4, var(--color-accent) 55%, #a8306a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions .btn-primary,
.hero-actions .btn-whatsapp {
  background: rgba(255,255,255,.03);
  border: 1.5px solid currentColor;
  box-shadow: none;
}
.hero-actions .btn-primary { color: var(--color-accent); }
.hero-actions .btn-primary:hover { background: var(--color-accent); color: #fff; }
.hero-actions .btn-whatsapp { color: var(--color-whatsapp); }
.hero-actions .btn-whatsapp:hover { background: var(--color-whatsapp); color: #fff; }

@media (max-width: 640px) {
  .hero { min-height: 82vh; padding: 72px 0 56px; align-items: flex-end; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,15,.92) 0%, rgba(10,10,15,.5) 20%, rgba(10,10,15,.55) 55%, rgba(10,10,15,.96) 100%);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
}

/* ==========================================================================
   Venue grid / cards
   ========================================================================== */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}

@media (max-width: 560px) {
  .venue-grid, .article-grid { grid-template-columns: 1fr; }
}

.venue-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.venue-card:hover { transform: translateY(-4px); border-color: var(--color-accent-dim); }
.venue-card-media { position: relative; aspect-ratio: 4/3; background: #1a1a26; }
.venue-card-media img { width: 100%; height: 100%; object-fit: cover; }
.venue-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(12,12,15,.82);
  color: var(--color-accent);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 10px;
  border-radius: 4px;
}
.venue-card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.venue-card-body h3 { margin-bottom: .3em; }
.venue-card-body h3 a { color: #fff; }
.venue-card-body h3 a:hover { color: var(--color-accent); }
.venue-card-meta { font-size: .82rem; color: var(--color-text-muted); margin-bottom: 10px; }
.venue-card-excerpt { font-size: .9rem; flex: 1; }
.venue-card-foot { margin-top: 14px; display: flex; gap: 10px; }

/* Filters */
.venue-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.venue-filters a {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--color-text-muted);
}
.venue-filters a.is-active,
.venue-filters a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ==========================================================================
   Single mekan
   ========================================================================== */
.venue-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21/6;
  max-height: 300px;
  background: #1a181d;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.venue-hero img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0) 40%, rgba(10,10,15,.85) 100%);
}

@media (max-width: 640px) {
  .venue-hero { aspect-ratio: 4/3; max-height: 220px; }
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}
.venue-info-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.venue-info-list li { display: flex; gap: 10px; font-size: .95rem; color: var(--color-text-muted); }
.venue-info-list strong { color: #fff; min-width: 110px; display: inline-block; }

.venue-sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 96px;
}
.venue-sidebar h3 { font-size: 1.05rem; }
.venue-sidebar .btn { margin-top: 10px; }

.venue-map { margin-top: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); }
.venue-map iframe { width: 100%; height: 220px; border: 0; display: block; }

@media (max-width: 880px) {
  .venue-layout { grid-template-columns: 1fr; }
  .venue-sidebar { position: static; }
}

/* ==========================================================================
   Blog / article
   ========================================================================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.article-card { border-bottom: 1px solid var(--color-border); padding-bottom: 28px; }
.article-card-media { aspect-ratio: 16/10; background: #1a1a26; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; }
.article-card .eyebrow { font-size: .68rem; }
.article-card h3 a { color: #fff; }
.article-card h3 a:hover { color: var(--color-accent); }
.article-meta { font-size: .78rem; color: var(--color-text-muted); margin-bottom: 8px; }

.single-article { max-width: 760px; margin: 0 auto; }
.single-article .article-meta { margin-bottom: 28px; }
.single-article-content h2 { margin-top: 1.6em; }
.single-article-content h3 { margin-top: 1.4em; }
.single-article-content ul, .single-article-content ol { color: var(--color-text-muted); padding-left: 1.3em; }
.single-article-content blockquote {
  border-left: 3px solid var(--color-accent);
  margin: 1.6em 0;
  padding: .4em 1.2em;
  color: var(--color-text);
  font-style: italic;
}
.single-article-content figure { margin: 1.8em 0; }
.single-article-content img { border-radius: var(--radius); }

/* ==========================================================================
   Generic page
   ========================================================================== */
.page-header { padding: 56px 0 20px; text-align: center; border-bottom: 1px solid var(--color-border); }
.page-content { max-width: 760px; margin: 0 auto; padding-top: 8px; }
.breadcrumbs { font-size: .8rem; color: var(--color-text-muted); margin-bottom: 10px; }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-accent); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--color-surface), var(--color-bg-alt));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
}
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { max-width: 520px; margin: 0 auto 24px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col p { color: var(--color-text-muted); font-size: .88rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: var(--color-text-muted);
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}
.whatsapp-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: var(--color-text);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.whatsapp-status i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-whatsapp);
  box-shadow: 0 0 0 0 rgba(21,138,65,.6);
  animation: kgh-status-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes kgh-status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21,138,65,.55); }
  50% { box-shadow: 0 0 0 5px rgba(21,138,65,0); }
}
.whatsapp-float {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1f9e4f, var(--color-whatsapp) 65%, #0d5c28);
  color: #fff;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  font-weight: 700;
  font-size: .9rem;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
}
.whatsapp-float svg { width: 23px; height: 23px; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .whatsapp-status i { animation: none; }
}

@media (max-width: 560px) {
  .whatsapp-float .wa-label { display: none; }
  .whatsapp-float { padding: 15px; }
  .whatsapp-float-wrap { right: 16px; bottom: 16px; }
  .whatsapp-status { font-size: .68rem; padding: 5px 12px; }
}

/* ==========================================================================
   Telefon floating buton
   ========================================================================== */
.phone-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: #fff;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
  font-weight: 700;
  font-size: .9rem;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.phone-float:hover { transform: translateY(-2px); color: #fff; filter: brightness(1.08); box-shadow: 0 8px 22px rgba(0,0,0,.45); }
.phone-float svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 560px) {
  .phone-float .phone-label { display: none; }
  .phone-float { padding: 15px; left: 16px; bottom: 16px; }
}

/* ==========================================================================
   404 / search / misc
   ========================================================================== */
.not-found { text-align: center; padding: 100px 0; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: .85rem;
}
.pagination .current { border-color: var(--color-accent); color: var(--color-accent); }
.pagination a:hover { border-color: var(--color-accent); color: var(--color-accent); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-accent); color: #000; padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   Mekan galeri lightbox
   ========================================================================== */
.single-article-content a.kgh-lightbox { display: block; cursor: zoom-in; }
.kgh-lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity var(--transition);
  z-index: 9999; padding: 40px 20px;
}
.kgh-lightbox-overlay.is-open { opacity: 1; visibility: visible; }
.kgh-lightbox-img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.kgh-lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; padding: 8px;
}
.kgh-lightbox-close:hover { color: var(--color-accent); }
