/* =========================================================
   PASSO · Hatıra Bilet — Design System
   ========================================================= */
:root {
  /* Colors */
  --bg:            #0a0a0c;
  --bg-elevated:   #141417;
  --card:          #16161b;
  --card-hover:    #1c1c22;
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text:          #f5f5f7;
  --text-muted:    #9a9aa2;
  --text-dim:      #6e6e76;

  --gold:          #e9c46a;
  --gold-bright:   #f6d77e;
  --gold-deep:     #c79a3a;
  --gold-grad:     linear-gradient(135deg, #f6d77e 0%, #d4a017 100%);

  --purple:        #5b4fcf;
  --purple-bright: #6c5ce7;
  --red:           #e23744;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Poppins', var(--font);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Top corner light beams + dotted backdrop ===== */
.top-beams {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1000px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  /* only the dotted texture lives here; the gold glow is a blurred ::before */
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.6px);
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: -8px -8px;
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 98%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 98%);
}
.beam {
  position: absolute;
  top: 0;
  width: min(46vw, 620px);
  height: auto;
}
.beam-left  { left: 0; }
.beam-right { right: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: relative;          /* not sticky — scrolls away with the page */
  z-index: 5;
  padding: 40px 0 0;           /* space above PASSO, none below (badge sits close) */
  background: transparent;
}
.header-inner { display: flex; justify-content: center; align-items: center; }
.logo { display: inline-flex; }
.logo img { height: 26px; width: auto; display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: 18px;           /* badge sits close under PASSO */
  text-align: center;
  overflow: hidden;
}
/* gold glow is now a single blurred field in .top-beams::before —
   no separate hero source, so there's no dark valley / seam between them */
.hero-inner { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  height: 33px;
  width: auto;
  margin-bottom: 28px;
}

.hero-title {
  text-align: center;
  margin-bottom: 26px;
}
.hero-title-img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: min(528px, 90vw);
  height: auto;
  /* very light neutral shadow only — no gold glow / blob behind the text */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.hero-sub {
  max-width: 760px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 0;
  /* head-room so phones aren't clipped at the top when they rise on hover
     (overflow:hidden stays — it clips the horizon glow's lower overhang) */
  padding-top: 32px;
  overflow: hidden;
}
/* showcase: phones + 4 corner icons as separate layers (was one baked PNG)
   so each can animate independently on hover */
.phone-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
}
.phones-base {
  display: block;
  width: 100%;
  /* easeOutCubic — premium rise, no bounce/jump */
  transition: transform 520ms cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.ho-icon {
  position: absolute;
  display: block;
  pointer-events: none;
  transition: transform 520ms cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
/* positions are % of the original 1838×1256 canvas → pixel-aligned with phones */
.ho-music  { left: 0.00%;  top: 9.95%;  width: 11.32%; }
.ho-gear   { left: 10.17%; top: 37.18%; width: 11.75%; }
.ho-masks  { left: 87.76%; top: 10.91%; width: 12.24%; }
.ho-trophy { left: 82.64%; top: 37.66%; width: 11.75%; }

/* ---- hover micro-interaction (desktop / pointer devices only) ---- */
@media (hover: hover) and (pointer: fine) {
  /* phones rise toward the stage + lean slightly forward */
  .phone-showcase:hover .phones-base {
    transform: translateY(-20px) scale(1.02);
  }
  /* icons get pulled toward the centre, slightly larger */
  .phone-showcase:hover .ho-music  { transform: translate(14px, 8px)  scale(1.04); }
  .phone-showcase:hover .ho-gear   { transform: translate(16px, 0)     scale(1.04); }
  .phone-showcase:hover .ho-masks  { transform: translate(-14px, 8px)  scale(1.04); }
  .phone-showcase:hover .ho-trophy { transform: translate(-16px, 0)    scale(1.04); }
}

/* honour users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .phones-base, .ho-icon { transition: none; }
  .phone-showcase:hover .phones-base,
  .phone-showcase:hover .ho-icon { transform: none; }
}
/* Full-width gold horizon glow IN FRONT of the phone bases (phones rise out of the glow) */
.hero-horizon {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: -21.4vw;
  width: 100vw;
  max-width: none;
  height: auto;
  pointer-events: none;
}

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section { padding: 90px 0; }
.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 14px;
}
.section-placeholder {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 40px 0;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin-top: 20px;
}

/* =========================================================
   EXPERIENCE / DENEYIM
   ========================================================= */
/* tighten only the gap between the hero visual and this section */
#deneyim { padding-top: 40px; }
.exp-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 40px;
  padding: 52px 56px 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(58% 62% at -4% -6%, rgba(248,155,46,0.20), rgba(248,155,46,0.05) 38%, transparent 64%),
    var(--bg-elevated);
  overflow: hidden;
  /* enhanced lighting only fades in on hover */
  transition: box-shadow 420ms ease, border-color 420ms ease;
}
/* Grid lines — crisp at the top-left, fading toward the bottom-right */
.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(115% 130% at 0% 0%, #000 0%, rgba(0,0,0,0.45) 38%, transparent 68%);
  mask-image: radial-gradient(115% 130% at 0% 0%, #000 0%, rgba(0,0,0,0.45) 38%, transparent 68%);
  pointer-events: none;
}
/* extra volumetric gold lighting — fades in on hover only */
.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(78% 88% at -8% -10%, rgba(248,170,75,0.11), transparent 56%),
    radial-gradient(48% 52% at -3% -5%, rgba(250,178,88,0.16), rgba(248,155,46,0.05) 42%, transparent 66%);
  opacity: 0;
  transition: opacity 420ms ease;
}
.exp-card:hover::after { opacity: 1; }
.exp-card:hover {
  border-color: rgba(248, 184, 110, 0.12);
  box-shadow:
    0 22px 60px -34px rgba(245, 170, 80, 0.42),
    inset 2px 2px 16px -8px rgba(255, 212, 150, 0.22);
}
.exp-text, .exp-visual { position: relative; z-index: 1; }
.exp-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.25;
  margin-bottom: 22px;
}
.exp-text { padding-bottom: 52px; }
.exp-text p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 18px; }
.exp-text p:last-child { margin-bottom: 0; }

