/* ═══════════════════════════════════════════════════════════════════════
 * TK Herkules — main.css
 * Mobile-first, breakpoint 700px
 * ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --dk:   #0E0820;
  --dk2:  #17102E;
  --dk3:  #201840;
  --pur:  #5B2CA8;
  --pur2: #7040C4;
  --lav:  #B898E0;
  --lav2: #D4C0F0;
  --gd:   #C8A030;
  --gd2:  #E8C050;
  --wh:   #FAFAF8;
  --off:  #F2EAE0;
  --bej:  #E8DCCB;
  --bej2: #C8B898;
  --txt:  #1A1228;
  --mut:  #7A6E90;
  --ln:   rgba(91,44,168,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: var(--wh);
  color: var(--txt);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Navigacija ─────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(14,8,32,0.97);
  border-bottom: 1px solid rgba(91,44,168,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 46px; width: auto; }
.nav-logo-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh);
  line-height: 1.1;
}
.nav-logo-txt small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--lav);
}

/* Desktop nav links (hidden mobile) */
.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--wh); }
.nav-links a.gym { color: rgba(200,160,48,0.65); }
.nav-links a.gym:hover { color: var(--gd2); }

/* CTA dugme */
.nav-cta {
  background: var(--pur);
  color: var(--wh);
  padding: 9px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--pur2); }

/* Hamburger dugme */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(91,44,168,0.35);
  border-radius: 2px;
  padding: 7px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--pur); }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(250,250,248,0.7);
  border-radius: 1px;
  transition: all 0.25s;
  transform-origin: center;
}

/* Hamburger → X animacija */
.site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown meni */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(14,8,32,0.98);
  border-top: 1px solid rgba(91,44,168,0.25);
  border-bottom: 2px solid var(--pur);
  padding: 8px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-nav.nav-open .nav-mobile { display: block; }
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav-mobile ul li a {
  display: block;
  padding: 13px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(91,44,168,0.1);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile ul li:last-child a { border-bottom: none; }
.nav-mobile ul li a:hover { color: var(--wh); background: rgba(91,44,168,0.1); }
.nav-mobile ul li a.gym { color: rgba(200,160,48,0.65); }
.nav-mobile ul li a.gym:hover { color: var(--gd2); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,8,32,0.94) 0%, rgba(14,8,32,0.5) 50%, rgba(14,8,32,0.2) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.hero-logo-big { width: 120px; margin-bottom: 20px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lav);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--pur); }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 14vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--wh);
  margin-bottom: 14px;
}
.hero h1 .pur { color: var(--lav); }

.hero-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(15px, 3.5vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.65);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 2px solid var(--pur);
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  padding: 24px;
}
.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(250,250,248,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--pur); width: 44px; }

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(14,8,32,0.8);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--pur);
}
.hst {
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(91,44,168,0.2);
}
.hst:last-child { border-right: none; }
.hst-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--lav);
  line-height: 1;
  margin-bottom: 4px;
}
.hst-l {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
  line-height: 1.4;
}

/* ── Welcome strip ──────────────────────────────────────────────────────── */
.welcome-strip {
  background: var(--wh);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--ln);
}
.welcome-strip img { height: 64px; width: auto; flex-shrink: 0; }
.welcome-strip-text { font-size: 14px; font-weight: 300; color: var(--mut); line-height: 1.7; }
.welcome-strip-text strong {
  font-weight: 600;
  color: var(--txt);
  display: block;
  margin-bottom: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Sekcije — baze ─────────────────────────────────────────────────────── */
section { padding: 68px 24px; }
.sec-dark  { background: var(--dk2); }
.sec-white { background: var(--wh); }
.sec-off   { background: var(--off); }

.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pur);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag::before { content: ''; width: 20px; height: 2px; background: var(--pur); }
.tag-light { color: var(--lav); }
.tag-light::before { background: var(--lav); }
.tag-gd { color: var(--gd); }
.tag-gd::before { background: var(--gd); }

.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 8vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 14px;
}
.sec-title.light { color: var(--wh); }
.sec-title .pur { color: var(--pur); }
.sec-title .lav { color: var(--lav); }
.sec-title .gd  { color: var(--gd); }

.sec-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--mut);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.sec-sub-light { color: rgba(250,250,248,0.55); }

/* ── Dugmad ─────────────────────────────────────────────────────────────── */
.btn-pur {
  background: var(--pur);
  color: var(--wh);
  padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-pur:hover { background: var(--pur2); transform: translateY(-2px); }

.btn-brd-w {
  background: transparent;
  color: var(--wh);
  padding: 12px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(250,250,248,0.3);
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-brd-w:hover { background: rgba(250,250,248,0.1); }

.btn-gd {
  display: inline-block;
  background: var(--gd);
  color: var(--dk);
  padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-gd:hover { background: var(--gd2); transform: translateY(-2px); }

/* ── O klubu ────────────────────────────────────────────────────────────── */
.about-wrap { display: flex; flex-direction: column; }
.about-img  { width: 100%; height: 340px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.05); }
.about-img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--pur);
  color: var(--wh);
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}
.about-body { padding: 40px 0 0; }

