/* HİÇBİR YERDE BORDER-RADIUS YOK — keskin köşeler */
*, *::before, *::after { border-radius: 0 !important; }

/* ============================================================
   2. TÜRK KÜLTÜR KAMPI 2026 — Ortak Stil
   Yapı: Chesapeake tarzı · Video hero · Dropdown navbar
   Düz renk (gradyan yok) · İkonlar (emoji yok) · Türk motifleri
   ============================================================ */

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #141414;
  --muted: #6b6b6b;

  --red: #e2231a;
  /* tema: SİYAH + BEYAZ + KIRMIZI — tüm vurgular kırmızı */
  --orange: #e2231a;
  --blue: #e2231a;
  --purple: #e2231a;
  --green: #e2231a;
  --yellow: #e2231a;

  --line: rgba(0,0,0,.12);

  --font-display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-body: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;

  --maxw: 1280px;
  --radius: 22px;
  --shadow: 0 18px 40px rgba(120,70,20,.14);
  --shadow-lg: 0 30px 70px rgba(120,70,20,.22);
  --ease: cubic-bezier(.16,1,.3,1);
  --navh: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); color: var(--ink); line-height: 1.65; overflow-x: hidden; background: var(--bg); -webkit-font-smoothing: antialiased; }

body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23000000' stroke-width='1.3'%3E%3Cpath d='M60 18 L74 32 L94 32 L94 52 L108 66 L94 80 L94 100 L74 100 L60 114 L46 100 L26 100 L26 80 L12 66 L26 52 L26 32 L46 32 Z'/%3E%3Ccircle cx='60' cy='66' r='12'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--maxw)); margin-inline: auto; }

/* ikonlar */
svg.ic { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* tipografi */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.06; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); background: rgba(226,35,26,.10); padding: .4rem 1rem; border-radius: 999px; }
.eyebrow svg.ic { font-size: 1.1rem; }
.section-title { font-size: clamp(2rem, 5.2vw, 3.4rem); margin: 1rem 0 1.2rem; color: var(--ink); }
.section-title .accent { color: var(--red); } .section-title .o { color: var(--orange); } .section-title .t { color: var(--blue); } .section-title .p { color: var(--purple); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }

.c-orange{color:var(--orange)} .c-blue{color:var(--blue)} .c-purple{color:var(--purple)} .c-green{color:var(--green)} .c-yellow{color:var(--yellow)} .c-red{color:var(--red)}

.motif-band {
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--red) 0 28px, var(--yellow) 28px 56px, var(--blue) 56px 84px, var(--purple) 84px 112px, var(--green) 112px 140px);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14'%3E%3Cpath d='M0 14 L14 0 L28 14 Z' fill='%23000'/%3E%3C/svg%3E") repeat-x;
  -webkit-mask-size: 28px 14px; mask-size: 28px 14px;
}

/* ============================================================
   NAVBAR (Chesapeake tarzı)
   ============================================================ */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .35s var(--ease); background: rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.14); }
.nav-wrap.over-hero { background: rgba(255,255,255,.04); border-bottom-color: rgba(255,255,255,.10); }

