/* ═══════════════════════════════════════════════════════
   boutich / events.css
   Etkinlikler sayfasına özgü stiller
   Yükleme sırası: base.css → events.css
═══════════════════════════════════════════════════════ */

/* ── CURSOR ─────────────────────────────────────────── */
html, body { cursor: none !important; }
a, button, [role="button"], input, select, textarea, label { cursor: none !important; }

#cursor-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(242,180,54,.55);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .2s;
}
body.cursor-hover #cursor-dot   { width: 14px; height: 14px; background: var(--green-deep); }
body.cursor-hover #cursor-ring  { width: 50px; height: 50px; border-color: rgba(26,51,38,.4); }

/* ── BASE ────────────────────────────────────────────── */
body { font-family: var(--font-sans); background: var(--cream); color: var(--ink); }
a    { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR (index.html ile birebir aynı) ───────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 28px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .32s ease, box-shadow .32s ease;
}
.navbar.scrolled {
  background: rgba(26,51,38,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 28px rgba(0,0,0,.2);
}
/* Etkinlikler sayfasında navbar baştan koyu (kremalı arka plan üstünde) */
.navbar { background: rgba(26,51,38,.97); box-shadow: 0 1px 28px rgba(0,0,0,.2); }

.navbar-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  line-height: 1;
}

.logo-icon {
  width: 22px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 2px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-links   { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 12.5px; font-weight: 400; letter-spacing: .09em;
  color: rgba(255,255,255,.75);
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover                { color: #fff; }
.nav-links a:hover::after         { width: 100%; }
.nav-links a.active-page          { color: var(--gold); }
.nav-links a.active-page::after   { width: 100%; }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--gold); color: var(--green-deep) !important;
  border-radius: 50px; font-weight: 500 !important; letter-spacing: .05em !important;
  transition: background .3s, color .3s, transform .3s !important;
}
.nav-cta::after  { display: none !important; }
.nav-cta:hover   { background: var(--gold-dark) !important; color: #fff !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: #fff; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(22,44,32,.99); backdrop-filter: blur(14px);
  padding: 20px 24px 28px;
  flex-direction: column; gap: 2px;
  display: none; opacity: 0; transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.nav-mobile.open         { display: flex; opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-mobile a            { font-family: var(--font-serif); font-size: 18px; font-weight: 300; letter-spacing: .04em; color: rgba(255,255,255,.78); padding: 12px 0; border-bottom: .5px solid rgba(255,255,255,.07); transition: color .3s; }
.nav-mobile a:hover      { color: var(--gold); }
.nav-mobile-cta          { margin-top: 16px; padding: 14px; background: var(--gold); color: var(--green-deep) !important; text-align: center; font-family: var(--font-sans) !important; font-size: 13px !important; font-weight: 600 !important; border-radius: 50px; border-bottom: none !important; }
.nav-mobile-cta:hover    { background: var(--gold-dark) !important; color: #fff !important; }

/* ── BRANCH TABS (şube seçim tabları) — sayfanın en üstünde, navbar altında ── */
.branch-tabs-wrap {
  background: var(--cream);
  padding: 110px 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.branch-tabs-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.branch-tabs {
  display: flex; gap: 0;
  border-bottom: 1.5px solid rgba(26,51,38,.1);
}
.branch-tab {
  position: relative;
  padding: 14px 28px 16px;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  color: var(--text-muted);
  background: none; border: none; cursor: pointer;
  transition: color .28s;
  display: flex; align-items: center; gap: 8px;
}
.branch-tab::after {
  content: '';
  position: absolute; bottom: -1.5px; left: 0; right: 0;
  height: 2.5px; background: var(--green-deep);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.branch-tab:hover { color: var(--green-deep); }
.branch-tab.active { color: var(--green-deep); }
.branch-tab.active::after { transform: scaleX(1); }

.branch-tab-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.dot-all      { background: linear-gradient(135deg, var(--gold) 0%, var(--green-light) 100%); }
.dot-incek    { background: var(--green-light); }
.dot-ayranci  { background: var(--gold); }

.branch-tab-count {
  background: rgba(26,51,38,.09);
  color: var(--text-muted);
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 50px;
  transition: background .28s, color .28s;
}
.branch-tab.active .branch-tab-count {
  background: var(--green-faint); color: var(--green-mid);
}

/* ── EVENTS SECTION ─────────────────────────────────── */
.events-section { padding: 36px 0 100px; }

.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 10px;
}
.results-text { font-size: 13px; color: var(--text-faint); }
.results-text strong { color: var(--green-deep); font-weight: 600; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ── EVENT CARD ─────────────────────────────────────── */
.event-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,51,38,.06);
  transition: transform .32s ease, box-shadow .32s ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  opacity: 0; transform: translateY(24px);
  animation: cardIn .5s ease forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.event-card.hidden { display: none !important; }
.event-card:hover  { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(26,51,38,.13); }

.event-card:nth-child(1)  { animation-delay: .05s; }
.event-card:nth-child(2)  { animation-delay: .10s; }
.event-card:nth-child(3)  { animation-delay: .15s; }
.event-card:nth-child(4)  { animation-delay: .20s; }
.event-card:nth-child(5)  { animation-delay: .25s; }
.event-card:nth-child(6)  { animation-delay: .30s; }
.event-card:nth-child(7)  { animation-delay: .35s; }
.event-card:nth-child(8)  { animation-delay: .40s; }

.event-img { aspect-ratio: 3/2; overflow: hidden; position: relative; background: var(--cream-dark); }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; display: block; }
.event-card:hover .event-img img { transform: scale(1.07); }

.event-date-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green-deep); color: #fff;
  padding: 8px 12px; border-radius: 12px; text-align: center; line-height: 1.2;
}
.event-date-badge .day   { font-family: var(--font-serif); font-size: 22px; font-weight: 400; display: block; }
.event-date-badge .month { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; opacity: .76; }

.event-branch-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--green-deep);
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
}