.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 22px 0 28px; }
.val {
  background: var(--wh);
  padding: 16px 14px;
  border-top: 2px solid var(--pur);
  transition: all 0.2s;
}
.val:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(91,44,168,0.12); }
.val-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pur);
  margin-bottom: 2px;
}
.val-d { font-size: 11px; font-weight: 300; color: var(--mut); }

/* ── Treninzi ───────────────────────────────────────────────────────────── */
.tr-list { border-top: 1px solid rgba(250,250,248,0.1); margin-top: 8px; }
.tr-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(250,250,248,0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  transition: padding-left 0.25s;
}
.tr-item:hover { padding-left: 10px; }
.tr-no {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: rgba(184,152,224,0.15);
  line-height: 1;
  width: 40px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.tr-item:hover .tr-no { color: var(--pur); }
.tr-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wh);
  margin-bottom: 5px;
}
.tr-desc { font-size: 13px; font-weight: 300; color: rgba(250,250,248,0.5); line-height: 1.65; margin-bottom: 10px; }
.tr-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tr-tag {
  background: rgba(91,44,168,0.2);
  color: var(--lav);
  padding: 3px 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(91,44,168,0.3);
  border-radius: 2px;
}

/* ── Pojasevi ───────────────────────────────────────────────────────────── */
.belt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 8px; }
.belt {
  background: var(--wh);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #eee;
  transition: transform 0.2s;
}
.belt:hover { transform: translateX(4px); }
.belt-swatch { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 2px solid rgba(0,0,0,0.12); }
.belt-name { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--txt); letter-spacing: 0.04em; }
.belt-kup  { font-size: 11px; font-weight: 300; color: var(--mut); }

/* ── Galerija ───────────────────────────────────────────────────────────── */
.photos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 32px; }
.photo-item  { overflow: hidden; position: relative; aspect-ratio: 4/3; }
.photo-item:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.5s ease; }
.photo-item:hover img { transform: scale(1.06); }
.photo-ov { position: absolute; inset: 0; background: rgba(91,44,168,0); transition: background 0.3s; }
.photo-item:hover .photo-ov { background: rgba(91,44,168,0.15); }

/* ── Raspored ───────────────────────────────────────────────────────────── */
.sch-wrap { overflow-x: auto; margin-top: 8px; -webkit-overflow-scrolling: touch; }
.sch-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.sch-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pur);
  padding: 12px 14px;
  border-bottom: 2px solid var(--pur);
  text-align: left;
  background: var(--off);
  white-space: nowrap;
}
.sch-table td {
  font-size: 13px;
  font-weight: 300;
  color: var(--mut);
  padding: 10px 14px;
  border-bottom: 1px solid var(--ln);
  white-space: nowrap;
}
.sch-table tr { transition: background 0.2s; }
.sch-table tr:hover td { background: rgba(91,44,168,0.05); color: var(--txt); }
.sch-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pur);
}
.sch-table td.empty { color: rgba(122,110,144,0.3); }

/* Boje timova */
.sch-ruska    { background: rgba(255,200,100,0.15); color: #8B6000 !important; }
.sch-zmajevi  { background: rgba(91,44,168,0.1);  color: var(--pur)  !important; }
.sch-pioniri  { background: rgba(91,200,91,0.12);  color: #2E7D32 !important; }
.sch-btim     { background: rgba(33,150,243,0.12); color: #1565C0 !important; }
.sch-atim     { background: rgba(244,67,54,0.12);  color: #C62828 !important; }
.sch-gtim     { background: rgba(156,39,176,0.1);  color: #6A1B9A !important; }
.sch-kadeti   { background: rgba(255,152,0,0.12);  color: #E65100 !important; }

/* ── Treneri ────────────────────────────────────────────────────────────── */
.coach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 8px; }
.coach {
  background: var(--wh);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(26,18,40,0.06);
  transition: all 0.25s;
}
.coach:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(91,44,168,0.15); }
.coach-img { height: 200px; overflow: hidden; }
.coach-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.coach:hover .coach-img img { transform: scale(1.06); }
.coach-body { padding: 16px 14px; }
.coach-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--txt);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.coach-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pur);
  margin-bottom: 7px;
}
.coach-belt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.coach-belt::before { content: ''; width: 16px; height: 2px; background: var(--gd); display: inline-block; }
.coach-desc { font-size: 12px; font-weight: 300; color: var(--mut); line-height: 1.6; }

/* Placeholder trener */
.coach-placeholder {
  background: var(--off);
  border: 2px dashed var(--ln);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 24px;
  text-align: center;
  border-radius: 2px;
}
.coach-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ln);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-placeholder p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mut);
}

/* ── Forma za upis ──────────────────────────────────────────────────────── */
.upis-grid { display: flex; flex-direction: column; gap: 20px; }

.upis-info {
  background: var(--dk2);
  padding: 26px 20px;
  border-top: 3px solid var(--pur);
}
.upis-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wh);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(250,250,248,0.08);
}
.urow {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(250,250,248,0.05);
  gap: 12px;
}
.urow:last-child { border-bottom: none; }
.ukey {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
  flex-shrink: 0;
}
.uval { font-size: 13px; font-weight: 400; color: var(--wh); text-align: right; }

.upis-form {
  background: var(--wh);
  padding: 26px 20px;
  border-top: 3px solid var(--pur);
  box-shadow: 0 4px 20px rgba(26,18,40,0.08);
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ln);
}

