/* ==========================================================
   SAHA/KULÜP — BASE STYLES
   Palette: pitch green + chalk white + energy orange + sport accents
   Type: Anton (display) + Archivo (body) + JetBrains Mono (stats/sku)
   ========================================================== */

:root {
  /* pitch greens */
  --pitch-400: oklch(68% 0.14 145);
  --pitch-500: oklch(58% 0.16 145);
  --pitch-600: oklch(48% 0.15 145);
  --pitch-700: oklch(38% 0.12 145);
  --pitch-800: oklch(28% 0.09 145);
  --pitch-900: oklch(18% 0.06 148);

  /* carbon + chalk */
  --carbon-950: oklch(14% 0.01 150);
  --carbon-900: oklch(20% 0.01 150);
  --chalk-50: oklch(98% 0.003 100);
  --chalk-100: oklch(95% 0.006 100);
  --chalk-200: oklch(90% 0.008 100);
  --chalk-300: oklch(82% 0.01 100);

  /* sport accents */
  --energy: oklch(72% 0.19 55);       /* scoreboard orange */
  --court: oklch(68% 0.17 45);        /* basketball parquet */
  --volley: oklch(55% 0.22 20);       /* volleyball red */
  --electric: oklch(70% 0.16 230);    /* scoreboard blue */

  /* ink */
  --ink: var(--carbon-950);
  --ink-soft: oklch(38% 0.01 150);
  --ink-mute: oklch(55% 0.01 150);
  --line: oklch(88% 0.01 100);

  /* type */
  --display: 'Anton', Impact, sans-serif;
  --body: 'Archivo', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--chalk-50); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
input, select { font-family: inherit; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.mono { font-family: var(--mono); letter-spacing: 0.04em; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 0.95; text-transform: uppercase; }
h1 { font-size: 120px; }
h2 { font-size: 88px; }
h3 { font-size: 48px; }
h4 { font-size: 18px; letter-spacing: 0.06em; }

.accent { color: var(--energy); }
.pitch { color: var(--pitch-600); }
.en { color: var(--ink-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--energy { background: var(--energy); color: var(--carbon-950); }
.btn--energy:hover { transform: translateY(-2px); }
.btn--dark { background: var(--carbon-950); color: var(--chalk-50); }
.btn--dark:hover { background: var(--pitch-700); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid currentColor; }
.btn--ghost:hover { background: var(--ink); color: var(--chalk-50); }

/* ---------- Tags ---------- */
.tag {
  display: inline-block;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--chalk-100);
  color: var(--ink);
}

/* ---------- Pitch background ---------- */
.pitch-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 80px,
      rgba(255,255,255,0.04) 80px 82px),
    repeating-linear-gradient(0deg,
      transparent 0 80px,
      rgba(255,255,255,0.04) 80px 82px),
    linear-gradient(180deg, var(--pitch-700), var(--pitch-800) 60%, var(--pitch-900));
  pointer-events: none;
}

/* ---------- Placeholders ---------- */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  background:
    repeating-linear-gradient(45deg,
      transparent 0 12px,
      rgba(0,0,0,0.03) 12px 14px);
  border: 1px dashed var(--chalk-300);
  text-transform: uppercase;
}
.placeholder.dark {
  color: rgba(255,255,255,0.5);
  background:
    repeating-linear-gradient(45deg,
      transparent 0 12px,
      rgba(255,255,255,0.04) 12px 14px);
  border-color: rgba(255,255,255,0.15);
}
.prod__place {
  position: absolute;
  inset: 40% 20% 20% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(0,0,0,0.03) 12px 14px);
  border: 1px dashed var(--chalk-300);
  text-transform: uppercase;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--carbon-950);
  color: var(--chalk-50);
  overflow: hidden;
  border-bottom: 1px solid var(--pitch-700);
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker-slide 80s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-left: 56px;
}
.ticker__track > span { flex-shrink: 0; }
.ticker .dot { color: var(--energy); margin-right: 8px; }
@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  background: var(--chalk-50);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.head { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--carbon-950);
}
.logo .slash { color: var(--energy); margin: 0 2px; }