/* Phone + floating selection box — phone is enlarged and sits flush with the card's bottom edge */
.exp-visual {
  position: relative;
  align-self: stretch;
}
.exp-phone-screen {
  position: absolute;
  top: -28px;            /* near the card top → status bar visible, bottom clipped at card edge */
  right: -8px;
  width: 312px;
  max-width: none;
  z-index: 1;
}
.exp-selbox {
  position: absolute;
  top: 44px;
  right: 30px;
  width: 312px;
  max-width: none;
  z-index: 2;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.exp-card:hover .exp-selbox {
  transform: translateX(-46px);
}

@media (max-width: 880px) {
  .exp-card { grid-template-columns: 1fr; padding: 36px 28px 0; gap: 24px; text-align: left; }
  .exp-text { padding-bottom: 0; }
  .exp-visual { min-height: 400px; }
  /* same overlap as desktop, just centred: phone behind, selbox over its lower-centre
     (slightly left) and sliding further left on hover */
  .exp-phone-screen { top: -20px; bottom: auto; right: 50%; transform: translateX(50%); width: 280px; }
  .exp-selbox { top: 45px; right: 50%; transform: translateX(calc(50% - 12px)); width: 280px; }
  .exp-card:hover .exp-selbox { transform: translateX(calc(50% - 58px)); }
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.section--tight { padding-top: 30px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}
.feature-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(58% 62% at -4% -6%, rgba(248,155,46,0.22), rgba(248,155,46,0.05) 38%, transparent 64%),
    var(--bg-elevated);
  padding: 40px 40px 0;
  overflow: hidden;
  /* enhanced lighting only fades in on hover */
  transition: box-shadow 420ms ease, border-color 420ms ease;
}
/* extra volumetric gold lighting — fades in on hover only */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(78% 88% at -8% -10%, rgba(248,170,75,0.12), transparent 56%),
    radial-gradient(48% 52% at -3% -5%, rgba(250,178,88,0.17), rgba(248,155,46,0.05) 42%, transparent 66%);
  opacity: 0;
  transition: opacity 420ms ease;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  border-color: rgba(248, 184, 110, 0.12);
  box-shadow:
    0 22px 60px -34px rgba(245, 170, 80, 0.42),
    inset 2px 2px 16px -8px rgba(255, 212, 150, 0.22);
}
.feature-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 14px;
}
.feature-text {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 90%;
  margin-bottom: 28px;
}
.feature-phone { display: flex; justify-content: center; }
.feature-phone img {
  width: 100%;
  max-width: 460px;
  margin-bottom: -2px;
}