/* Polja forme */
.fld { margin-bottom: 12px; }
.fld label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 6px;
}
.fld input,
.fld select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--ln);
  background: var(--off);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--txt);
  outline: none;
  -webkit-appearance: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.fld input:focus,
.fld select:focus { border-color: var(--pur); background: var(--wh); }

/* Honeypot polje — sakriveno */
.fld-honeypot { display: none !important; visibility: hidden; }

.fbtn {
  width: 100%;
  background: var(--pur);
  color: var(--wh);
  border: none;
  padding: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  border-radius: 2px;
  transition: all 0.25s;
}
.fbtn:hover { background: var(--pur2); transform: translateY(-1px); }

/* Poruke uspeha/greške */
.form-notice {
  padding: 12px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.form-notice.success { background: rgba(46,125,50,0.1); border-left: 3px solid #2E7D32; color: #1B5E20; }
.form-notice.error   { background: rgba(198,40,40,0.08); border-left: 3px solid #C62828; color: #B71C1C; }

/* ── Gym House teaser divider ───────────────────────────────────────────── */
.gym-div {
  background: var(--dk);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,160,48,0.2);
}
.gym-div-wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(60px, 18vw, 160px);
  font-weight: 800;
  color: rgba(200,160,48,0.04);
  white-space: nowrap;
  user-select: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gym-div-pre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bej2);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.gym-div-logo { width: 240px; max-width: 80%; margin: 0 auto 20px; position: relative; z-index: 1; display: block; }
.gym-div-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
  max-width: 380px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

/* ── GoFitness app sekcija ──────────────────────────────────────────────── */
.app-wrap { display: flex; flex-direction: column; gap: 32px; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid rgba(250,250,248,0.2);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.store-btn:hover { border-color: var(--pur); }
.store-ic { font-size: 22px; color: var(--wh); }
.store-tx { display: flex; flex-direction: column; line-height: 1.1; }
.store-tx small { font-size: 9px; color: rgba(250,250,248,0.6); font-family: 'Barlow', sans-serif; }
.store-tx b { font-size: 16px; font-weight: 600; color: #fff; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.02em; }

/* ── Lokacije ───────────────────────────────────────────────────────────── */
.loc-grid { display: flex; flex-direction: column; gap: 3px; margin-top: 8px; }
.loc {
  background: var(--wh);
  padding: 20px 18px;
  border-left: 3px solid var(--pur);
  transition: all 0.2s;
}
.loc:hover { transform: translateX(5px); }
.loc.gym   { border-left-color: var(--gd); }
.loc-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pur);
  margin-bottom: 7px;
}
.loc.gym .loc-brand { color: var(--gd); }
.loc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 10px;
}
.loc-rows { display: flex; flex-direction: column; gap: 4px; }
.lrow { display: flex; gap: 10px; align-items: flex-start; }
.lkey {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mut);
  width: 48px;
  flex-shrink: 0;
  padding-top: 1px;
}
.lval { font-size: 13px; font-weight: 300; color: var(--txt); }
.lval a { text-decoration: none; color: var(--pur); }
.lval a:hover { color: var(--pur2); }

/* ── Instagram sekcija ──────────────────────────────────────────────────── */
.instagram-wrap { text-align: center; }
.instagram-wrap .tag { justify-content: center; }
.instagram-wrap .tag::before { display: none; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dk);
  padding: 48px 24px 32px;
  border-top: 2px solid var(--pur);
  position: relative;
  overflow: hidden;
}
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-logo-row img { height: 56px; width: auto; }
.ft-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--wh);
  line-height: 1.1;
}
.ft-name .lav { color: var(--lav); }
.ft-name small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(250,250,248,0.4);
}
.ft-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,250,248,0.3);
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 260px;
}
.ft-socs { display: flex; gap: 7px; margin-bottom: 30px; }
.ft-soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(91,44,168,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(250,250,248,0.35);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.ft-soc:hover { border-color: var(--pur); color: var(--lav); }

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(91,44,168,0.15);
  margin-bottom: 22px;
}
.ft-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lav);
  margin-bottom: 12px;
}
.ft-col-title.gd { color: var(--gd); }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ft-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,250,248,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--wh); }
.ft-copy {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(250,250,248,0.17);
  padding-top: 18px;
  border-top: 1px solid rgba(91,44,168,0.1);
}

/* ── Scroll animacije ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }

.zoom-in {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.7s ease, transform 0.8s ease;
}
.zoom-in.on { opacity: 1; transform: scale(1); }

/* ── Responsive — 700px breakpoint ─────────────────────────────────────── */
@media (min-width: 700px) {
  /* Nav */
  .site-nav { padding: 11px 48px; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }

  /* Sekcije */
  section { padding: 88px 48px; }
  .hero-body { padding: 0 48px; }

  /* O klubu */
  .about-wrap { display: grid; grid-template-columns: 1fr 1fr; }
  .about-img  { height: 100%; min-height: 460px; }
  .about-body { padding: 72px 48px 0; }

  /* Pojasevi */
  .belt-grid { grid-template-columns: repeat(4, 1fr); }

  /* Galerija */
  .photos-grid { grid-template-columns: repeat(3, 1fr); }
  .photos-grid .photo-item { aspect-ratio: 4/3; }
  .photos-grid .photo-item:first-child { grid-column: 1; grid-row: 1 / 3; aspect-ratio: auto; }

  /* Treneri */
  .coach-grid { grid-template-columns: repeat(3, 1fr); }

  /* Upis */
  .upis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Lokacije */
  .loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .ft-grid { grid-template-columns: repeat(4, 1fr); }

  /* Gym div */
  .gym-div { padding: 72px 48px; }

  /* App */
  .app-wrap { flex-direction: row; align-items: flex-start; }
}

