/* =============================================================
   BASE.CSS — Green Nature Arcade
   Tüm sayfalarda kullanılan ortak stiller.
   Sıra: reset → değişkenler → genel → nav → bölüm tabanı →
         butonlar → parçacıklar → hero paylaşımları → footer
   ============================================================= */


/* ── Reset & Kutu Modeli ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ── Tasarım Değişkenleri (CSS Custom Properties) ────────────── */
:root {
  --bg:        #0a0a0f;   /* ana arka plan */
  --bg2:       #0e0e18;   /* alternatif arka plan 1 */
  --bg3:       #121220;   /* alternatif arka plan 2 */
  --card:      #0f0f1c;   /* kart arka planı */
  --pink:      #c724b1;   /* vurgu rengi — pembe */
  --cyan:      #00f5ff;   /* vurgu rengi — cyan */
  --yellow:    #f5e642;   /* vurgu rengi — sarı (parçacıklar) */
  --text:      #e8e8f0;   /* birincil metin */
  --muted:     #7777aa;   /* ikincil/soluk metin */
  --border:    rgba(0,245,255,.13);   /* cyan kenarlık */
  --border-pk: rgba(199,36,177,.2);  /* pembe kenarlık */
}


/* ── Temel Elemanlar ─────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ── Navigasyon ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: rgba(10,10,15,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Logo / site adı */
.nav-logo {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan);
  white-space: nowrap;
  text-decoration: none;
}

/* Ana sayfa nav linkleri listesi */
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 4px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active  { color: var(--cyan); }  /* scroll ile aktif bölüm */
.nav-links a.current { color: var(--pink); }  /* şu an bulunulan sayfa */

/* Alt sayfalarda (airsoft, privacy) geri butonu */
.nav-back {
  color: var(--muted);
  text-decoration: none;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 4px;
  transition: color .18s;
  white-space: nowrap;
}
.nav-back:hover { color: var(--cyan); }


/* ── Neon Ayraç Çizgisi ──────────────────────────────────────── */
.neon-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .2;
}


/* ── Bölüm (Section) Taban Stilleri ─────────────────────────── */
section { padding: 5.5rem 1.25rem 3.5rem; }

/* Üst etiket (ör. "What's Inside") */
.s-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .4rem;
}

/* Bölüm başlığı */
.s-title {
  font-size: clamp(1.65rem, 5.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: .8rem;
}
.s-title span { color: var(--cyan); }

/* Bölüm açıklaması */
.s-sub {
  color: var(--muted);
  font-size: .88rem;
  max-width: 480px;
}


/* ── Ortak Butonlar ──────────────────────────────────────────── */

/* Pembe/mor gradyan buton (birincil eylem) */
.btn-pk {
  background: linear-gradient(135deg, var(--pink), #8a169c);
  color: #fff;
  border: none;
  padding: .9rem 2rem;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 0 34px rgba(199,36,177,.4);
}
.btn-pk:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(199,36,177,.6);
}

/* Cyan kontur buton (ikincil eylem) */
.btn-cy {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: .9rem 2rem;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn-cy:hover {
  transform: translateY(-2px);
  background: rgba(0,245,255,.08);
  box-shadow: 0 0 34px rgba(0,245,255,.3);
}


/* ── Hero Bölümü — Ortak Parçalar ───────────────────────────── */

/* Tarama çizgisi efekti — her iki hero'da kullanılır */
.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,.07) 2px, rgba(0,0,0,.07) 4px
  );
}

/* Parçacık kapsayıcısı */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Bireysel parçacık — stil particles.js tarafından dinamik atanır */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
}

/* Parçacıkların yukarı süzülme animasyonu */
@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(var(--drift)); opacity: 0; }
}

/* Hero başlık metni */
.hero-title {
  position: relative;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 1.1rem;
}
.hero-title .t1 { display: block; color: var(--text); }
.hero-title .t2 {
  display: block;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px var(--pink));
}

/* Hero alt başlık / açıklama metni */
.hero-sub {
  position: relative;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 auto 2.4rem;
}

/* Hero CTA buton grubu */
.hero-cta {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}


/* ── Dönen gradient animasyonu — lb-card ve lb-hero-card'da ortak ── */
@keyframes spin { 100% { transform: rotate(360deg); } }


/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem 1.5rem;
}

/* 3 sütunlu footer ızgarası */
.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) {
  .ft-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem 3rem; }
}

.ft-logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan);
  margin-bottom: .4rem;
}

.ft-tagline { font-size: .72rem; color: var(--muted); line-height: 1.5; }

.ft-story {
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--text);
  line-height: 1.65;
  opacity: .7;
  font-style: italic;
}

/* Sütun başlığı (ör. "Address", "Legal") */
.ft-col-head {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
}

.ft-addr { font-size: .78rem; color: var(--muted); line-height: 1.8; }

.ft-email {
  display: inline-block;
  margin-top: .5rem;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: text-shadow .18s;
}
.ft-email:hover { text-shadow: 0 0 14px var(--cyan); }

.ft-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.ft-links a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .18s; }
.ft-links a:hover { color: var(--cyan); }

.ft-copy {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .68rem;
  color: var(--muted);
  max-width: 960px;
  margin: 0 auto;
}