.nav { display: flex; gap: 6px; }
.nav__item {
  position: relative;
  padding: 26px 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav__item::before {
  content: '';
  position: absolute;
  inset: auto 14px 20px 14px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav__item:hover::before,
.nav__item.open::before { transform: scaleX(1); }
.nav__item.cat-basket { color: var(--ink); }
.nav__item.cat-basket:hover { color: var(--court); }
.nav__item.cat-volley:hover { color: var(--volley); }
.nav__item.cat-proje:hover { color: var(--electric); }

.head__right { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.icon-btn:hover { background: var(--chalk-100); }
.cart-badge {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--energy);
  color: var(--carbon-950);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.head__right .btn { margin-left: 8px; }

/* ---------- Mega menu ---------- */
.mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--chalk-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
  transform-origin: top;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.mega.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mega__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pitch-600);
}
.mega.cat-basket .mega__accent { background: var(--court); }
.mega.cat-volley .mega__accent { background: var(--volley); }
.mega.cat-proje .mega__accent { background: var(--electric); }

.mega__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 48px 52px;
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr 320px;
  gap: 40px;
}

.position-badge {
  width: 84px; height: 84px;
  background: var(--carbon-950);
  color: var(--chalk-50);
  font-family: var(--display);
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}
.position-badge::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--chalk-300);
  border-radius: 4px;
}
.mega.cat-basket .position-badge { background: var(--court); color: var(--carbon-950); }
.mega.cat-volley .position-badge { background: var(--volley); }
.mega.cat-proje .position-badge { background: var(--electric); color: var(--carbon-950); }

.mega__col-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mega__col-title .num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
}
.mega__col ul { display: flex; flex-direction: column; gap: 10px; }
.mega__col li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s, padding .15s;
  display: inline-block;
}
.mega__col li a:hover { color: var(--ink); padding-left: 6px; }

.mega__feature {
  background: var(--carbon-950);
  color: var(--chalk-50);
  padding: 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.mega__feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 40px,
      rgba(255,255,255,0.03) 40px 41px);
  pointer-events: none;
}
.mega__feature h4 { font-family: var(--display); font-size: 32px; letter-spacing: 0; margin-bottom: 8px; text-transform: none; }
.mega__feature p { font-size: 13px; color: var(--chalk-200); line-height: 1.5; }
.arrow-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--chalk-50);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.arrow-link span { transition: transform .25s; }
.arrow-link:hover span { transform: translateX(6px); }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--carbon-950);
  color: var(--chalk-100);
  margin-top: 120px;
  padding-top: 80px;
}
.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot__brand p { font-size: 13px; color: var(--chalk-300); line-height: 1.7; margin: 20px 0 24px; }
.foot__certs { display: flex; gap: 10px; flex-wrap: wrap; }
.foot__certs span {
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--chalk-200);
  border-radius: 2px;
}
.site-foot h4 { color: var(--chalk-50); font-size: 13px; margin-bottom: 18px; letter-spacing: 0.14em; }
.site-foot ul { display: flex; flex-direction: column; gap: 10px; }
.site-foot li {
  font-size: 13px;
  color: var(--chalk-300);
  cursor: pointer;
  transition: color .2s;
}
.site-foot li:hover { color: var(--energy); }
.foot__news p { font-size: 13px; color: var(--chalk-300); line-height: 1.6; margin-bottom: 16px; }
.foot__news-form {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.foot__news-form input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: var(--chalk-50);
  font-size: 13px;
  outline: none;
}
.foot__news-form .btn { border-radius: 0; padding: 14px 20px; }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--chalk-300);
}

/* ---------- Section shared ---------- */
.sec { padding: 120px 0; }
.sec-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.sec-head .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-bottom: 12px;
  max-width: 420px;
}