.nav { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2.6vw, 2.4rem); height: var(--navh); padding: 0 clamp(1rem, 4vw, 2.6rem); }
/* scroll edilince: logo üstte, hamburger hemen altında, ortada */
.nav-wrap.compact .nav { flex-direction: column; justify-content: center; gap: .35rem; height: auto; padding: .55rem 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.brand img { height: 66px; width: auto; transition: transform .3s var(--ease); }
.nav-wrap.scrolled .brand img { height: 54px; }
.brand:hover img { transform: scale(1.05) rotate(-2deg); }

/* üstteyken menü logo ve butonla birlikte ortada toplanır */
.menu { display: flex; align-items: center; gap: .3rem; margin: 0; list-style: none; }
.menu > li { position: relative; }
.menu > li > a { display: inline-flex; align-items: center; gap: .35rem; padding: .7rem .95rem; font-weight: 500; font-size: 1rem; color: var(--ink); position: relative; }
.menu > li > a .chev { width: 14px; height: 14px; transition: transform .25s; }
.menu > li:hover > a .chev { transform: rotate(180deg); }
.menu > li > a::after { content:""; position:absolute; left:.95rem; right:.95rem; bottom:.5rem; height:3px; background: currentColor; transform: scaleX(0); transform-origin:left; transition: transform .28s var(--ease); }
.menu > li > a:hover::after, .menu > li > a.active::after { transform: scaleX(1); }
.menu .c-orange::after{} /* renkler aşağıda */
.menu > li:nth-child(1) > a { color: var(--orange) } .menu > li:nth-child(2) > a { color: var(--blue) }
.menu > li:nth-child(3) > a { color: var(--purple) } .menu > li:nth-child(4) > a { color: var(--green) }
.menu > li:nth-child(5) > a { color: var(--red) }

/* over-hero: menü beyaz */
.nav-wrap.over-hero .menu > li > a { color: #fff; }
.nav-wrap.over-hero .brand .brand-fallback { color:#fff; }

/* MEGA DROPDOWN (Chesapeake tarzı, tam genişlik) */
.menu > li.mega-parent { position: static; }
.mega { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--shadow-lg); border-top: 4px solid var(--orange); padding: 2.6rem 0 2.8rem; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s var(--ease); }
.menu > li:nth-child(3).mega-parent .mega { border-top-color: var(--purple); }
.menu > li.mega-parent:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { width: min(94%, var(--maxw)); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.mega-col h4 { font-size: 1.5rem; color: var(--ink); margin-bottom: .8rem; }
.mega-col p { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; }
.mega-list { list-style: none; counter-reset: m; }
.mega-list li { counter-increment: m; }
.mega-list a { display: flex; align-items: center; gap: 1rem; padding: .75rem 0; font-weight: 700; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); transition: color .2s, padding .25s var(--ease); }
.mega-list a::before { content: counter(m, decimal-leading-zero); font-family: var(--font-display); color: var(--orange); font-size: .95rem; }
.mega-list a:hover { color: var(--orange); padding-left: .5rem; }
.mega-feature { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); }
.mega-feature img { width: 100%; height: 100%; object-fit: cover; }
.mega-feature .cap { position: absolute; inset: auto 0 0 0; padding: 1.4rem; background: rgba(20,12,6,.55); color: #fff; }
.mega-feature .cap b { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.mega-feature .cap span { font-size: .85rem; opacity: .9; }

.nav-right { display: flex; align-items: center; gap: .8rem; flex: 0 0 auto; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: none; background: rgba(43,33,24,.06); color: var(--ink); cursor: pointer; font-size: 1.1rem; transition: .25s; }
.nav-wrap.over-hero .icon-btn { background: rgba(255,255,255,.18); color: #fff; }
.icon-btn:hover { background: var(--orange); color: #fff; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 12px; font-weight: 700; font-size: .95rem; cursor: pointer; border: none; font-family: var(--font-body); transition: transform .25s var(--ease), filter .25s; }
.btn svg.ic { font-size: 1.1rem; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 22px rgba(226,35,26,.28); }
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange); }
.btn-sun { background: var(--blue); color: #fff; box-shadow: 0 10px 22px rgba(30,116,212,.28); }
.btn-sun:hover { transform: translateY(-3px); filter: brightness(1.05); }
/* Navbar: Bilet Al + Sponsor Ol ikilisi */
.nav-right .btn { padding: .6rem 1.05rem; font-size: .9rem; }
.btn-line { background: transparent; color: var(--ink); border: 2px solid var(--line); box-shadow: none; }
.btn-line:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
.nav-wrap.over-hero .btn-line { color: #fff; border-color: rgba(255,255,255,.55); }
.nav-wrap.over-hero .btn-line:hover { background: #fff; color: var(--red); border-color: #fff; }
/* tam menüdeki iki buton */
.fm-btns { display: flex; gap: .6rem; }
.fm-btns .btn { flex: 1; justify-content: center; }
.fm-info .btn-line { color: #fff; border-color: rgba(255,255,255,.4); background: transparent; }
.fm-info .btn-line:hover { background: #fff; color: var(--red); border-color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* hamburger (sadece scroll + mobil) */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 28px; height: 3px; border-radius: 3px; background: var(--ink); transition: .3s var(--ease); }
.nav-wrap.over-hero .nav-burger span { background: #fff; }

/* scroll edince: menü+sağ gizle, logo+hamburger yanyana */
.nav-wrap.compact .menu, .nav-wrap.compact .nav-right { display: none; }
.nav-wrap.compact .nav-burger { display: flex; margin: 0; }
.nav-wrap.compact .brand img { height: 46px; }

/* TAM EKRAN MENÜ (üst düzey, iki kolon) */
.fullmenu { position: fixed; inset: 0; z-index: 200; background: var(--ink); opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; overflow-y: auto; }
.fullmenu::before { content:""; position:absolute; inset:0; opacity:.07; pointer-events:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.4'%3E%3Cpath d='M60 18 L74 32 L94 32 L94 52 L108 66 L94 80 L94 100 L74 100 L60 114 L46 100 L26 100 L26 80 L12 66 L26 52 L26 32 L46 32 Z'/%3E%3C/g%3E%3C/svg%3E"); background-size:120px 120px; }
.fullmenu.open { opacity: 1; visibility: visible; }
.fullmenu .fm-close { position: fixed; top: 1.8rem; right: 2rem; bottom: auto; z-index: 5; width: 56px; height: 56px; border: 2px solid rgba(255,255,255,.28); background: rgba(20,20,20,.6); color: #fff; cursor: pointer; display: grid; place-items: center; transition: .3s; }
.fullmenu .fm-close svg { width: 24px; height: 24px; }
.fullmenu .fm-close:hover { transform: rotate(90deg); border-color: #fff; background: rgba(255,255,255,.08); }

.fm-inner { position: relative; z-index: 2; min-height: 100vh; width: min(94%, var(--maxw)); margin-inline: auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: 3rem 0 2rem; }

.fm-left .fm-eyebrow { display: inline-block; color: var(--orange); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; font-size: .8rem; margin-bottom: .8rem; }
.fm-nav { display: flex; flex-direction: column; }
.fm-nav a { display: flex; align-items: center; gap: 1.2rem; padding: clamp(.35rem,1vw,.7rem) 0; border-bottom: 1px solid rgba(255,255,255,.10); font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.7rem); color: #fff; transition: color .25s var(--ease), padding-left .35s var(--ease); }
.fm-nav a .fm-n { font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.4); width: 2.4rem; flex: 0 0 auto; }
.fm-nav a .fm-arrow { margin-left: auto; width: 30px; height: 30px; opacity: 0; transform: translateX(-12px); transition: .3s var(--ease); }
.fm-nav a:nth-child(1):hover { color: var(--orange) } .fm-nav a:nth-child(2):hover { color: var(--blue) }
.fm-nav a:nth-child(3):hover { color: var(--purple) } .fm-nav a:nth-child(4):hover { color: var(--green) }
.fm-nav a:nth-child(5):hover { color: var(--yellow) } .fm-nav a:nth-child(6):hover { color: var(--red) }
.fm-nav a:hover { padding-left: 1.2rem; } .fm-nav a:hover .fm-arrow { opacity: 1; transform: translateX(0); }

.fm-right { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: 22px; overflow: hidden; }
.fm-right .fm-photo { width: 100%; height: 180px; object-fit: cover; }
.fm-info { padding: 1.6rem 1.6rem 1.8rem; }
.fm-info h4 { font-family: var(--font-display); color: #fff; font-size: 1.4rem; }
.fm-info .fm-date { color: var(--orange); font-weight: 600; margin: .3rem 0 1.2rem; }
.fm-info ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.2rem; }
.fm-info ul li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.fm-info ul li svg { width: 20px; height: 20px; color: var(--orange); flex: 0 0 auto; }
.fm-social { display: flex; gap: .6rem; margin-bottom: 1.4rem; }
.fm-social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.08); color: #fff; transition: .25s; }
.fm-social a svg { width: 18px; height: 18px; }
.fm-social a:hover { background: var(--orange); }
.fm-info .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .fm-inner { grid-template-columns: 1fr; gap: 1.2rem; padding: 2.2rem 0 2rem; align-items: start; min-height: auto; }
  .fm-right { display: none; }
  /* MENÜ yazısı kapatma butonuyla aynı hizada, başlıklar yukarıda */
  .fullmenu .fm-close { top: 1.4rem; width: 48px; height: 48px; }
  .fm-left { padding-top: .55rem; }
  .fm-left .fm-eyebrow { margin-bottom: 1.6rem; font-size: .95rem; }
  .fm-nav a { font-size: clamp(2.3rem, 9vw, 3.2rem); gap: 1rem; padding: .85rem 0; }
  .fm-nav a .fm-n { font-size: 1rem; width: 2.2rem; }
  .fm-nav a .fm-arrow { width: 26px; height: 26px; }
}

/* ============================================================
   SAYFA GEÇİŞİ — renkli motif kareleri yüklenip kaplar
   ============================================================ */
.page-transition { position: fixed; inset: 0; z-index: 9999; pointer-events: none; background: #ffffff; display: grid; grid-template-columns: repeat(var(--cols, 12), 1fr); grid-auto-rows: 1fr; visibility: hidden; overflow: hidden; }
.page-transition.show { visibility: visible; }
/* içi boş, sadece çizgili (outline) motif */
.pt-tile { width: 100%; height: 100%; transform: scale(0); opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M60 14 L76 30 L98 30 L98 52 L114 68 L98 84 L98 106 L76 106 L60 122 L44 106 L22 106 L22 84 L6 68 L22 52 L22 30 L44 30 Z' fill='none' stroke='%23111111' stroke-width='4'/%3E%3C/svg%3E") center/70% no-repeat; }

/* ============================================================
   HERO — Video arka plan + büyük başlık + büyük sayaç
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: grid; place-items: start center; overflow: hidden; color: #fff; text-align: center; padding: calc(var(--navh) + 2rem) 1rem 3.5rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video { z-index: 1; }
.hero-slide { z-index: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(20,12,6,.58); }
.hero-overlay::after { content:""; position:absolute; inset:0; opacity:.12; pointer-events:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.3'%3E%3Cpath d='M60 18 L74 32 L94 32 L94 52 L108 66 L94 80 L94 100 L74 100 L60 114 L46 100 L26 100 L26 80 L12 66 L26 52 L26 32 L46 32 Z'/%3E%3C/g%3E%3C/svg%3E"); background-size:120px 120px; }
.hero-content { position: relative; z-index: 3; width: min(92%, 1000px); }
.hero-content .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.hero-content h1 { font-size: clamp(2.4rem, 8vw, 6rem); font-weight: 600; letter-spacing: .01em; text-shadow: 0 8px 30px rgba(0,0,0,.4); line-height: 1.02; }
.hero-content h1 .num2 { color: var(--orange); }
.hero-content .sub { font-size: clamp(1rem,2.4vw,1.3rem); margin-top: 1rem; color: rgba(255,255,255,.9); }

/* büyük sayaç (başlığın altında) */
.countdown { display: flex; justify-content: center; gap: clamp(.6rem,2vw,1.4rem); margin-top: 2.4rem; flex-wrap: wrap; }
.cd-box { min-width: 96px; padding: 1.1rem 1rem; text-align: center; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28); border-radius: 18px; backdrop-filter: blur(6px); }
.cd-box .num { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.4rem); font-weight: 600; line-height: 1; color: var(--red); }
.cd-box .lbl { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: .55rem; font-weight: 600; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; }
.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; display: flex; flex-direction: column-reverse; align-items: center; gap: .45rem; opacity: 1; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.scroll-cue .cue-arrow { width: 40px; height: 40px; stroke-width: 3; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); animation: cuebob 1.5s ease-in-out infinite; }
@keyframes cuebob { 0%,100%{ transform: translateY(0); opacity:.6 } 50%{ transform: translateY(7px); opacity:1 } }

/* ============================================================
   BÖLÜMLER — aşağı indikçe değişen tasarımlar
   ============================================================ */
section.block { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
section.block.alt { background: #fff; }
section.block.dark { background: var(--ink); color: #fff; }
section.block.dark .lead { color: rgba(255,255,255,.75); }
section.block.dark .section-title { color: #fff; }
section.block.dark .eyebrow { background: rgba(255,255,255,.14); color: #fff; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.rev > :first-child { order: 2; }

/* görsel + metin (Chesapeake hizmet kartları gibi) */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; margin-top: 2.5rem; }
.media-row:nth-of-type(even) .media-img { order: 2; }
.media-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.media-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.media-img:hover img { transform: scale(1.06); }
.media-txt .num-badge { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--orange); display: inline-block; margin-bottom: .4rem; }
.media-txt h3 { font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: .8rem; }
.media-txt p { color: var(--muted); }
.media-txt .ic-circle { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,122,24,.14); color: var(--orange); font-size: 1.6rem; margin-bottom: 1rem; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.stat { padding: 1.8rem 1.4rem; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); text-align: center; border-bottom: 5px solid var(--orange); }
.stat:nth-child(2){ border-bottom-color: var(--blue) } .stat:nth-child(3){ border-bottom-color: var(--purple) } .stat:nth-child(4){ border-bottom-color: var(--red) }
.stat .big { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 600; color: var(--orange); }
.stat:nth-child(2) .big{ color: var(--blue) } .stat:nth-child(3) .big{ color: var(--purple) } .stat:nth-child(4) .big{ color: var(--red) }
.stat .cap { color: var(--muted); font-size: .92rem; margin-top: .3rem; font-weight: 500; }
section.block.dark .stat { background: #000; border: 1px solid rgba(255,255,255,.12); }
section.block.dark .stat .big, section.block.dark .stat:nth-child(2) .big, section.block.dark .stat:nth-child(3) .big, section.block.dark .stat:nth-child(4) .big { color: #fff; }
section.block.dark .stat .cap { color: rgba(255,255,255,.78); }
section.block.dark .card { background: #000; border: 1px solid rgba(255,255,255,.12); }
section.block.dark .card h3 { color: #fff; }
section.block.dark .card p { color: rgba(255,255,255,.72); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2.6rem; }
.card { padding: 2rem 1.7rem; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); border-top: 5px solid var(--orange); }
.card:nth-child(6n+1){ border-top-color: var(--orange) } .card:nth-child(6n+2){ border-top-color: var(--blue) }
.card:nth-child(6n+3){ border-top-color: var(--purple) } .card:nth-child(6n+4){ border-top-color: var(--red) }
.card:nth-child(6n+5){ border-top-color: var(--green) } .card:nth-child(6n+6){ border-top-color: var(--yellow) }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card .ic-box { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; font-size: 1.7rem; margin-bottom: 1.1rem; color: var(--red);  }
.card h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--ink); }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Sponsor / Destek kayan slider ---------- */
.marquee { overflow: hidden; padding: .5rem 0; -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee + .marquee { margin-top: 1.4rem; }
.marquee-track { display: flex; gap: 1.4rem; width: max-content; animation: mq-left 30s linear infinite; }
.marquee.ltr .marquee-track { animation-name: mq-right; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mq-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.logo-item { flex: 0 0 auto; width: 260px; height: 150px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; display: grid; place-items: center; box-shadow: var(--shadow); padding: 1.2rem 1.6rem; }
.logo-item img { max-width: 100%; max-height: 104px; width: auto; object-fit: contain; }
.marquee-label { text-align: center; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
@media (max-width: 600px) { .logo-item { width: 190px; height: 118px; } .logo-item img { max-height: 80px; } }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); grid-auto-rows: 220px; grid-auto-flow: dense; gap: 16px; margin-top: 2.6rem; }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: 18px; cursor: pointer; box-shadow: var(--shadow); }
.gallery-grid figure.tall { grid-row: span 2; } .gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.1rem .9rem; background: rgba(40,20,10,.78); color:#fff; font-weight: 600; font-size: .9rem; transform: translateY(8px); opacity: 0; transition: .4s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.08); } .gallery-grid figure:hover figcaption { transform: translateY(0); opacity: 1; }

/* Galeri yıl seçici */
.gallery-years { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 2rem; }
.gallery-years:empty { display: none; }
.yr-btn { font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: .55rem 1.4rem; border: 2px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.yr-btn:hover { border-color: var(--red); color: var(--red); }
.yr-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select { background: var(--paper); border: 2px solid var(--line); border-radius: 14px; padding: .85rem 1rem; color: var(--ink); font-family: var(--font-body); font-size: .98rem; transition: border-color .25s, box-shadow .25s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,24,.14); }
.field textarea { resize: vertical; min-height: 130px; }

.info-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.info-list li { display: flex; gap: 1rem; align-items: center; background: var(--paper); padding: 1rem 1.2rem; border-radius: 16px; box-shadow: var(--shadow); }
.info-list .ic-box { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 14px; font-size: 1.3rem; color: var(--orange); }
.info-list .ic-box{ background: rgba(226,35,26,.12); color: var(--red); }
.info-list b { display: block; color: var(--ink); } .info-list span { color: var(--muted); font-size: .92rem; }

.cta-strip { margin: 2rem auto; width: min(92%, var(--maxw)); border-radius: 32px; padding: clamp(2.5rem,6vw,4.5rem) 1.5rem; text-align: center; color:#fff; position: relative; overflow: hidden; background: var(--red); box-shadow: var(--shadow-lg); }
.cta-strip::after { content:""; position:absolute; inset:0; opacity:.12; pointer-events:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.4'%3E%3Cpath d='M60 18 L74 32 L94 32 L94 52 L108 66 L94 80 L94 100 L74 100 L60 114 L46 100 L26 100 L26 80 L12 66 L26 52 L26 32 L46 32 Z'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-strip > * { position: relative; }
.cta-strip .eyebrow { background: rgba(255,255,255,.2); color: #fff; }
.cta-strip h2 { font-size: clamp(1.8rem,5vw,3rem); margin: 1rem 0; }
.cta-strip p { opacity: .92; margin-bottom: 2rem; }
.cta-strip .btn-ghost { background: #fff; color: var(--red); border: none; }

.page-head { padding: calc(var(--navh) + 3.5rem) 0 3.5rem; text-align: center; position: relative; }
.page-head h1 { font-size: clamp(2.4rem,7vw,4.6rem); } .page-head h1 .hl { color: var(--red); }
.page-head .crumbs { color: var(--muted); font-size: .9rem; margin-top: .8rem; font-weight: 500; } .page-head .crumbs a:hover { color: var(--orange); }

.lightbox { position: fixed; inset: 0; z-index: 9000; display: none; place-items: center; padding: 4vw; background: rgba(40,25,12,.9); backdrop-filter: blur(8px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .lb-cap { position: absolute; bottom: 4vh; color:#fff; font-weight: 600; }
.lb-close { position: absolute; top: 4vh; right: 5vw; width: 52px; height: 52px; border: none; background: #fff; color: var(--red); cursor: pointer; display:grid; place-items:center; transition: .3s; z-index: 3; }
.lb-close:hover { transform: rotate(90deg); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: none; background: #fff; color: var(--red); cursor: pointer; display: grid; place-items: center; transition: background .25s, color .25s; z-index: 3; }
.lb-prev svg, .lb-next svg { width: 28px; height: 28px; stroke-width: 2.2; }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }
.lb-prev:hover, .lb-next:hover { background: var(--red); color: #fff; }
@media (max-width: 600px) { .lb-prev, .lb-next { width: 46px; height: 46px; top: auto; bottom: 3vh; transform: none; } .lb-prev { left: 28vw; } .lb-next { right: 28vw; } }
/* Galeri lightbox — Paylaş / İndir */
.lb-bar { position: absolute; top: 4vh; left: 5vw; display: flex; gap: .5rem; z-index: 4; }
.lb-act { background: #fff; color: var(--ink, #15110d); border: none; padding: .55rem 1rem; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: .85rem; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; }
.lb-act.lb-share { background: var(--red); color: #fff; }
.lb-act svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-act:hover { filter: brightness(1.06); }
.lb-menu { position: absolute; top: calc(4vh + 52px); left: 5vw; background: #fff; box-shadow: 0 14px 44px rgba(0,0,0,.45); display: flex; flex-direction: column; min-width: 210px; z-index: 5; }
.lb-menu a, .lb-menu button { padding: .7rem 1.1rem; text-align: left; border: none; background: none; border-bottom: 1px solid rgba(0,0,0,.1); font: inherit; font-weight: 600; font-size: .9rem; color: var(--ink, #15110d); cursor: pointer; text-decoration: none; }
.lb-menu a:last-child, .lb-menu button:last-child { border-bottom: none; }
.lb-menu a:hover, .lb-menu button:hover { background: #faf8f3; color: var(--red); }
@media (max-width: 600px) { .lb-bar { top: auto; bottom: 11vh; left: 50%; transform: translateX(-50%); } .lb-menu { top: auto; bottom: calc(11vh + 52px); left: 50%; transform: translateX(-50%); } }
/* KVKK / Çerez onay bildirimi */
.kvkk-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 8000; background: #15110d; color: #fff; display: flex; align-items: center; justify-content: center; gap: 1.4rem; padding: 1rem 1.5rem; box-shadow: 0 -10px 34px rgba(0,0,0,.28); transform: translateY(110%); transition: transform .45s ease; flex-wrap: wrap; }
.kvkk-bar.show { transform: translateY(0); }
.kvkk-bar p { margin: 0; font-size: .9rem; line-height: 1.5; max-width: 720px; }
.kvkk-bar a { color: #ff8077; text-decoration: underline; }
.kvkk-bar-actions { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.kvkk-bar .kvkk-detay { color: #fff; opacity: .8; font-weight: 600; font-size: .88rem; white-space: nowrap; }
.kvkk-bar .kvkk-detay:hover { opacity: 1; }
.kvkk-bar .btn { padding: .6rem 1.5rem; white-space: nowrap; }
@media (max-width: 600px) { .kvkk-bar { gap: .8rem; padding: .9rem 1rem; } .kvkk-bar p { font-size: .82rem; } .kvkk-bar-actions { width: 100%; justify-content: center; } }
.map-loading { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-weight: 600; font-size: .95rem; z-index: 0; }
.map-embed.is-loaded .map-loading { display: none; }

.footer { background: #0d0d0d; color: #eaeaea; padding: 4rem 0 2rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer img { height: 56px; width: auto; max-width: 220px; margin-bottom: 1rem; }
.foot-brand { display:inline-block; font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; color: #fff; margin-bottom: 1rem; letter-spacing: .5px; }
.foot-brand span { color: var(--red); }
.foot-brand:hover { opacity: .85; }
.footer h4 { font-family: var(--font-display); color: var(--yellow); margin-bottom: 1rem; font-size: 1.05rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer a, .footer p { color: #cdbfae; font-size: .92rem; } .footer a:hover { color: var(--yellow); }
.footer .socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer .socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); font-size: 1.1rem; }
.footer .socials a:hover { background: var(--orange); color: #fff; }
.footer .copy { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem 1.5rem; text-align: left; color: #9c8d7b; font-size: .85rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); }
.made-by { display: inline-flex; align-items: center; gap: .6rem; margin-top: .8rem; text-decoration: none; }
.made-by img { height: 22px; display: block; position: relative; top: 8px; }
.made-by .mb-txt { display: inline-flex; align-items: center; gap: .6rem; font-family: "Press Start 2P", "Segoe UI", monospace; font-weight: 400; letter-spacing: 0; font-size: .85rem; line-height: 1.4; }
.made-by .mb-txt b { color: #ffffff; font-weight: 400; }
.made-by .mb-txt span { color: #00fefb; font-weight: 400; }
.made-by:hover .mb-txt b { color: #00fefb; }
.fm-credit { position: absolute; right: 0; bottom: 1.6rem; display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; opacity: .95; }
.fm-credit img { height: 38px; display: block; }
.fm-credit .mb-txt { display: inline-flex; align-items: center; gap: .55rem; font-family: "Press Start 2P", "Segoe UI", monospace; font-weight: 400; letter-spacing: 0; font-size: .72rem; line-height: 1.4; }
.fm-credit .mb-txt b { color: #fff; font-weight: 400; }
.fm-credit .mb-txt span { color: #00fefb; font-weight: 400; }
.fm-credit:hover .mb-txt b { color: #00fefb; }

/* animasyonlu öğeler yalnızca JS hazırsa gizlenir (FOUC önlenir) */
.has-js .reveal { opacity: 0; transform: translateY(40px); }
.has-js .gallery-grid figure { opacity: 0; }

@media (max-width: 980px) {
  .menu, .nav-right { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .hero-grid, .split, .split.rev > :first-child { grid-template-columns: 1fr; order: 0; }
  .split { grid-template-columns: 1fr; }
  .media-row, .media-row:nth-of-type(even) .media-img { grid-template-columns: 1fr; order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure.wide { grid-column: span 1; }
}
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .cd-box { min-width: 70px; } }
@media (prefers-reduced-motion: reduce) { * { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

/* ---- Geniş ekranlar (full HD üstü / 27-32") ---- */
@media (min-width: 1600px) {
  :root { --maxw: 1480px; }
  .fm-nav a { font-size: clamp(2rem, 2.6vw, 3rem); }
}
@media (min-width: 2000px) {
  :root { --maxw: 1720px; --navh: 96px; }
  html { font-size: 18px; }
  .fm-nav a { font-size: 3.2rem; }
  .fm-right .fm-photo { height: 240px; }
}
@media (min-width: 2560px) {
  :root { --maxw: 2040px; }
  html { font-size: 20px; }
  .fm-nav a { font-size: 3.6rem; }
}

/* ============================================================
   DİL ANAHTARI (TR | EN)
   ============================================================ */
.lang-switch { display: inline-flex; border: 2px solid var(--line); flex: 0 0 auto; overflow: hidden; }
.lang-switch button { background: none; border: none; padding: .42rem .72rem; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .04em; cursor: pointer; color: var(--ink); transition: background .2s, color .2s; }
.lang-switch button + button { border-left: 2px solid var(--line); }
.lang-switch button:hover { background: rgba(226,35,26,.10); }
.lang-switch button.active { background: var(--red); color: #fff; }
.nav-wrap.over-hero .lang-switch { border-color: rgba(255,255,255,.45); }
.nav-wrap.over-hero .lang-switch button { color: #fff; }
.nav-wrap.over-hero .lang-switch button + button { border-left-color: rgba(255,255,255,.45); }
.nav-wrap.over-hero .lang-switch button:hover { background: rgba(255,255,255,.16); }
.nav-wrap.over-hero .lang-switch button.active { background: #fff; color: var(--red); }
/* tam ekran menüdeki dil anahtarı */
.fm-lang { margin: 1.2rem 0 .2rem; }
.fm-lang .lang-switch { border-color: rgba(255,255,255,.30); }
.fm-lang .lang-switch button { color: #fff; }
.fm-lang .lang-switch button + button { border-left-color: rgba(255,255,255,.30); }
.fm-lang .lang-switch button.active { background: #fff; color: var(--ink); }

/* ============================================================
   TAKVİME EKLE (hero) — açılır menü
   ============================================================ */
.btn-outline-light { background: rgba(255,255,255,.10); color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-light:hover { background: #fff; color: var(--red); border-color: #fff; transform: translateY(-3px); }
.cal-add { position: relative; display: inline-block; }
.cal-menu { position: absolute; top: calc(100% + .55rem); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 240px; background: #fff; border: 2px solid var(--line); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease); z-index: 30; }
.cal-add.open .cal-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cal-menu a { display: flex; align-items: center; gap: .65rem; padding: .85rem 1.1rem; color: var(--ink); font-weight: 600; font-size: .95rem; border-bottom: 1px solid var(--line); text-align: left; }
.cal-menu a:last-child { border-bottom: none; }
.cal-menu a svg { width: 20px; height: 20px; color: var(--red); flex: 0 0 auto; }
.cal-menu a:hover { background: var(--red); color: #fff; }
.cal-menu a:hover svg { color: #fff; }

/* ============================================================
   SSS — akordeon
   ============================================================ */
.faq { max-width: 880px; margin: 2.8rem auto 0; }
.faq-item { border: 2px solid var(--line); border-top: none; background: #fff; }
.faq-item:first-child { border-top: 2px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; text-align: left; background: none; border: none; cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 2.4vw, 1.18rem); color: var(--ink); line-height: 1.35; }
.faq-q:hover { color: var(--red); }
.faq-ic { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border: 2px solid var(--red); color: var(--red); transition: transform .3s var(--ease), background .3s, color .3s; }
.faq-ic svg { width: 16px; height: 16px; stroke-width: 2.6; }
.faq-item.open .faq-ic { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 1rem; }
section.block.dark .faq-item { background: #000; border-color: rgba(255,255,255,.14); }
section.block.dark .faq-q { color: #fff; }
section.block.dark .faq-a-inner { color: rgba(255,255,255,.72); }

/* ============================================================
   E-BÜLTEN şeridi
   ============================================================ */
.newsletter { background: var(--ink); color: #fff; padding: clamp(2.6rem, 6vw, 4.2rem) 0; position: relative; overflow: hidden; }
.newsletter::after { content: ""; position: absolute; inset: 0; opacity: .07; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.3'%3E%3Cpath d='M60 18 L74 32 L94 32 L94 52 L108 66 L94 80 L94 100 L74 100 L60 114 L46 100 L26 100 L26 80 L12 66 L26 52 L26 32 L46 32 Z'/%3E%3C/g%3E%3C/svg%3E"); background-size: 120px 120px; }
.newsletter .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.newsletter .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.newsletter h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 1rem 0 .6rem; color: #fff; }
.newsletter p { color: rgba(255,255,255,.78); max-width: 48ch; }
.news-form { display: flex; gap: .7rem; }
.news-form input { flex: 1; min-width: 0; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.28); color: #fff; padding: .9rem 1.1rem; font-family: var(--font-body); font-size: 1rem; transition: border-color .25s, box-shadow .25s; }
.news-form input::placeholder { color: rgba(255,255,255,.55); }
.news-form input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(226,35,26,.22); }
.news-form button { flex: 0 0 auto; }
.news-note { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .9rem; }
.news-msg { font-size: .92rem; font-weight: 600; margin-top: .9rem; min-height: 1.2em; }
.news-msg.ok { color: #6ee787; } .news-msg.err { color: #ff8a80; }
@media (max-width: 900px) { .newsletter .container { grid-template-columns: 1fr; } .news-form { flex-direction: column; } .news-form button { width: 100%; justify-content: center; } }

/* ============================================================
   NASIL GELİNİR / ULAŞIM — adres bloğu
   ============================================================ */
.ulasim-venue { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.4rem; padding: 1.4rem 1.6rem; background: var(--paper); border-left: 5px solid var(--red); box-shadow: var(--shadow); }
.ulasim-venue .uv { display: flex; flex-direction: column; gap: .2rem; }
.ulasim-venue .uv .lbl { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.ulasim-venue .uv .val { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }

/* ===================== Bilet Al — Mağaza Modalı ===================== */
.store-modal{position:fixed;inset:0;z-index:2000;display:none;align-items:center;justify-content:center;padding:1.2rem;background:rgba(15,12,10,.62);backdrop-filter:blur(6px)}
.store-modal.open{display:flex;animation:storeFade .25s ease}
@keyframes storeFade{from{opacity:0}to{opacity:1}}
.store-card{position:relative;width:100%;max-width:440px;background:#fff;border-radius:22px;padding:2.2rem 1.8rem 1.8rem;text-align:center;box-shadow:0 30px 80px rgba(0,0,0,.35);animation:storeUp .3s cubic-bezier(.2,.8,.2,1)}
@keyframes storeUp{from{transform:translateY(24px);opacity:0}to{transform:none;opacity:1}}
.store-x{position:absolute;top:.8rem;right:1rem;border:0;background:transparent;font-size:1.8rem;line-height:1;color:#9a938c;cursor:pointer}
.store-logo{width:74px;height:74px;object-fit:contain;margin:0 auto .8rem}
.store-card h3{font-size:1.35rem;font-weight:600;margin:0 0 .5rem}
.store-card p{color:#6f665f;font-size:.96rem;line-height:1.5;margin:0 0 1.4rem}
.store-btns{display:grid;gap:.7rem}
.store-b{display:flex;align-items:center;gap:.8rem;padding:.85rem 1.1rem;border-radius:14px;text-decoration:none;color:#fff;background:#111;transition:transform .15s ease,box-shadow .15s ease}
.store-b:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,.22)}
.store-b svg{width:26px;height:26px;flex:none}
.store-b.apple svg path{fill:#fff}
.store-b span{display:flex;flex-direction:column;align-items:flex-start;line-height:1.15}
.store-b small{font-size:.68rem;opacity:.8;text-transform:uppercase;letter-spacing:.06em}
.store-b b{font-size:1.05rem;font-weight:600}
.store-how{display:inline-block;margin-top:1.1rem;color:#e2231a;font-weight:600;font-size:.92rem;text-decoration:none}
.store-how:hover{text-decoration:underline}
/* Footer mobil uygulama rozetleri */
.app-badges{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:.7rem}
.app-badge{display:inline-flex;align-items:center;gap:.55rem;padding:.5rem .8rem;border-radius:11px;background:#111;color:#fff;text-decoration:none;font-size:.8rem;transition:transform .15s ease}
.app-badge:hover{transform:translateY(-2px)}
.app-badge svg{width:20px;height:20px;flex:none;fill:#fff}
.app-badge b{font-weight:600}

/* ===================== Bilet Sayfası ===================== */
.ticket-intro{display:grid;grid-template-columns:1.2fr .8fr;gap:2.5rem;align-items:center}
.ticket-visual{text-align:center}
.ticket-visual img{max-width:230px;width:60%;filter:drop-shadow(0 20px 40px rgba(0,0,0,.15))}
.ticket-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.tstep{position:relative;background:#fff;border:1px solid #eee5dd;border-radius:18px;padding:1.6rem 1.3rem}
.tstep-n{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:#e2231a;color:#fff;font-weight:700;font-size:1.05rem;margin-bottom:.8rem}
.tstep h3{font-size:1.08rem;font-weight:600;margin:0 0 .4rem}
.tstep p{font-size:.92rem;color:#6f665f;line-height:1.5;margin:0}
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.fcard{background:#fff;border:1px solid #eee5dd;border-radius:18px;padding:1.5rem 1.3rem}
.fcard h3{font-size:1.05rem;font-weight:600;margin:0 0 .4rem}
.fcard p{font-size:.92rem;color:#6f665f;line-height:1.5;margin:0}
@media(max-width:860px){.ticket-intro{grid-template-columns:1fr}.ticket-visual{order:-1}.ticket-steps,.feature-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.ticket-steps,.feature-grid{grid-template-columns:1fr}}

/* Hero butonları — hepsi aynı hizada ve aynı yükseklikte */
.hero-cta{align-items:center}
.hero-cta .cal-add{display:flex}
.hero-cta .cal-add>.btn{width:100%}
.hero-cta .btn-primary,.hero-cta .btn-sun{border:2px solid transparent}

/* Mobil: hero butonları 2x2 eşit grid */
@media(max-width:560px){
  .hero-cta{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;width:100%}
  .hero-cta .btn{width:100%;justify-content:center;text-align:center}
  .hero-cta .cal-add{display:block;width:100%}
}

/* Erişilebilirlik: footer başlıkları koyu zeminde yeterli kontrast */
.footer h4{color:#ff5a4d}

/* Failsafe: GSAP gec/gelmezse reveal iceriDi yine de gorunur (LCP korunur) */
.no-anim .reveal{opacity:1 !important;transform:none !important}

/* Hero'da tek Bilet Al butonu — her ekranda ortada */
.hero .hero-cta{display:flex;justify-content:center}
@media(max-width:560px){ .hero .hero-cta{display:flex;grid-template-columns:none} .hero .hero-cta .btn{width:auto} }

/* Ana hero: bilet butonu her ekranda, hero yazilari mobilde ortali */
.hero .hero-cta {
  width: 100%;
  justify-content: center;
}
.hero .hero-cta > [data-bilet] {
  margin-inline: auto;
}
@media (max-width: 560px) {
  .hero {
    place-items: center;
    padding-top: var(--navh);
    padding-bottom: var(--navh);
  }
  .hero .hero-content {
    transform: translateY(-5rem);
  }
  .hero .hero-content,
  .hero .hero-content h1,
  .hero .hero-content .eyebrow {
    text-align: center;
  }
  .hero .hero-content .eyebrow {
    justify-content: center;
    font-size: .98rem;
    padding: .6rem 1.15rem;
  }
  .hero .hero-content h1 {
    font-size: 3.2rem;
  }
  .hero .countdown {
    gap: .45rem;
  }
  .hero .cd-box {
    min-width: 79px;
    padding: 1.3rem .7rem;
  }
  .hero .cd-box .num {
    font-size: 2.4rem;
  }
  .hero .cd-box .lbl {
    font-size: .78rem;
  }
}

/* Büyük monitör (27" ~1920px ve üzeri) — hero içeriğini biraz aşağı al */
@media (min-width:1600px){ .hero{ padding-top: calc(var(--navh) + 12vh); } }
@media (min-width:2200px){ .hero{ padding-top: calc(var(--navh) + 16vh); } }