/* ── Accessibility ──────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--pur);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── WordPress admin bar padding ────────────────────────────────────────── */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 * NAV DROPDOWN — desktop hover submenu
 * ═══════════════════════════════════════════════════════════════════════ */
.nav-item--has-sub { position: relative; }
.nav-item--has-sub > a { display: flex; align-items: center; gap: 4px; }
.nav-arrow { font-size: 9px; opacity: 0.6; transition: transform 0.2s; }
.nav-item--has-sub:hover .nav-arrow { transform: rotate(180deg); }

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;           /* Počinje odmah ispod — nema gap koji prekida hover */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,8,32,0.98);
  border: 1px solid rgba(91,44,168,0.3);
  border-top: 2px solid var(--pur);
  list-style: none;
  min-width: 190px;
  padding: 8px 0 6px;  /* padding-top zamenjuje vizuelni razmak */
  backdrop-filter: blur(12px);
  z-index: 300;
  border-radius: 0 0 4px 4px;
}
/* Transparentni most koji puni prostor između linka i dropdown-a */
.nav-sub::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.nav-item--has-sub:hover .nav-sub,
.nav-item--has-sub:focus-within .nav-sub { display: block; }
.nav-sub li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,248,0.6); text-decoration: none;
  border-bottom: 1px solid rgba(91,44,168,0.1);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-sub li:last-child a { border-bottom: none; }
.nav-sub li a:hover { color: var(--lav); background: rgba(91,44,168,0.1); }

/* Mobile sub-meni accordion */
.nav-mob-toggle {
  display: block; width: 100%;
  padding: 13px 24px;
  background: none; border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  text-align: left; cursor: pointer;
  border-bottom: 1px solid rgba(91,44,168,0.1);
  transition: color 0.2s, background 0.2s;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-mob-toggle:hover { color: var(--wh); background: rgba(91,44,168,0.1); }
.nav-mob-sub { display: none; list-style: none; background: rgba(91,44,168,0.06); }
.nav-mob-parent.mob-sub-open .nav-mob-sub { display: block; }
.nav-mob-sub li a {
  padding-left: 36px;
  font-size: 13px;
  color: rgba(250,250,248,0.5);
  border-bottom: 1px solid rgba(91,44,168,0.07);
}
.nav-mob-sub li a:hover { color: var(--lav); }

/* ═══════════════════════════════════════════════════════════════════════
 * VESTI sekcija
 * ═══════════════════════════════════════════════════════════════════════ */
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-hd { margin-bottom: 36px; }
.sec-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--pur); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.sec-tag::before { content: ''; width: 20px; height: 2px; background: var(--pur); }
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px,7vw,52px); font-weight: 800; line-height: 0.95;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--txt); margin-bottom: 12px;
}
.sec-sub { font-size: 14px; font-weight: 300; color: var(--mut); max-width: 480px; margin-bottom: 32px; }

.vesti-grid { display: grid; grid-template-columns: 1fr; gap: 3px; margin-top: 8px; }
.vest-card { background: var(--wh); overflow: hidden; box-shadow: 0 2px 12px rgba(26,18,40,0.06); transition: all 0.25s; }
.vest-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(91,44,168,0.12); }

.vest-card-img {
  display: block; width: 100%; height: 210px; overflow: hidden;
  position: relative; text-decoration: none;
}
.vest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vest-card:hover .vest-card-img img { transform: scale(1.05); }

.vest-placeholder {
  width: 100%; height: 100%;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  color: var(--mut);
}
.vest-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.vest-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--pur); color: var(--wh);
  padding: 3px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px;
}

.vest-card-body { padding: 18px 20px 22px; }
.vest-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pur); display: block; margin-bottom: 8px;
}
.vest-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--txt); line-height: 1.15; margin-bottom: 10px; }
.vest-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.vest-title a:hover { color: var(--pur); }
.vest-excerpt { font-size: 13px; font-weight: 300; color: var(--mut); line-height: 1.65; margin-bottom: 14px; }
.vest-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--pur); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.vest-link:hover { color: var(--pur2); }

.vesti-cta { text-align: center; margin-top: 32px; }
.vesti-empty { text-align: center; padding: 36px; background: var(--off); color: var(--mut); font-size: 14px; }
.vesti-empty a { margin-top: 14px; display: inline-block; }

/* Vest / single post page */
.single-post-hero { background: var(--dk2); padding: 90px 24px 40px; }
.single-post-hero .vest-date { margin-bottom: 12px; }
.single-post-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,7vw,52px); font-weight: 800; text-transform: uppercase; color: var(--wh); line-height: 1; }
.single-post-body { max-width: 780px; margin: 0 auto; padding: 40px 24px 60px; }
.single-post-body img { width: 100%; height: auto; margin: 24px 0; border-radius: 2px; }
.single-post-body p { font-size: 15px; font-weight: 300; color: var(--txt); line-height: 1.8; margin-bottom: 16px; }
.single-post-body h2, .single-post-body h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; color: var(--txt); margin: 28px 0 12px; }