/* --- Rich feature cards: grid bg + phone + sliding box & toggle (both cards) --- */
.feature-card--select::before,
.feature-card--pers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(115% 130% at 0% 0%, #000 0%, rgba(0,0,0,0.45) 38%, transparent 68%);
  mask-image: radial-gradient(115% 130% at 0% 0%, #000 0%, rgba(0,0,0,0.45) 38%, transparent 68%);
  pointer-events: none;
}
.feature-card--select,
.feature-card--pers { display: flex; flex-direction: column; }
.feature-card--select .feature-title,
.feature-card--select .feature-text,
.feature-card--pers .feature-title,
.feature-card--pers .feature-text { position: relative; z-index: 1; }

.select-visual {
  position: relative;
  z-index: 1;
  margin-top: auto;          /* equal card heights → push visual to the bottom, phone stays flush */
  min-height: 340px;
}
.select-phone {
  position: absolute;
  bottom: 0;                 /* flush with the card's bottom edge */
  left: 50%;
  transform: translateX(-50%);
  width: 290px;
  max-width: none;
  z-index: 1;
}
/* sliding overlays */
.select-box, .pers-box, .select-toggle, .pers-toggle {
  position: absolute;
  max-width: none;
  z-index: 3;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.select-box  { top: 44px; left: -10px; width: 246px; }   /* card 1: selection box over tabs */
.pers-box    { top: 52px; left: -12px; width: 200px; }   /* card 2: "Fotoğraf yükle" box */
.select-toggle { bottom: 24px; right: -6px; width: 202px; }  /* card 1: yükselt button */
.pers-toggle   { bottom: 24px; right: -6px; width: 222px; }  /* card 2: kişiselleştir button */

.feature-card--select:hover .select-box,
.feature-card--pers:hover   .pers-box   { transform: translateX(-26px); }
.feature-card--select:hover .select-toggle,
.feature-card--pers:hover   .pers-toggle { transform: translateX(26px); }

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 30px 24px 0; }
  .feature-text { max-width: 100%; }
  .select-visual { height: 360px; }
}

/* =========================================================
   JOURNEY
   ========================================================= */
/* Journey, Events & News heading + subheading — DM Sans per design spec */
#yolculuk .section-title,
#etkinlikler .section-title,
#haberler .section-title,
#sss .section-title {
  font-family: 'DM Sans', var(--font);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}
#yolculuk .section-lead,
#etkinlikler .section-lead,
#haberler .section-lead {
  font-family: 'DM Sans', var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}
.section-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 56px;
}
.journey {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 60px;
}
.journey-phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  aspect-ratio: 978 / 1929;       /* all journey screenshots share this canvas */
  cursor: pointer;
}
.journey-phone .jp-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  /* new screen rises from behind: scale + brightness + opacity together */
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

.journey-steps { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);       /* passive: faint border */
  background: #111114;                               /* passive: subtle dark card */
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
}
.step:hover:not(.is-active) { border-color: rgba(255, 255, 255, 0.09); }
.step.is-active {
  background: var(--card);
  border-color: var(--border);
}
.step-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #1f1605;                                    /* dark glyph */
  background: linear-gradient(150deg, #8f6e36 0%, #5a441e 100%);  /* passive: muted gold */
  transition: background .3s, box-shadow .3s;
}
.step.is-active .step-icon {
  background: linear-gradient(150deg, #f6d77e 0%, #d4a017 100%);   /* active: bright gold */
  box-shadow: 0 4px 16px rgba(212,160,23,0.28);
}
.step-icon svg { width: 26px; height: 26px; stroke-width: 2; }
.step-body h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 7px;
  color: #626268;                                    /* passive: dim title */
  transition: color .3s;
}
.step-body p { color: #55555b; font-size: 0.94rem; transition: color .3s; }  /* passive: dim text */
.step.is-active .step-body h3 { color: var(--text); }
.step.is-active .step-body p  { color: var(--text-muted); }

@media (max-width: 880px) {
  .journey { grid-template-columns: 1fr; gap: 40px; }
  .journey-phone { order: -1; }
  .section-lead { margin-bottom: 36px; }
  .step { padding: 20px; gap: 16px; }
  .step-icon { width: 46px; height: 46px; }
  .step-icon svg { width: 22px; height: 22px; }
}

/* =========================================================
   EVENTS CAROUSEL (coverflow)
   ========================================================= */
/* Full-bleed coverflow — big centre card, smaller real-sized neighbours */
.events {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;                 /* clip slides beyond the viewport */
  padding: 18px 0 4px;
}
.events-track {
  display: flex;
  align-items: flex-start;
  gap: 8px;                         /* active ↔ passive spacing */
  width: max-content;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  user-select: none;
}
.event-poster img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.event-card {
  flex: 0 0 auto;                   /* real width set inline by JS (no scaling) */
  cursor: pointer;
  /* smoothly resize + re-centre on navigation */
  transition: width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
              margin-top 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.event-card.active { z-index: 2; cursor: default; }
.event-poster {
  width: 100%;
  aspect-ratio: 1.69;               /* active 577×~341, passive 379×~224 */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
}
.event-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* "Daha Fazlası" call-to-action card */
.more-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(233,196,106,0.20), transparent 62%),
    linear-gradient(160deg, #1b1710 0%, #121113 70%);
  border: 1px solid rgba(248,184,110,0.28);
}
.more-inner { text-align: center; padding: 6%; }
.more-icon { display: inline-flex; color: var(--gold); }
.more-icon svg { width: clamp(40px, 4vw, 58px); height: clamp(40px, 4vw, 58px); }
.more-inner strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--text);
  margin-top: 12px;
}
.more-sub { display: block; color: var(--text-muted); font-size: clamp(0.8rem, 1.3vw, 0.95rem); margin-top: 6px; }
.event-meta { margin-top: 16px; padding-left: 2px; text-align: left; }
.event-meta h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; }
.event-meta .date { color: var(--text-muted); font-size: 0.92rem; margin-top: 5px; }