.event-sold-out {
  position: absolute; inset: 0;
  background: rgba(26,51,38,.58);
  display: flex; align-items: center; justify-content: center;
}
.event-sold-out span {
  background: #fff; color: var(--green-deep);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; transform: rotate(-3deg);
}

.event-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.event-category {
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 7px;
}
.event-body h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 400;
  color: var(--green-deep); line-height: 1.3; margin-bottom: 8px;
}
.event-body p { font-size: 13px; line-height: 1.72; color: var(--text-muted); margin-bottom: 14px; flex: 1; }

.event-meta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.meta-item      { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-faint); }
.meta-item svg  { width: 13px; height: 13px; stroke: var(--text-faint); flex-shrink: 0; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.capacity-text  { font-size: 11px; color: var(--text-faint); display: flex; justify-content: space-between; margin-bottom: 4px; }
.capacity-bar   { height: 3px; background: rgba(26,51,38,.08); border-radius: 2px; overflow: hidden; margin-bottom: 14px; }
.capacity-fill  { height: 100%; border-radius: 2px; background: var(--green-light); }
.capacity-fill.warn { background: var(--gold-dark); }
.capacity-fill.full { background: #b42828; }

.event-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: .5px solid rgba(26,51,38,.07);
}
.event-price        { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--green-deep); }
.event-price small  { font-family: var(--font-sans); font-size: 11px; color: var(--text-faint); display: block; }

.btn-ticket {
  padding: 9px 20px;
  background: var(--green-deep); color: #fff;
  font-size: 12px; font-weight: 500; letter-spacing: .07em;
  border-radius: 50px;
  transition: background .28s, transform .28s;
  display: inline-block;
}
.btn-ticket:hover    { background: var(--green-mid); transform: translateY(-1px); }
.btn-ticket.disabled { background: var(--cream-dark); color: var(--text-faint); cursor: not-allowed; pointer-events: none; }

/* ── EMPTY STATE ────────────────────────────────────── */
.empty-state {
  grid-column: 1 / -1;
  padding: 72px 24px; text-align: center;
}
.empty-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--green-deep); margin-bottom: 8px; }
.empty-state p  { font-size: 14px; color: var(--text-muted); }
.empty-reset {
  display: inline-block; margin-top: 18px; padding: 10px 24px;
  background: var(--green-deep); color: #fff; border-radius: 50px;
  font-size: 13px; font-weight: 500; transition: background .28s;
}
.empty-reset:hover { background: var(--green-mid); }

/* ── FOOTER (index.html ile birebir aynı) ───────────── */
.footer-new { background: var(--green-deep); padding: 64px 0 0; overflow: hidden; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: .5px solid rgba(255,255,255,.08);
}
.footer-brand-logo    { margin-bottom: 14px; }
.footer-brand-logo .logo-icon { width: 36px; }
.footer-brand-tagline { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 22px; }
.footer-social-links  { display: flex; gap: 10px; }
.footer-social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: .5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .3s;
}
.footer-social-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(242,180,54,.08); }
.footer-social-links svg { width: 15px; height: 15px; }

.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: rgba(255,255,255,.58); transition: color .3s; line-height: 1.4; }
.footer-col-links a:hover { color: var(--gold); }
.footer-col-info  { display: flex; flex-direction: column; gap: 10px; }
.footer-col-info span  { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-col-info strong { display: block; font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1px; }

.footer-big-text {
  font-family: var(--font-serif); font-size: clamp(56px,10vw,120px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.04);
  text-align: center; line-height: 1; padding: 20px 0 0;
  letter-spacing: -.02em; white-space: nowrap; overflow: hidden;
}
.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 18px 0 24px; margin-top: -8px;
}
.footer-bottom-bar p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-legal        { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a      { font-size: 12px; color: rgba(255,255,255,.25); transition: color .3s; }
.footer-legal a:hover{ color: rgba(255,255,255,.55); }

/* ── REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .events-grid    { grid-template-columns: 1fr 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links      { display: none; }
  .nav-toggle     { display: flex; }
  .events-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container      { padding: 0 18px; }
  .events-grid    { grid-template-columns: 1fr; }
  .branch-tab     { padding: 12px 14px 14px; font-size: 13px; }
  .footer-top     { grid-template-columns: 1fr; gap: 28px; }
  .footer-big-text{ font-size: 52px; }
  .branch-tabs-wrap { padding-top: 72px; }
}