/* btn-pur */
.btn-pur {
  display: inline-block; background: var(--pur); color: var(--wh);
  padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-pur:hover { background: var(--pur2); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════
 * INNER PAGE — header, wrap, layout
 * ═══════════════════════════════════════════════════════════════════════ */
.inner-page { padding-top: 68px; }
.inner-hero {
  position: relative; overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
}
.inner-hero--sm { min-height: 240px; }
.inner-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.inner-hero-ov  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,8,32,0.95) 0%, rgba(14,8,32,0.5) 60%, rgba(14,8,32,0.2) 100%); }
.inner-hero-body {
  position: relative; z-index: 1;
  padding: 36px 24px 40px; width: 100%;
}
.inner-hero-body .sec-tag { color: var(--lav); }
.inner-hero-body .sec-tag::before { background: var(--lav); }
.inner-hero-body h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px,9vw,72px); font-weight: 800; line-height: 0.95;
  text-transform: uppercase; color: var(--wh); margin-bottom: 12px;
}
.inner-hero-body p { font-size: 14px; color: rgba(250,250,248,0.65); max-width: 520px; }
.inner-wrap { max-width: 1100px; margin: 0 auto; padding: 52px 24px 72px; }

/* ── Dokumenta hub ──────────────────────────────────────────────────────── */
.dok-grid { display: grid; grid-template-columns: 1fr; gap: 3px; }
.dok-card {
  background: var(--wh); padding: 24px 22px;
  border-left: 3px solid var(--pur);
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit; transition: all 0.25s;
  position: relative;
}
.dok-card:hover { background: var(--off); transform: translateX(6px); }
.dok-icon { width: 36px; height: 36px; color: var(--pur); flex-shrink: 0; }
.dok-icon svg { width: 100%; height: 100%; }
.dok-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--txt); }
.dok-card p { font-size: 13px; font-weight: 300; color: var(--mut); line-height: 1.65; }
.dok-arrow {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--pur); opacity: 0; transition: opacity 0.2s, right 0.2s;
}
.dok-card:hover .dok-arrow { opacity: 1; right: 18px; }

/* ── Saradnja ───────────────────────────────────────────────────────────── */
.saradnja-intro { margin-bottom: 32px; }
.saradnja-lead { font-size: 16px; font-weight: 300; color: var(--txt); line-height: 1.7; max-width: 680px; border-left: 3px solid var(--pur); padding-left: 18px; }
.saradnja-grid { display: grid; grid-template-columns: 1fr; gap: 3px; margin-bottom: 40px; }
.saradnja-card {
  background: var(--wh); padding: 22px 20px;
  border-top: 2px solid var(--pur);
  box-shadow: 0 2px 12px rgba(26,18,40,0.05);
  transition: all 0.25s;
}
.saradnja-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(91,44,168,0.1); }
.sar-icon { width: 36px; height: 36px; color: var(--pur); margin-bottom: 12px; }
.sar-icon svg { width: 100%; height: 100%; }
.saradnja-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--txt); margin-bottom: 8px; }
.saradnja-card p { font-size: 13px; font-weight: 300; color: var(--mut); line-height: 1.65; }
.saradnja-cta { background: var(--dk2); padding: 32px 24px; text-align: center; border-top: 2px solid var(--pur); }
.saradnja-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--wh); margin-bottom: 8px; }
.saradnja-cta p { font-size: 13px; color: rgba(250,250,248,0.6); margin-bottom: 20px; }
.saradnja-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ── Pravila ────────────────────────────────────────────────────────────── */
.pravila-uvod { margin-bottom: 32px; }
.pravila-uvod p { font-size: 15px; font-weight: 300; color: var(--txt); line-height: 1.7; border-left: 3px solid var(--pur); padding-left: 18px; max-width: 680px; }
.pravila-lista { display: flex; flex-direction: column; gap: 3px; margin-bottom: 40px; }
.pravilo-item {
  background: var(--wh); padding: 20px 22px;
  display: flex; gap: 18px; align-items: flex-start;
  border-bottom: 1px solid var(--ln);
  transition: background 0.2s;
}
.pravilo-item:hover { background: var(--off); }
.pravilo-br {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; color: rgba(91,44,168,0.12); line-height: 1;
  flex-shrink: 0; width: 48px; transition: color 0.2s;
}
.pravilo-item:hover .pravilo-br { color: var(--pur); }
.pravilo-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--txt); margin-bottom: 5px; }
.pravilo-body p { font-size: 13px; font-weight: 300; color: var(--mut); line-height: 1.65; }
.pravila-footer { text-align: center; padding: 32px 0; }
.pravila-footer blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px,3.5vw,22px); font-style: italic; font-weight: 300;
  color: var(--mut); margin: 0 auto 24px; max-width: 540px;
  border-left: 2px solid var(--pur); padding-left: 18px; text-align: left;
}