/* Progress indicator (grows with the number of slides) */
.events-progress { display: flex; justify-content: center; gap: 6px; margin-top: 34px; }
.events-progress .seg {
  width: 16px; height: 8px;
  border-radius: 4.5px;
  background: #888888;
  cursor: pointer;
  transition: width .35s ease, background .35s ease;
}
.events-progress .seg.active { width: 41px; background: #D63031; }

/* =========================================================
   NFT NEWS CAROUSEL
   ========================================================= */
#haberler .container { max-width: 1440px; padding-inline: 100px; }   /* component: 1440 wide, 100px side padding */
.news-viewport { max-width: 1240px; margin-inline: auto; }          /* exactly three 392px cards + 2×32 gap */
.news-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.news-track::-webkit-scrollbar { display: none; }
.news-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 64px) / 3);   /* exactly three per view (≈392px @1240) — never clipped */
  height: 392px;                       /* square at the design width */
  background: #111111;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.news-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.news-thumb { flex: 0 0 216px; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { flex: 1; padding: 20px 24px 0; min-height: 0; }
.news-body h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; margin-bottom: 10px; }
.news-body p { color: var(--text-muted); font-size: 0.92rem; }
.news-date {
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
/* carousel dots (gray segments, active red wider) */
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.dot {
  width: 16px; height: 8px;
  border-radius: 4.5px;
  background: #888888;
  border: none; padding: 0; cursor: pointer;
  transition: width .35s ease, background .35s ease;
}
.dot.active { width: 40px; background: #D63031; }

@media (max-width: 1340px) { #haberler .container { padding-inline: 40px; } }
@media (max-width: 980px) {
  #haberler .container { padding-inline: 24px; }
  .news-card { flex-basis: calc((100% - 32px) / 2); height: auto; }   /* 2 per view */
  .news-thumb { flex: none; aspect-ratio: 392 / 216; }
}
@media (max-width: 640px) {
  .news-card { flex-basis: 86%; }                                     /* 1 per view + peek */
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.container--narrow { max-width: 1360px; }
.faq { display: flex; flex-direction: column; gap: 16px; margin-top: 44px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq-item.is-open { border-color: var(--border-strong); background: var(--card-hover); }
.faq-q {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 16px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', var(--font);
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
  cursor: pointer;
}
.chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  padding: 4px;
  transition: transform .3s, color .3s;
}
.faq-item.is-open .chevron { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-family: 'DM Sans', var(--font);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-q { padding: 16px; font-size: 16px; }
  .faq-a p { padding: 0 16px 16px; }
}

/* =========================================================
   BUTTONS (shared)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, filter .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-bright); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { text-align: center; padding-bottom: 30px; }
.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;                          /* spacing between title / lead / buttons */
}
.contact-title {
  font-family: 'DM Sans', var(--font);
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0;
}
.contact-lead {
  font-family: 'DM Sans', var(--font);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--text-muted);
  margin: 0;
}
.contact-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 0; }
.btn-lg { padding: 16px 28px; font-size: 1rem; border-radius: 14px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  padding-top: 0;
}
/* Gold horizon (assets/img/hero-horizon.svg) — same mechanism as the hero: arc clipped at the
   container's bottom so it never shows a hard cut, glow rises up */
.footer-glow-area {
  position: relative;
  height: 460px;                      /* taller so the glow fades softly & wide, like the hero */
  margin-top: -70px;                  /* pull glow up ~30% closer to the buttons (glow itself unchanged) */
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  left: 50%;
  bottom: -21.4vw;                    /* arc at the area's bottom edge, glow up (identical to hero) */
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  height: auto;
  pointer-events: none;
}
/* Bottom bar (footer_v2.svg): 1px top border, 24/40 padding, 24px gap */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 24px 40px;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.socials { display: flex; justify-content: center; gap: 14px; margin: 0; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: color .2s, transform .2s;
}
.socials a:hover { color: var(--text); transform: translateY(-2px); }
.socials svg { width: 22px; height: 22px; }
.footer-store-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.footer-stores { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-stores img { height: 52px; width: auto; border-radius: 8px; }

@media (max-width: 980px) {
  /* the glow scales down with vw on narrow screens, so shrink the area to match —
     otherwise a huge empty black band sits above it (desktop ≥980 keeps 460px) */
  .footer-glow-area { height: calc(22vw + 16px); margin-top: 0; }
}
@media (max-width: 768px) {
  .site-footer { padding-top: 0; }
  .footer-bottom { padding: 24px 20px; }
  .back-to-top { position: static !important; margin-bottom: 8px; }
  .contact-actions { flex-direction: column; align-items: stretch; }
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: absolute;
  top: 0; right: 0;                    /* top-right of the bottom bar */
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(30,30,36,0.9);
  border: 1px solid var(--border-strong);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.back-to-top svg { width: 16px; height: 16px; }
.back-to-top:hover { background: rgba(45,45,52,0.95); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  /* tighten the gap between the experience card and the feature cards
     so it matches the gap between the two feature cards (~20px) */
  #deneyim { padding-bottom: 10px; }
  #ozellikler { padding-top: 10px; }
  .hero { padding-top: 40px; }
  .hero-sub { font-size: 0.95rem; }
  .container { padding-inline: 18px; }
  .back-to-top { right: 14px; bottom: 14px; }
  /* nudge the corner icons inward so they don't hug the screen edges on mobile */
  .ho-music, .ho-gear   { transform: translateX(12px); }
  .ho-masks, .ho-trophy { transform: translateX(-12px); }
}

/* =========================================================
   BLOG DETAIL PAGE
   ========================================================= */
.blog {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding: 36px 0 90px;
}
.blog-wrap {
  max-width: 1368px;
  margin-inline: auto;
  padding-inline: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: 76px;
}

/* ----- main column ----- */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

.blog-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: 22px;
}
.blog-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 28px 0;
}
.blog-date { color: var(--text-muted); font-size: 0.95rem; }
.blog-share { display: inline-flex; align-items: center; gap: 20px; }
.blog-share a { color: var(--text); display: inline-flex; }
.blog-share svg { width: 18px; height: 18px; }
.blog-share a:hover { color: var(--gold); }

.blog-hero {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 28px 0 36px;
}

.blog-subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.3;
  margin: 36px 0 18px;
}
.blog-main p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ----- sidebar ----- */
.side-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 26px;
}
.side-card { display: block; color: inherit; margin-bottom: 34px; }
.side-thumb {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 392 / 245;
}
.side-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms ease; }
.side-card:hover .side-thumb img { transform: scale(1.04); }
.side-card h4 {
  font-weight: 600;
  font-size: 1.15rem;
  margin: 16px 0 8px;
  transition: color 200ms ease;
}
.side-card:hover h4 { color: var(--gold); }
.side-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.side-date { display: block; color: var(--text-dim); font-size: 0.85rem; margin-top: 10px; }

/* ----- responsive ----- */
@media (max-width: 980px) {
  .blog-wrap { grid-template-columns: 1fr; gap: 56px; }
  .blog-side { max-width: 560px; }
}
@media (max-width: 768px) {
  .blog-wrap { padding-inline: 18px; }
  .blog-meta { flex-direction: column; align-items: flex-start; gap: 14px; }
}