/* ── O sportu ───────────────────────────────────────────────────────────── */
.sport-intro { display: flex; flex-direction: column; gap: 32px; margin-bottom: 52px; }
.sport-intro-txt h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,7vw,48px); font-weight: 800; text-transform: uppercase; color: var(--txt); margin-bottom: 16px; }
.sport-intro-txt p { font-size: 14px; font-weight: 300; color: var(--txt); line-height: 1.75; margin-bottom: 12px; max-width: 580px; }
.sport-intro-stat { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.stat-box { background: var(--dk2); padding: 20px 16px; text-align: center; border-top: 2px solid var(--pur); }
.stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--lav); display: block; }
.stat-l { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,248,0.4); }

.sport-belts { margin-bottom: 52px; }
.sport-belts h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(26px,6vw,44px); font-weight: 800; text-transform: uppercase; color: var(--txt); margin-bottom: 8px; }
.sport-belts-sub { font-size: 14px; font-weight: 300; color: var(--mut); margin-bottom: 24px; max-width: 560px; }
.belts-list { display: flex; flex-direction: column; gap: 2px; }
.belt-row { display: flex; align-items: center; gap: 14px; padding: 10px 16px; background: var(--wh); border-bottom: 1px solid var(--ln); transition: background 0.2s; }
.belt-row:hover { background: var(--off); }
.belt-stripe { width: 52px; height: 14px; border-radius: 2px; flex-shrink: 0; }
.belt-info { display: flex; flex-direction: column; }
.belt-info strong { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--txt); text-transform: uppercase; letter-spacing: 0.04em; }
.belt-info span { font-size: 12px; font-weight: 300; color: var(--mut); }
.belt-exam-info { background: var(--dk2); padding: 20px 22px; margin-top: 16px; border-left: 3px solid var(--pur); }
.belt-exam-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--wh); margin-bottom: 10px; }
.belt-exam-info ul { list-style: none; }
.belt-exam-info ul li { font-size: 13px; font-weight: 300; color: rgba(250,250,248,0.7); padding: 5px 0; border-bottom: 1px solid rgba(250,250,248,0.05); }
.belt-exam-info ul li::before { content: '— '; color: var(--lav); }

.sport-igra { margin-bottom: 20px; }
.sport-igra h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(26px,6vw,44px); font-weight: 800; text-transform: uppercase; color: var(--txt); margin-bottom: 16px; }
.sport-igra-grid { display: flex; flex-direction: column; gap: 28px; }
.sport-igra-txt p { font-size: 14px; font-weight: 300; color: var(--txt); line-height: 1.75; margin-bottom: 16px; }
.sport-igra-list { list-style: none; margin-bottom: 24px; }
.sport-igra-list li { font-size: 14px; font-weight: 300; color: var(--txt); padding: 7px 0; border-bottom: 1px solid var(--ln); display: flex; align-items: center; gap: 10px; }
.sport-igra-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pur); flex-shrink: 0; }
.sport-igra-img { overflow: hidden; height: 260px; }
.sport-igra-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── single.php (Vest) ──────────────────────────────────────────────────── */
.single-layout { padding-top: 68px; }

/* ── Responsive 700px — dodaci ──────────────────────────────────────────── */
@media (min-width: 700px) {
  /* Sekcije sa sec-inner */
  section.sec-wh { padding: 88px 48px; }

  /* Vesti grid */
  .vesti-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }

  /* Dok grid */
  .dok-grid { grid-template-columns: repeat(3, 1fr); }

  /* Saradnja grid */
  .saradnja-grid { grid-template-columns: repeat(2, 1fr); }

  /* O sportu */
  .sport-intro { flex-direction: row; align-items: flex-start; }
  .sport-intro-txt { flex: 1; }
  .sport-intro-stat { min-width: 240px; flex-shrink: 0; }
  .sport-igra-grid { flex-direction: row; align-items: flex-start; gap: 40px; }
  .sport-igra-txt { flex: 1; }
  .sport-igra-img { flex: 1; height: 320px; }

  /* Inner hero */
  .inner-hero { min-height: 420px; }
  .inner-hero--sm { min-height: 300px; }
  .inner-hero-body { padding: 48px 48px 56px; }
  .inner-wrap { padding: 64px 48px 88px; }
}

/* Nav "Kamp" — zlatni akcenat */
.nav-links .nav-kamp { color: var(--gd2); }
.nav-links .nav-kamp:hover { color: var(--gd); }

/* ═══════════════════════════════════════════════════════════════════════
 * HERKULES KAMP — landing (teget + bela + zlatna)
 * ═══════════════════════════════════════════════════════════════════════ */
.kamp-page {
  --kn:   #0F1E36;   /* teget */
  --kn2:  #1B3E68;   /* teget svetliji */
  --kgd:  #C8A030;   /* zlatna */
  --kgd2: #E8C050;   /* zlatna svetla */
  --ktitle: #0E1E33; /* naslovi */
  --kbody:  #5D6B7C; /* body tekst */
  --kcard:  #EAF2FB; /* svetlo plava kartica */
  --kcard-bd: #D8E5F4;
  --klt:  #F4F8FD;
  --klt2: #EDF3FB;
  background: #fff;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.kamp-hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 22px 80px;
  background: linear-gradient(160deg, #050B15 0%, #0A1628 45%, #0F2240 100%);
}
.kamp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(600px) rotateX(0deg);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 40%, transparent 100%);
}
.kamp-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.kamp-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--kgd); text-transform: uppercase; margin-bottom: 20px;
}
.kamp-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; line-height: 0.92; text-transform: uppercase;
  color: #fff; margin: 0 0 20px;
}
.kamp-hero-title span { display: block; }
.kamp-hero-title .l1 { font-size: clamp(34px, 9vw, 76px); letter-spacing: 0.01em; }
.kamp-hero-title .l2 { font-size: clamp(38px, 10vw, 84px); color: var(--kgd); }
.kamp-hero-title .l3 { font-size: clamp(26px, 6.5vw, 52px); }
.kamp-hero-sub {
  font-family: 'Barlow', sans-serif; font-weight: 400;
  font-size: clamp(15px, 3.5vw, 20px); letter-spacing: 0.16em;
  color: rgba(255,255,255,0.82); text-transform: uppercase; margin-bottom: 34px;
}
.kamp-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Dugmad ───────────────────────────────────────────────────────────── */
.kamp-btn {
  display: inline-block; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 8px; text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s; border: 2px solid transparent;
}
.kamp-btn-gold { background: var(--kgd); color: var(--kn); box-shadow: 0 8px 24px rgba(200,160,48,0.3); }
.kamp-btn-gold:hover { background: var(--kgd2); transform: translateY(-2px); }
.kamp-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.kamp-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.kamp-btn-full { width: 100%; text-align: center; padding: 17px; font-size: 16px; margin-top: 8px; }

/* ── Sekcije / naslovi ────────────────────────────────────────────────── */
.kamp-sec { padding: 66px 22px; }
.kamp-sec-wh  { background: #fff; }
.kamp-sec-lt  { background: var(--klt); }
.kamp-sec-lt2 { background: var(--klt2); }
.kamp-wrap { max-width: 1080px; margin: 0 auto; }
.kamp-wrap-narrow { max-width: 780px; }
.kamp-head { text-align: center; margin-bottom: 44px; }
.kamp-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.26em;
  color: var(--kgd); text-transform: uppercase; margin-bottom: 12px;
}
.kamp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 7vw, 52px); font-weight: 800; line-height: 1;
  color: var(--ktitle); text-transform: uppercase; margin-bottom: 18px;
}
.kamp-lead {
  max-width: 680px; margin: 0 auto;
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.7; color: var(--kbody);
}

/* ── Why participate ──────────────────────────────────────────────────── */
.kamp-why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.kamp-why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--kcard); border: 1px solid var(--kcard-bd);
  border-radius: 16px; padding: 26px 24px;
}
.kamp-why-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: #fff; border: 1px solid var(--kcard-bd);
  display: flex; align-items: center; justify-content: center; color: var(--kn2);
}
.kamp-why-icon svg { width: 24px; height: 24px; }
.kamp-why-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--ktitle); margin-bottom: 8px; line-height: 1.1;
}
.kamp-why-body p { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14.5px; line-height: 1.65; color: var(--kbody); }

/* ── Coaching team ────────────────────────────────────────────────────── */
.kamp-coach-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.kamp-coach-card {
  background: #fff; border: 1px solid var(--kcard-bd); border-top: 4px solid var(--acc, var(--kgd));
  border-radius: 14px; padding: 26px 24px 28px;
  box-shadow: 0 10px 30px rgba(15,30,54,0.06);
}
.kamp-coach-avatar {
  width: 68px; height: 68px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.09));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800;
  margin-bottom: 18px;
}
.kamp-coach-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700;
  text-transform: uppercase; color: var(--ktitle); line-height: 1.05; margin-bottom: 4px;
}
.kamp-coach-flag {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--kbody);
  vertical-align: middle; margin-left: 4px;
}
.kamp-coach-role {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.kamp-coach-bio { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14px; line-height: 1.65; color: var(--kbody); }

/* ── Training program ─────────────────────────────────────────────────── */
.kamp-prog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.kamp-prog-card {
  background: var(--kcard); border: 1px solid var(--kcard-bd);
  border-radius: 16px; padding: 28px 26px 30px; position: relative;
}
.kamp-prog-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 800;
  color: #C6D6EC; line-height: 1; margin-bottom: 14px;
}
.kamp-prog-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--ktitle); margin-bottom: 10px; line-height: 1.1;
}
.kamp-prog-card p { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14.5px; line-height: 1.65; color: var(--kbody); }

/* ── Location ─────────────────────────────────────────────────────────── */
.kamp-map { border-radius: 16px; overflow: hidden; border: 1px solid var(--kcard-bd); margin-bottom: 22px; box-shadow: 0 10px 30px rgba(15,30,54,0.07); }
.kamp-map iframe { display: block; }
.kamp-loc-bar {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--kcard); border: 1px solid var(--kcard-bd); border-radius: 16px;
  padding: 26px 26px; margin-bottom: 30px;
}
.kamp-loc-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.2em; color: var(--kgd); text-transform: uppercase; margin-bottom: 6px; }
.kamp-loc-city { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; text-transform: uppercase; color: var(--ktitle); line-height: 1; }
.kamp-loc-country { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.12em; color: var(--kbody); text-transform: uppercase; margin-top: 4px; }
.kamp-loc-when { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--ktitle); line-height: 1; }
.kamp-loc-days { font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--kbody); margin-top: 4px; }

.kamp-stats { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 30px; }
.kamp-stat { background: #fff; border: 1px solid var(--kcard-bd); border-radius: 16px; padding: 26px 24px; text-align: center; }
.kamp-stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 800; color: var(--ktitle); line-height: 1; }
.kamp-stat-n span { font-size: 22px; color: var(--kn2); }
.kamp-stat-l { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--kbody); text-transform: uppercase; margin-top: 10px; }

.kamp-hl-card { background: #fff; border: 1px solid var(--kcard-bd); border-radius: 18px; padding: 34px 28px; box-shadow: 0 10px 30px rgba(15,30,54,0.05); }
.kamp-hl-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; text-transform: uppercase; color: var(--ktitle); text-align: center; margin-bottom: 24px; }
.kamp-hl-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.kamp-hl-item { display: flex; gap: 12px; align-items: flex-start; font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 15px; color: #46586B; line-height: 1.5; }
.kamp-hl-check { flex-shrink: 0; color: #1EA3B8; margin-top: 1px; }
.kamp-hl-check svg { width: 22px; height: 22px; }

/* ── Registration form ────────────────────────────────────────────────── */
.kamp-pill {
  display: inline-block; margin-top: 18px;
  background: rgba(225,75,75,0.1); color: #D6453E;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 999px; border: 1px solid rgba(225,75,75,0.25);
}
.kamp-form-card { background: #fff; border: 1px solid var(--kcard-bd); border-radius: 20px; padding: 32px 26px; box-shadow: 0 14px 40px rgba(15,30,54,0.08); }
.kamp-frow { display: grid; grid-template-columns: 1fr; gap: 18px; }
.kamp-fld { margin-bottom: 18px; }
.kamp-fld label { display: block; font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 13.5px; color: #3E4C5C; margin-bottom: 8px; }
.kamp-fld input[type="text"],
.kamp-fld input[type="email"],
.kamp-fld input[type="tel"],
.kamp-fld input[type="date"],
.kamp-fld select {
  width: 100%; padding: 13px 15px;
  font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--ktitle);
  background: #F5F8FC; border: 1px solid #D8E2ED; border-radius: 10px;
  transition: border 0.2s, box-shadow 0.2s;
}
.kamp-fld input:focus, .kamp-fld select:focus { outline: none; border-color: var(--kn2); box-shadow: 0 0 0 3px rgba(27,62,104,0.12); }
.kamp-fld input::placeholder { color: #9AA7B4; }

/* Toggle grupe (Age / T-Shirt) */
.kamp-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kamp-toggle-3 { grid-template-columns: repeat(3, 1fr); }
.kamp-toggle-sizes { grid-template-columns: repeat(5, 1fr); }
.kamp-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.kamp-toggle label {
  margin: 0; text-align: center; cursor: pointer;
  padding: 13px 8px; font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 14px; color: #46586B;
  background: #F5F8FC; border: 1px solid #D8E2ED; border-radius: 10px;
  transition: all 0.18s;
}
.kamp-toggle label:hover { border-color: var(--kn2); }
.kamp-toggle input:checked + label {
  background: #EAF1FB; border-color: var(--kn2); color: var(--kn2); font-weight: 600;
  box-shadow: 0 0 0 1px var(--kn2) inset;
}
.kamp-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.kamp-notice { border-radius: 12px; padding: 16px 20px; margin-bottom: 22px; font-family: 'Barlow', sans-serif; font-size: 15px; text-align: center; }
.kamp-notice-ok  { background: #E5F6EC; color: #1E7A44; border: 1px solid #B6E4C6; }
.kamp-notice-err { background: #FCE9E8; color: #C23A33; border: 1px solid #F3C6C3; }

/* ═══ KAMP TEASER (na početnoj) ═══ */
.kamp-teaser {
  position: relative; overflow: hidden;
  padding: 74px 22px; text-align: center;
  background: linear-gradient(160deg, #050B15 0%, #0A1628 50%, #0F2240 100%);
}
.kamp-teaser-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, #000 35%, transparent 100%);
}
.kamp-teaser-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.kamp-teaser-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.26em; color: var(--gd); text-transform: uppercase; margin-bottom: 14px; }
.kamp-teaser-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(30px, 8vw, 56px); font-weight: 800; line-height: 0.96; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.kamp-teaser-title span { color: var(--gd); }
.kamp-teaser-sub { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.kamp-teaser-date { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.16em; color: var(--gd); text-transform: uppercase; margin-bottom: 26px; }
.kamp-teaser-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── KAMP responsive 700px+ ───────────────────────────────────────────── */
@media (min-width: 700px) {
  .kamp-sec { padding: 90px 40px; }
  .kamp-why-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .kamp-coach-grid { grid-template-columns: repeat(3, 1fr); }
  .kamp-prog-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .kamp-prog-num { font-size: 54px; }
  .kamp-stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .kamp-hl-grid { grid-template-columns: 1fr 1fr; gap: 16px 40px; }
  .kamp-loc-bar { flex-direction: row; align-items: center; justify-content: space-between; padding: 28px 34px; }
  .kamp-loc-date { text-align: right; }
  .kamp-frow { grid-template-columns: 1fr 1fr; gap: 20px; }
  .kamp-form-card { padding: 40px 38px; }
  .kamp-toggle-sizes { grid-template-columns: repeat(10, 1fr); }
}
