:root {
  --yellow: #ffd11a;
  --yellow-2: #f0bf00;
  --white: #ffffff;
  --black: #050505;
  --dark: #0a0a0a;
  --dark-2: #101010;
  --border: rgba(255,255,255,.10);
  --muted: #cfcfcf;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section-dark { background: linear-gradient(180deg, #060606 0%, #0b0b0b 100%); }
.eyebrow { margin: 0 0 12px; color: var(--yellow); text-transform: uppercase; font-size: 13px; letter-spacing: 1px; font-weight: 800; }
h1, h2, h3, h4 { margin: 0; line-height: .95; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 74px; height: auto; }
.main-nav { margin-left: auto; }
.nav-menu {
  list-style: none; display: flex; gap: 28px; margin: 0; padding: 0;
  text-transform: uppercase; font-size: 14px; font-weight: 800; letter-spacing: .6px;
}
.nav-menu a { position: relative; padding: 34px 0; display: block; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--yellow); }
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after {
  content: ''; position: absolute; left: 0; bottom: 22px; width: 100%; height: 3px; background: var(--yellow);
}
.menu-toggle { display: none; margin-left: auto; width: 42px; height: 38px; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 8px; background: #fff; }

.hero-main {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-main__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-main.png');
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.01);
}
.hero-main__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.92) 22%, rgba(0,0,0,.66) 46%, rgba(0,0,0,.30) 62%, rgba(0,0,0,.05) 78%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.30) 100%);
}
.hero-main__content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 520px;
  padding: 70px 0;
}
.hero-title {
  text-transform: uppercase;
  font-family: 'Anton', Impact, sans-serif;
  letter-spacing: .5px;
  font-size: clamp(62px, 8vw, 118px);
  line-height: .88;
}
.hero-title__line { display: block; }
.hero-title__line--white { color: var(--white); }
.hero-title__line--yellow { color: var(--yellow); }
.hero-text {
  margin-top: 18px;
  max-width: 430px;
  font-size: 18px;
  line-height: 1.35;
  color: #ededed;
}
.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btn {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 14px;
  border: 2px solid var(--yellow);
  transition: .2s ease;
}
.hero-btn span { font-size: 18px; }
.hero-btn--yellow { background: var(--yellow); color: #0a0a0a; }
.hero-btn--dark { background: rgba(0,0,0,.45); color: #fff; }
.hero-btn:hover { transform: translateY(-2px); }

.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stats article { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; align-content: center; padding: 18px 20px; border-right: 1px solid var(--border); }
.stats article:last-child { border-right: 0; }
.stats .icon { grid-row: span 2; color: var(--yellow); font-size: 28px; }
.stats strong { font-size: 34px; }
.stats p { color: #dadada; text-transform: uppercase; font-size: 12px; line-height: 1.1; font-weight: 700; }

section { padding: 54px 0; }
.section-head { margin-bottom: 26px; }
.section-head.inline { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
h2 { font-size: clamp(34px, 4vw, 58px); text-transform: uppercase; }
.section-text { margin-top: 12px; max-width: 760px; color: var(--muted); line-height: 1.55; font-size: 18px; }
.link-btn {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 18px;
  border: 2px solid rgba(255,209,26,.75); color: var(--yellow); text-transform: uppercase; font-weight: 800; font-size: 13px;
}

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat-card { background: #101010; border: 1px solid var(--border); overflow: hidden; }
.cat-photo { height: 96px; background: linear-gradient(135deg, rgba(255,209,26,.28), rgba(0,0,0,.2)), radial-gradient(circle at 60% 40%, #525252, #111 62%); border-bottom: 4px solid var(--yellow); }
.cat-card h3 { padding: 12px 12px 2px; font-size: 18px; text-transform: uppercase; }
.cat-card p { padding: 0 12px 14px; color: #ddd; font-size: 14px; font-weight: 700; }

.coach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.coach-card { background: linear-gradient(180deg, #151515 0%, #0b0b0b 100%); border: 1px solid var(--border); padding: 22px; }
.avatar { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--yellow), #8f7200); color: #0b0b0b; font-weight: 900; font-size: 24px; margin-bottom: 16px; }
.coach-card h3 { font-size: 22px; margin-bottom: 6px; }
.role { color: var(--yellow); text-transform: uppercase; font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.coach-card p:last-child { color: var(--muted); line-height: 1.5; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { background: #111; border: 1px solid var(--border); overflow: hidden; }
.post-card img, .post-placeholder { width: 100%; height: 220px; object-fit: cover; background: linear-gradient(135deg, rgba(255,209,26,.28), rgba(0,0,0,.2)), radial-gradient(circle at 60% 40%, #525252, #111 62%); }
.post-card-body { padding: 18px; }
.post-card .date { color: var(--yellow); text-transform: uppercase; font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.post-card h3 { font-size: 24px; margin-bottom: 8px; }
.post-card p:last-child { color: var(--muted); line-height: 1.5; }

.page-hero { padding: 110px 0 70px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(50px, 6vw, 92px); text-transform: uppercase; }
.page-hero p:not(.eyebrow) { max-width: 760px; font-size: 19px; color: #ededed; line-height: 1.55; }
.wp-content, .article-content { max-width: 920px; color: #ececec; font-size: 19px; line-height: 1.8; }
.article-image { margin-bottom: 28px; }
.kup-app { background: #111; border: 1px solid var(--border); padding: 22px; }
.loading { color: var(--muted); }

.footer { border-top: 1px solid rgba(255,209,26,.35); padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .85fr 1.25fr; gap: 36px; }
.footer-logo { width: 90px; margin-bottom: 14px; }
.footer h3, .footer h4 { text-transform: uppercase; margin-bottom: 12px; }
.footer h4 { color: var(--yellow); }
.footer p, .footer li { color: var(--muted); line-height: 1.55; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 7px; }
.newsletter { display: flex; min-height: 48px; border: 1px solid var(--border); margin-top: 14px; }
.newsletter input { flex: 1; background: #0a0a0a; color: #fff; border: 0; padding: 0 14px; }
.newsletter button { background: var(--yellow); color: #0a0a0a; border: 0; padding: 0 18px; font-weight: 800; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 34px; padding-top: 16px; font-size: 13px; color: #aaa; }

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; top: 86px; left: 0; right: 0; display: none;
    background: #050505; border-bottom: 1px solid var(--border); padding: 16px 20px;
  }
  .main-nav.open { display: block; }
  .nav-menu { display: block; }
  .nav-menu a { padding: 12px 0; }
  .nav-menu a:hover::after, .nav-menu .current-menu-item > a::after { display: none; }
  .hero-main { min-height: 680px; }
  .hero-main__content { min-height: 680px; }
  .hero-title { font-size: clamp(58px, 10vw, 94px); }
  .stats-grid, .category-grid, .coach-grid, .post-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats article:nth-child(2n) { border-right: 0; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero-main { min-height: 760px; }
  .hero-main__bg { background-position: center; }
  .hero-main__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.58) 26%, rgba(0,0,0,.82) 60%, rgba(0,0,0,.96) 100%);
  }
  .hero-main__content { align-items: end; min-height: 760px; }
  .hero-copy { max-width: 100%; padding: 0 0 44px; }
  .hero-title { font-size: 62px; }
  .hero-text { font-size: 17px; }
  .section-head.inline { display: block; }
  .link-btn { margin-top: 16px; }
}

@media (max-width: 600px) {
  .stats-grid, .category-grid, .coach-grid, .post-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats article { border-right: 0; border-bottom: 1px solid var(--border); }
  .stats article:last-child { border-bottom: 0; }
  .hero-title { font-size: 52px; }
  .hero-btn { width: 100%; justify-content: center; }
  .footer-bottom { display: block; }
}


/* Corrected hero: exact uploaded image WITH headline text as background */
.hero-main--bg-image {
  position: relative;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: #020202;
}

.hero-main--bg-image .hero-main__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-main.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-main--bg-image .hero-main__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.24) 100%);
  pointer-events: none;
}

.hero-main__content--buttons {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 44px;
}

.hero-buttons--only {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-buttons--only .hero-btn {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 2px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(0,0,0,.40);
}

.hero-buttons--only .hero-btn--yellow {
  background: var(--yellow);
  color: #050505;
}

.hero-buttons--only .hero-btn--dark {
  background: rgba(0,0,0,.72);
  color: #fff;
}

.hero-buttons--only .hero-btn span {
  font-size: 22px;
  line-height: 1;
}

.hero-main--bg-image .hero-copy,
.hero-main--bg-image .hero-title,
.hero-main--bg-image .hero-text {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-main--bg-image {
    min-height: 650px;
  }

  .hero-main__content--buttons {
    min-height: 650px;
    padding-bottom: 34px;
  }
}

@media (max-width: 768px) {
  .hero-main--bg-image {
    min-height: 620px;
  }

  .hero-main__content--buttons {
    min-height: 620px;
    padding-bottom: 24px;
  }

  .hero-buttons--only {
    width: 100%;
  }

  .hero-buttons--only .hero-btn {
    width: 100%;
    justify-content: center;
  }
}


/* STATS UPDATE: icons are images, text is real selectable HTML */
.stats--real {
  padding: 0;
  background: linear-gradient(90deg, #07090e 0%, #101116 50%, #07090e 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stats-real-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 79px;
}

.stat-real {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-right: 1px solid rgba(255,255,255,.34);
}

.stat-real:last-child {
  border-right: 0;
}

.stat-real img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.stat-real strong {
  display: block;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 30px;
  line-height: .85;
  font-weight: 900;
  letter-spacing: .2px;
}

.stat-real p {
  margin: 3px 0 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .25px;
}

.stat-real__single {
  margin-top: 0 !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
}

/* HERO MOBILE OPTIMIZATION:
   Desktop keeps cover. On small screens, use contain so the headline inside the image remains visible. */
@media (max-width: 768px) {
  .hero-main--bg-image {
    min-height: calc(100vw * 0.563 + 130px);
    background: #020202;
  }

  .hero-main--bg-image .hero-main__bg {
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .hero-main--bg-image .hero-main__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.03) 45%, rgba(0,0,0,.40) 100%);
  }

  .hero-main__content--buttons {
    min-height: calc(100vw * 0.563 + 130px);
    align-items: flex-end;
    padding-bottom: 18px;
  }
}

/* Mobile stats: keep real text readable instead of shrinking the strip. */
@media (max-width: 1024px) {
  .stats-real-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-real:nth-child(2n) {
    border-right: 0;
  }

  .stat-real:nth-child(1),
  .stat-real:nth-child(2),
  .stat-real:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
}

@media (max-width: 600px) {
  .stats-real-grid {
    grid-template-columns: 1fr;
  }

  .stat-real,
  .stat-real:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .stat-real:last-child {
    border-bottom: 0;
  }

  .stat-real {
    padding: 14px 20px;
  }
}


/* Stats small refinement */
.stat-real {
  gap: 16px;
}

.stat-real img {
  width: auto !important;
  height: 56px !important;
  max-width: 92px !important;
  object-fit: contain;
  flex: 0 0 auto;
}

.stat-real strong {
  font-weight: 900 !important;
}

.stat-real p {
  font-weight: 500 !important;
  letter-spacing: .15px;
}

.stat-real__single {
  font-weight: 500 !important;
}

@media (max-width: 600px) {
  .stat-real img {
    height: 52px !important;
    max-width: 86px !important;
  }
}


/* STATS SECTION WITH GENERATED ICONS */
.stats--real {
  padding: 0;
  background: linear-gradient(90deg, #06080d 0%, #0b0f16 50%, #06080d 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stats-real-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.stat-real {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 106px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.stat-real:last-child {
  border-right: 0;
}

.stat-real img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 48px;
}

.stat-real__content {
  min-width: 0;
}

.stat-real strong {
  display: block;
  margin: 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 32px;
  line-height: .85;
  font-weight: 900;
  letter-spacing: .2px;
}

.stat-real p {
  margin: 4px 0 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1px;
}

.stat-real__single {
  margin-top: 0 !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
}

@media (max-width: 1100px) {
  .stats-real-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-real:nth-child(2n) {
    border-right: 0;
  }

  .stat-real {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .stat-real:nth-last-child(-n+1),
  .stat-real:nth-last-child(-n+2):nth-child(odd),
  .stat-real:nth-last-child(-n+2):nth-child(even) {
    /* keep bottom borders manageable; last row rule refined below for mobile */
  }
}

@media (max-width: 640px) {
  .stats-real-grid {
    grid-template-columns: 1fr;
  }

  .stat-real,
  .stat-real:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .stat-real:last-child {
    border-bottom: 0;
  }
}


/* =========================================
   TRENING KATEGORIJE
========================================= */
.training-categories {
  padding: 46px 0 60px;
  background: #050505;
}

.training-categories__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.training-categories__head h2 {
  margin: 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 54px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.training-categories__head h2 span {
  color: #f2c300;
}

.training-categories__all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid #f2c300;
  background: rgba(0, 0, 0, 0.55);
  color: #f2c300;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.training-categories__all span {
  font-size: 24px;
  line-height: 1;
}

.training-categories__all:hover {
  background: #f2c300;
  color: #050505;
}

.training-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.training-card {
  position: relative;
  display: block;
  min-height: 235px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0a0a0a;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.training-card__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.training-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.training-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.18) 38%,
      rgba(0,0,0,0.82) 100%
    );
  z-index: 1;
}

.training-card__content {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  transition: transform 0.28s ease;
}

.training-card__content h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 34px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.training-card__content p {
  margin: 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.training-card__corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-bottom: 34px solid #f2c300;
  z-index: 3;
  transition: transform 0.28s ease;
}

.training-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.28s ease;
}

.training-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 195, 0, 0.95);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(242,195,0,0.18),
    0 0 28px rgba(242,195,0,0.16);
}

.training-card:hover::before {
  border-color: rgba(242, 195, 0, 0.55);
}

.training-card:hover .training-card__image-wrap img {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.05);
}

.training-card:hover .training-card__content {
  transform: translateY(-4px);
}

.training-card:hover .training-card__corner {
  transform: scale(1.08);
}


/* =========================================
   ZAŠTO ATLETIKO
========================================= */
.why-atletiko {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-atletiko__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.why-atletiko__title h2 {
  max-width: 420px;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 54px;
  text-transform: uppercase;
}

.why-atletiko__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-atletiko__items article {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
}

.why-atletiko__items span {
  display: block;
  margin-bottom: 12px;
  color: #f2c300;
  font-size: 28px;
}

.why-atletiko__items h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}

.why-atletiko__items p {
  margin: 0;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   ATLETIKO KUP BLOK
========================================= */
.home-cup {
  padding: 70px 0;
  overflow: hidden;
  border-top: 1px solid rgba(242,195,0,0.28);
  border-bottom: 1px solid rgba(242,195,0,0.28);
}

.home-cup__grid {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 40px;
  align-items: center;
}

.home-cup h2 {
  max-width: 760px;
  color: #fff;
  font-size: 62px;
  text-transform: uppercase;
}

.home-cup p {
  max-width: 620px;
  margin-top: 16px;
  color: #d8d8d8;
  font-size: 20px;
  line-height: 1.45;
}

.home-cup__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 24px;
  background: #f2c300;
  color: #050505;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-cup__trophy {
  font-size: 130px;
  text-align: center;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.65));
}


/* =========================================
   GALERIJA
========================================= */
.home-gallery {
  padding: 54px 0 70px;
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 12px;
}

.home-gallery__item {
  min-height: 150px;
  background:
    linear-gradient(145deg, rgba(242,195,0,0.25), transparent),
    radial-gradient(circle at 40% 40%, #4f4f4f, #070707 70%);
  border: 1px solid rgba(255,255,255,0.12);
}


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1400px) {
  .training-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .why-atletiko__grid,
  .home-cup__grid {
    grid-template-columns: 1fr;
  }

  .why-atletiko__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .training-categories__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .training-categories__head h2 {
    font-size: 42px;
  }

  .training-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .training-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .training-categories__grid,
  .why-atletiko__items,
  .home-gallery__grid {
    grid-template-columns: 1fr;
  }

  .training-card {
    min-height: 290px;
  }

  .training-categories__all {
    width: 100%;
    justify-content: center;
  }

  .training-categories__head h2,
  .why-atletiko__title h2,
  .home-cup h2 {
    font-size: 38px;
  }

  .home-cup__trophy {
    font-size: 90px;
  }
}


/* =========================================
   HEADING SIZE FIX
   Manji i manje napadni naslovi sekcija
========================================= */

/* Global section headings */
.section-head h2,
.section-head.inline h2,
.training-categories__head h2,
.why-atletiko__title h2,
.home-cup h2,
.home-gallery h2 {
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .2px !important;
  text-transform: uppercase;
}

/* Trening kategorije heading posebno kao u referenci */
.training-categories__head h2 {
  font-size: 32px !important;
  font-weight: 800 !important;
}

/* Kartice da ne budu preagresivne */
.training-card__content h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.training-card__content p {
  font-size: 15px !important;
  font-weight: 500 !important;
}

/* Dugme "Pogledaj sve kategorije" manje */
.training-categories__all {
  min-height: 42px !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.training-categories__all span {
  font-size: 19px !important;
}

/* Sekcije malo kompaktnije */
.training-categories {
  padding: 34px 0 48px !important;
}

.training-categories__head {
  margin-bottom: 18px !important;
}

.why-atletiko,
.coaches-section,
.news-preview,
.home-gallery {
  padding-top: 44px !important;
  padding-bottom: 50px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .section-head h2,
  .section-head.inline h2,
  .training-categories__head h2,
  .why-atletiko__title h2,
  .home-cup h2,
  .home-gallery h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 640px) {
  .section-head h2,
  .section-head.inline h2,
  .training-categories__head h2,
  .why-atletiko__title h2,
  .home-cup h2,
  .home-gallery h2 {
    font-size: 28px !important;
  }

  .training-card__content h3 {
    font-size: 24px !important;
  }
}


/* =========================================
   ZAŠTO ATLETIKO - FINAL SECTION
   Background image contains boy + handwritten slogan.
   Icons are images, all body text is selectable/copyable HTML.
========================================= */
.why-atletiko--image-bg {
  position: relative;
  min-height: 280px;
  padding: 34px 0 36px !important;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

.why-atletiko__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.92) 38%, rgba(0,0,0,0.36) 58%, rgba(0,0,0,0.02) 100%),
    url('../images/why-atletiko-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.why-atletiko__inner {
  position: relative;
  z-index: 2;
}

.why-atletiko__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.why-atletiko__head h2 {
  margin: 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: .2px;
  text-shadow: 0 3px 8px rgba(0,0,0,.65);
}

.why-atletiko__head span {
  width: 46px;
  height: 3px;
  display: inline-block;
  background: #f2c300;
}

.why-atletiko__items--copyable {
  width: min(660px, 58%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-atletiko__items--copyable article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
}

.why-atletiko__items--copyable img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  margin-top: 0;
}

.why-atletiko__items--copyable h3 {
  margin: 0 0 8px !important;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.why-atletiko__items--copyable p {
  margin: 0 !important;
  color: #e9e9e9 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  text-transform: none;
}

@media (max-width: 1100px) {
  .why-atletiko--image-bg {
    min-height: auto;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.86) 55%, rgba(0,0,0,0.28) 100%),
      url('../images/why-atletiko-bg.jpg');
  }

  .why-atletiko__items--copyable {
    width: min(760px, 70%);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .why-atletiko__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.86) 45%, rgba(0,0,0,0.96) 100%),
      url('../images/why-atletiko-bg.jpg');
    background-position: center right;
  }

  .why-atletiko__items--copyable {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 38px 1fr;
  }

  .why-atletiko__items--copyable img {
    width: 34px;
    height: 34px;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 19px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 13px !important;
  }
}


/* =========================================
   WHY ATLETIKO - PROPORTION TUNE
   Closer to the supplied reference strip
========================================= */
.why-atletiko--image-bg {
  min-height: 188px !important;
  padding: 16px 0 18px !important;
}

.why-atletiko__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.90) 35%, rgba(0,0,0,0.52) 56%, rgba(0,0,0,0.06) 100%),
    url('../images/why-atletiko-bg.jpg');
  background-position: center right;
}

.why-atletiko__head {
  gap: 12px;
  margin-bottom: 14px;
}

.why-atletiko__head h2 {
  font-size: 28px !important;
  font-weight: 800 !important;
  letter-spacing: .15px !important;
}

.why-atletiko__head span {
  width: 38px;
  height: 3px;
}

.why-atletiko__items--copyable {
  width: min(640px, 62%);
  gap: 16px;
  align-items: start;
}

.why-atletiko__items--copyable article {
  grid-template-columns: 28px 1fr;
  gap: 8px;
}

.why-atletiko__items--copyable img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.why-atletiko__items--copyable h3 {
  font-size: 15px !important;
  margin-bottom: 6px !important;
}

.why-atletiko__items--copyable p {
  font-size: 10.5px !important;
  line-height: 1.45 !important;
  max-width: 135px;
}

/* keep the strip compact on laptops too */
@media (max-width: 1200px) {
  .why-atletiko--image-bg {
    min-height: 200px !important;
    padding: 18px 0 22px !important;
  }

  .why-atletiko__items--copyable {
    width: min(690px, 68%);
    gap: 14px;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 14px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 10px !important;
  }
}

@media (max-width: 900px) {
  .why-atletiko--image-bg {
    min-height: auto !important;
    padding: 24px 0 26px !important;
  }

  .why-atletiko__head h2 {
    font-size: 26px !important;
  }

  .why-atletiko__items--copyable {
    width: min(760px, 74%);
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 16px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 11px !important;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .why-atletiko--image-bg {
    padding: 24px 0 28px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.96) 100%),
      url('../images/why-atletiko-bg.jpg');
    background-size: cover;
    background-position: center right;
  }

  .why-atletiko__head h2 {
    font-size: 24px !important;
  }

  .why-atletiko__items--copyable {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 32px 1fr;
  }

  .why-atletiko__items--copyable img {
    width: 28px;
    height: 28px;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
  }
}


/* =========================================
   WHY ATLETIKO - BETTER READABILITY FOR
   "DISCIPLINA / TIMSKI DUH / POBEDNIČKI..."
========================================= */
.why-atletiko--image-bg {
  min-height: 210px !important;
  padding: 18px 0 20px !important;
}

.why-atletiko__bg {
  /* keep the full image height visible instead of cropping it too much */
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.90) 30%, rgba(0,0,0,0.42) 52%, rgba(0,0,0,0.04) 100%),
    url('../images/why-atletiko-bg.jpg') !important;
  background-size: 100% 100%, auto 100% !important;
  background-position: left top, right center !important;
  background-repeat: no-repeat, no-repeat !important;
}

.why-atletiko__items--copyable {
  width: min(560px, 46%) !important;
  gap: 14px !important;
}

.why-atletiko__items--copyable p {
  max-width: 124px !important;
}

/* Slightly more compact content to leave more room for the boy + white slogan */
.why-atletiko__items--copyable article {
  grid-template-columns: 26px 1fr !important;
  gap: 8px !important;
}

.why-atletiko__items--copyable img {
  width: 22px !important;
  height: 22px !important;
}

.why-atletiko__items--copyable h3 {
  font-size: 14px !important;
}

.why-atletiko__items--copyable p {
  font-size: 10px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .why-atletiko--image-bg {
    min-height: 220px !important;
  }

  .why-atletiko__bg {
    background-size: 100% 100%, auto 100% !important;
    background-position: left top, right center !important;
  }

  .why-atletiko__items--copyable {
    width: min(560px, 50%) !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .why-atletiko--image-bg {
    min-height: auto !important;
    padding: 24px 0 28px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.88) 42%, rgba(0,0,0,0.96) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
    background-size: cover, cover !important;
    background-position: center top, center top !important;
  }

  .why-atletiko__items--copyable {
    width: 100% !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 32px 1fr !important;
  }

  .why-atletiko__items--copyable img {
    width: 28px !important;
    height: 28px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
    max-width: none !important;
  }
}


/* =========================================
   WHY ATLETIKO - BALANCED LAYOUT FIX
   Higher section + wider text columns + readable image
========================================= */
.why-atletiko--image-bg {
  min-height: 248px !important;
  padding: 22px 0 24px !important;
}

.why-atletiko__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.90) 31%, rgba(0,0,0,0.44) 54%, rgba(0,0,0,0.05) 100%),
    url('../images/why-atletiko-bg.jpg') !important;
  background-size: 100% 100%, auto 100% !important;
  background-position: left top, right center !important;
  background-repeat: no-repeat, no-repeat !important;
}

.why-atletiko__head {
  margin-bottom: 18px !important;
}

.why-atletiko__head h2 {
  font-size: 29px !important;
}

.why-atletiko__items--copyable {
  width: min(760px, 60%) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.why-atletiko__items--copyable article {
  grid-template-columns: 28px 1fr !important;
  gap: 9px !important;
}

.why-atletiko__items--copyable img {
  width: 24px !important;
  height: 24px !important;
}

.why-atletiko__items--copyable h3 {
  font-size: 15px !important;
  margin-bottom: 7px !important;
}

.why-atletiko__items--copyable p {
  max-width: 155px !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

/* Laptop / tablet */
@media (max-width: 1200px) {
  .why-atletiko--image-bg {
    min-height: 260px !important;
    padding: 24px 0 26px !important;
  }

  .why-atletiko__items--copyable {
    width: min(760px, 66%) !important;
    gap: 16px !important;
  }

  .why-atletiko__items--copyable p {
    max-width: 165px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 900px) {
  .why-atletiko--image-bg {
    min-height: auto !important;
    padding: 26px 0 28px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.82) 45%, rgba(0,0,0,0.18) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
    background-size: 100% 100%, auto 100% !important;
    background-position: left top, right center !important;
  }

  .why-atletiko__items--copyable {
    width: min(760px, 74%) !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 16px !important;
  }

  .why-atletiko__items--copyable p {
    max-width: none !important;
    font-size: 11.5px !important;
  }
}

@media (max-width: 640px) {
  .why-atletiko--image-bg {
    padding: 24px 0 30px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.96) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
    background-size: cover, cover !important;
    background-position: center top, center top !important;
  }

  .why-atletiko__head h2 {
    font-size: 24px !important;
  }

  .why-atletiko__items--copyable {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 32px 1fr !important;
  }

  .why-atletiko__items--copyable img {
    width: 28px !important;
    height: 28px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
  }
}


/* =========================================
   WHY ATLETIKO - TWO ROWS + STRONGER ICONS
   Right visual aligned with container/card edge
========================================= */
.why-atletiko--image-bg {
  min-height: 320px !important;
  padding: 26px 0 28px !important;
  overflow: hidden;
}

.why-atletiko__bg {
  background: linear-gradient(90deg, #050505 0%, #070707 50%, #090909 100%) !important;
}

.why-atletiko__inner {
  position: relative;
  min-height: 265px;
  padding-right: 38%;
}

/* Right visual now lives inside the container, so it lines up with the
   right edge of the cards above (including Omladinci). */
.why-atletiko__inner::after {
  content: "";
  position: absolute;
  top: -26px;
  right: 0;
  bottom: -28px;
  width: 36%;
  background-image: url('../images/why-atletiko-bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  pointer-events: none;
}

.why-atletiko__head {
  position: relative;
  z-index: 2;
  margin-bottom: 22px !important;
}

.why-atletiko__head h2 {
  font-size: 31px !important;
  line-height: 1 !important;
}

.why-atletiko__items--copyable {
  position: relative;
  z-index: 2;
  width: auto !important;
  max-width: 58% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px 28px !important;
}

.why-atletiko__items--copyable article {
  grid-template-columns: 34px 1fr !important;
  gap: 12px !important;
  align-items: start;
}

.why-atletiko__items--copyable img {
  width: 30px !important;
  height: 30px !important;
  margin-top: 1px !important;
  filter: drop-shadow(0 0 6px rgba(242,195,0,.18));
}

.why-atletiko__items--copyable h3 {
  font-size: 18px !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
}

.why-atletiko__items--copyable p {
  max-width: none !important;
  font-size: 13px !important;
  line-height: 1.52 !important;
}

/* Laptop */
@media (max-width: 1200px) {
  .why-atletiko--image-bg {
    min-height: 330px !important;
  }

  .why-atletiko__inner {
    padding-right: 37%;
  }

  .why-atletiko__inner::after {
    width: 37%;
  }

  .why-atletiko__items--copyable {
    max-width: 60% !important;
    gap: 22px 22px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
  }
}

@media (max-width: 900px) {
  .why-atletiko--image-bg {
    min-height: 370px !important;
    padding: 26px 0 28px !important;
  }

  .why-atletiko__inner {
    min-height: 300px;
    padding-right: 34%;
  }

  .why-atletiko__inner::after {
    width: 34%;
    background-size: auto 92%;
    background-position: right center;
  }

  .why-atletiko__items--copyable {
    max-width: 62% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 18px !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 30px 1fr !important;
    gap: 10px !important;
  }

  .why-atletiko__items--copyable img {
    width: 26px !important;
    height: 26px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 16px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 11.5px !important;
  }
}

@media (max-width: 640px) {
  .why-atletiko--image-bg {
    min-height: auto !important;
    padding: 24px 0 260px !important;
  }

  .why-atletiko__inner {
    min-height: auto;
    padding-right: 0;
  }

  .why-atletiko__inner::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: -24px;
    width: 100%;
    height: 230px;
    background-position: center top;
    background-size: cover;
  }

  .why-atletiko__items--copyable {
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 34px 1fr !important;
  }

  .why-atletiko__items--copyable img {
    width: 28px !important;
    height: 28px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
  }
}


/* =========================================
   WHY ATLETIKO - ONE ROW LAYOUT
   Whole section uses the boy image as background
========================================= */
.why-atletiko--image-bg {
  min-height: 270px !important;
  padding: 24px 0 28px !important;
  background: #050505;
  overflow: hidden;
}

.why-atletiko__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.93) 32%, rgba(0,0,0,0.55) 56%, rgba(0,0,0,0.10) 100%),
    url('../images/why-atletiko-bg.jpg') !important;
  background-size: 100% 100%, auto 100% !important;
  background-position: left top, right center !important;
  background-repeat: no-repeat, no-repeat !important;
  z-index: 0;
}

.why-atletiko__inner {
  position: relative;
  z-index: 2;
  min-height: 215px;
  padding-right: 0 !important;
}

.why-atletiko__inner::after {
  display: none !important;
  content: none !important;
}

.why-atletiko__head {
  position: relative;
  z-index: 2;
  margin-bottom: 20px !important;
}

.why-atletiko__head h2 {
  font-size: 31px !important;
  line-height: 1 !important;
}

.why-atletiko__items--copyable {
  position: relative;
  z-index: 2;
  width: min(920px, 76%) !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start;
}

.why-atletiko__items--copyable article {
  display: grid !important;
  grid-template-columns: 36px 1fr !important;
  gap: 12px !important;
  align-items: start;
}

.why-atletiko__items--copyable img {
  width: 32px !important;
  height: 32px !important;
  margin-top: 1px !important;
  filter: drop-shadow(0 0 8px rgba(242,195,0,.20));
}

.why-atletiko__items--copyable h3 {
  font-size: 18px !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
}

.why-atletiko__items--copyable p {
  max-width: none !important;
  font-size: 12px !important;
  line-height: 1.52 !important;
}

/* Keep 1 row on desktop, switch below only when needed */
@media (max-width: 1100px) {
  .why-atletiko--image-bg {
    min-height: 285px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.92) 36%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.10) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
    background-size: 100% 100%, auto 100% !important;
    background-position: left top, right center !important;
  }

  .why-atletiko__items--copyable {
    width: min(860px, 80%) !important;
    gap: 16px !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 32px 1fr !important;
    gap: 10px !important;
  }

  .why-atletiko__items--copyable img {
    width: 28px !important;
    height: 28px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 16px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 11.5px !important;
  }
}

@media (max-width: 900px) {
  .why-atletiko--image-bg {
    min-height: auto !important;
    padding: 26px 0 30px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.24) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
    background-size: 100% 100%, auto 100% !important;
    background-position: left top, right center !important;
  }

  .why-atletiko__items--copyable {
    width: min(760px, 78%) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 18px !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 32px 1fr !important;
  }

  .why-atletiko__items--copyable img {
    width: 28px !important;
    height: 28px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
  }
}

@media (max-width: 640px) {
  .why-atletiko--image-bg {
    padding: 24px 0 30px !important;
  }

  .why-atletiko__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.88) 42%, rgba(0,0,0,0.96) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
    background-size: cover, cover !important;
    background-position: center top, center top !important;
  }

  .why-atletiko__head h2 {
    font-size: 24px !important;
  }

  .why-atletiko__items--copyable {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .why-atletiko__items--copyable article {
    grid-template-columns: 34px 1fr !important;
  }

  .why-atletiko__items--copyable img {
    width: 30px !important;
    height: 30px !important;
  }

  .why-atletiko__items--copyable h3 {
    font-size: 17px !important;
  }

  .why-atletiko__items--copyable p {
    font-size: 12px !important;
  }
}


/* =========================================
   WHY ATLETIKO - RIGHT EDGE ALIGNMENT
   Align background image with the same container edge
   as the "Omladinci" card above.
========================================= */
.why-atletiko__bg {
  top: 0 !important;
  bottom: 0 !important;
  left: max(20px, calc((100vw - 1200px) / 2)) !important;
  right: max(20px, calc((100vw - 1200px) / 2)) !important;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.93) 32%, rgba(0,0,0,0.55) 56%, rgba(0,0,0,0.10) 100%),
    url('../images/why-atletiko-bg.jpg') !important;
  background-size: 100% 100%, auto 100% !important;
  background-position: left top, right center !important;
  background-repeat: no-repeat, no-repeat !important;
}

@media (max-width: 900px) {
  .why-atletiko__bg {
    left: 20px !important;
    right: 20px !important;
  }
}

@media (max-width: 640px) {
  .why-atletiko__bg {
    left: 0 !important;
    right: 0 !important;
  }
}


/* =========================================
   ATLETIKO KUP BANNER
   Replaces "Treneri i biografije"
========================================= */
.atletiko-kup-banner {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

.atletiko-kup-banner__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.85) 26%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.16) 100%),
    url('../images/atletiko-kup-bg.jpg');
  background-size: 100% 100%, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
}

.atletiko-kup-banner__inner {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.atletiko-kup-banner__content {
  max-width: 520px;
}

.atletiko-kup-banner__content h2 {
  margin: 0 0 8px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 66px;
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.atletiko-kup-banner__content h2 span {
  color: #fff;
  font-style: normal;
}

.atletiko-kup-banner__content h2 em {
  color: #f2c300;
  font-style: normal;
}

.atletiko-kup-banner__subtitle {
  margin: 0 0 16px;
  color: #f2c300;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.atletiko-kup-banner__text {
  margin: 0;
  color: #f1f1f1;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15px;
}

.atletiko-kup-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  margin-top: 22px;
  padding: 0 22px;
  background: #f2c300;
  border: 2px solid #d8aa00;
  color: #050505;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease;
}

.atletiko-kup-banner__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.atletiko-kup-banner__button span {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .atletiko-kup-banner,
  .atletiko-kup-banner__inner {
    min-height: 240px;
  }

  .atletiko-kup-banner__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.84) 34%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.18) 100%),
      url('../images/atletiko-kup-bg.jpg');
  }

  .atletiko-kup-banner__content h2 {
    font-size: 54px;
  }

  .atletiko-kup-banner__subtitle {
    font-size: 22px;
  }

  .atletiko-kup-banner__text {
    font-size: 20px;
  }

  .atletiko-kup-banner__button {
    min-height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .atletiko-kup-banner,
  .atletiko-kup-banner__inner {
    min-height: 340px;
  }

  .atletiko-kup-banner__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.78) 38%, rgba(0,0,0,0.92) 100%),
      url('../images/atletiko-kup-bg.jpg');
    background-size: cover, cover;
    background-position: center center, center center;
  }

  .atletiko-kup-banner__inner {
    align-items: flex-end;
  }

  .atletiko-kup-banner__content {
    max-width: 100%;
  }

  .atletiko-kup-banner__content h2 {
    font-size: 42px;
  }

  .atletiko-kup-banner__subtitle {
    font-size: 18px;
  }

  .atletiko-kup-banner__text {
    font-size: 16px;
  }

  .atletiko-kup-banner__button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}


/* =========================================
   ATLETIKO KUP - BACKGROUND FIT FIX
   - background aligned with container width
   - less zoomed
   - whole trophy more visible
========================================= */
.atletiko-kup-banner {
  min-height: 250px !important;
}

.atletiko-kup-banner__bg {
  top: 0 !important;
  bottom: 0 !important;
  left: max(20px, calc((100vw - 1200px) / 2)) !important;
  right: max(20px, calc((100vw - 1200px) / 2)) !important;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.76) 20%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.10) 100%),
    url('../images/atletiko-kup-bg.jpg') !important;
  background-size: 100% 100%, contain !important;
  background-position: center center, center center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-color: #050505 !important;
}

.atletiko-kup-banner__inner {
  min-height: 250px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.atletiko-kup-banner__content {
  max-width: 430px !important;
}

.atletiko-kup-banner__content h2 {
  font-size: 58px !important;
}

.atletiko-kup-banner__subtitle {
  font-size: 22px !important;
  margin-bottom: 14px !important;
}

.atletiko-kup-banner__text {
  font-size: 20px !important;
}

.atletiko-kup-banner__button {
  min-height: 52px !important;
  font-size: 19px !important;
}

/* tablet */
@media (max-width: 1100px) {
  .atletiko-kup-banner {
    min-height: 230px !important;
  }

  .atletiko-kup-banner__bg {
    left: 20px !important;
    right: 20px !important;
    background-size: 100% 100%, contain !important;
    background-position: center center, center center !important;
  }

  .atletiko-kup-banner__inner {
    min-height: 230px !important;
  }

  .atletiko-kup-banner__content {
    max-width: 390px !important;
  }

  .atletiko-kup-banner__content h2 {
    font-size: 50px !important;
  }

  .atletiko-kup-banner__subtitle {
    font-size: 20px !important;
  }

  .atletiko-kup-banner__text {
    font-size: 18px !important;
  }
}

/* mobile */
@media (max-width: 640px) {
  .atletiko-kup-banner {
    min-height: 340px !important;
  }

  .atletiko-kup-banner__bg {
    left: 0 !important;
    right: 0 !important;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.74) 38%, rgba(0,0,0,0.90) 100%),
      url('../images/atletiko-kup-bg.jpg') !important;
    background-size: cover, cover !important;
    background-position: center center, center center !important;
  }

  .atletiko-kup-banner__inner {
    min-height: 340px !important;
    align-items: flex-end !important;
  }

  .atletiko-kup-banner__content {
    max-width: 100% !important;
  }

  .atletiko-kup-banner__content h2 {
    font-size: 40px !important;
  }

  .atletiko-kup-banner__subtitle {
    font-size: 17px !important;
  }

  .atletiko-kup-banner__text {
    font-size: 15px !important;
  }

  .atletiko-kup-banner__button {
    width: 100% !important;
    justify-content: center !important;
    font-size: 16px !important;
  }
}


/* =========================================
   ATLETIKO KUP - FINAL TYPOGRAPHY + ALIGNMENT TWEAKS
========================================= */
.atletiko-kup-banner__bg {
  /* zadržavamo odzumiranu sliku, ali je poravnavamo udesno
     da desna ivica slike legne uz desnu ivicu slike iznad */
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.76) 20%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.10) 100%),
    url('../images/atletiko-kup-bg.jpg') !important;
  background-size: 100% 100%, contain !important;
  background-position: center center, right center !important;
  background-repeat: no-repeat, no-repeat !important;
}

.atletiko-kup-banner__subtitle {
  /* "Međunarodni dečji..." bez bold-a */
  font-weight: 500 !important;
  font-size: 22px !important;
}

.atletiko-kup-banner__text {
  /* "Gde se rađaju..." malo manji font */
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
}

.atletiko-kup-banner__button {
  /* ista veličina kao dugme "Pogledaj sve kategorije" */
  min-height: 42px !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  gap: 10px !important;
}

.atletiko-kup-banner__button span {
  font-size: 19px !important;
  line-height: 1 !important;
}

@media (max-width: 1100px) {
  .atletiko-kup-banner__bg {
    background-position: center center, right center !important;
  }

  .atletiko-kup-banner__subtitle {
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  .atletiko-kup-banner__text {
    font-size: 15px !important;
  }

  .atletiko-kup-banner__button {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 640px) {
  .atletiko-kup-banner__subtitle {
    font-size: 17px !important;
    font-weight: 500 !important;
  }

  .atletiko-kup-banner__text {
    font-size: 14px !important;
  }
}


/* =========================================
   HEADER / MENU UPDATE
   - centered menu
   - bigger logo + text
   - social icons on right
   - yellow underline effect like reference
========================================= */
.site-header {
  background: rgba(0,0,0,.90) !important;
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 92px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 16px !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand img {
  width: 82px !important;
  height: auto;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.brand__text strong {
  color: #ffffff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .4px;
}

.brand__text em {
  color: var(--yellow);
  font-style: normal;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .4px;
}

.main-nav {
  margin-left: 0 !important;
  justify-self: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .45px;
}

.nav-menu a {
  position: relative;
  padding: 34px 0 28px !important;
  display: block;
  transition: color .2s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-ancestor > a {
  color: var(--yellow) !important;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) scaleX(0);
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transition: transform .22s ease;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11px;
  transform: translateX(-50%) scaleX(0);
  width: 62px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,209,26,.50) 0%, rgba(255,209,26,.16) 55%, rgba(255,209,26,0) 100%);
  filter: blur(4px);
  transition: transform .22s ease;
  pointer-events: none;
}

.nav-menu a:hover::after,
.nav-menu a:hover::before,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-menu-item > a::before,
.nav-menu .current_page_item > a::after,
.nav-menu .current_page_item > a::before,
.nav-menu .current-menu-ancestor > a::after,
.nav-menu .current-menu-ancestor > a::before {
  transform: translateX(-50%) scaleX(1);
}

.header-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  border-radius: 50%;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255,209,26,.10);
  color: #ffe15f;
}

.menu-toggle {
  display: none;
  margin-left: 0 !important;
}

/* slightly tighter menu on smaller desktops */
@media (max-width: 1240px) {
  .brand img {
    width: 76px !important;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .brand__text em {
    font-size: 24px;
  }

  .nav-menu {
    gap: 18px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 84px !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 72px !important;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text em {
    font-size: 22px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 3;
    display: none;
    padding-bottom: 14px;
  }

  .main-nav.open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 10px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 0 14px !important;
  }

  .nav-menu a::after {
    left: 0;
    transform: scaleX(0);
    width: 34px;
    bottom: 6px;
  }

  .nav-menu a::before {
    display: none;
  }

  .nav-menu a:hover::after,
  .nav-menu .current-menu-item > a::after,
  .nav-menu .current_page_item > a::after,
  .nav-menu .current-menu-ancestor > a::after {
    transform: scaleX(1);
  }

  .header-right {
    gap: 10px;
  }

  .menu-toggle {
    display: block !important;
    width: 42px;
    height: 38px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 8px;
    background: #fff;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 78px !important;
  }

  .brand img {
    width: 62px !important;
  }

  .brand__text strong {
    font-size: 14px;
  }

  .brand__text em {
    font-size: 18px;
  }

  .header-social {
    gap: 6px;
  }

  .social-link {
    width: 30px;
    height: 30px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}


/* =========================================
   GALERIJA STRIP SECTION
========================================= */
.home-gallery--strip {
  padding: 28px 0 34px !important;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,209,26,.06), transparent 24%),
    linear-gradient(180deg, #060606 0%, #090909 100%) !important;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.home-gallery__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.home-gallery__top h2 {
  margin: 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: .2px;
  text-shadow: 0 3px 8px rgba(0,0,0,.65);
}

.home-gallery__actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.home-gallery__button {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #f2c300;
  background: rgba(0,0,0,.40);
  color: #f2c300;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.home-gallery__button:hover {
  background: #f2c300;
  color: #050505;
  transform: translateY(-2px);
}

.home-gallery__button span {
  font-size: 19px;
}

.home-gallery__arrows {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-gallery__arrows button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #f2c300;
  background: rgba(0,0,0,.40);
  color: #f2c300;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  cursor: default;
  padding: 0 0 3px;
}

.home-gallery__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.home-gallery__card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #101010;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-gallery__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.16) 100%),
    linear-gradient(135deg, rgba(242,195,0,.18), transparent 42%);
  pointer-events: none;
}

.home-gallery__card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  filter: saturate(.98) contrast(1.06);
  transition: transform .35s ease, filter .25s ease;
}

.home-gallery__card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,195,0,.9);
  box-shadow: 0 12px 26px rgba(0,0,0,.38), 0 0 18px rgba(242,195,0,.10);
}

.home-gallery__card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.08) brightness(1.04);
}

@media (max-width: 1100px) {
  .home-gallery__strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-gallery__card img {
    height: 135px;
  }
}

@media (max-width: 760px) {
  .home-gallery__top {
    grid-template-columns: 1fr;
  }
  .home-gallery__actions {
    justify-content: space-between;
  }
  .home-gallery__button {
    flex: 1;
    justify-content: center;
  }
  .home-gallery__strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-gallery__card img {
    height: 145px;
  }
}

@media (max-width: 520px) {
  .home-gallery__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .home-gallery__arrows {
    justify-content: flex-end;
  }
  .home-gallery__strip {
    grid-template-columns: 1fr;
  }
  .home-gallery__card img {
    height: 180px;
  }
}


/* =========================================
   FOOTER / CONTACT SECTION UPDATE
========================================= */
.site-footer {
  padding: 0 !important;
  background:
    radial-gradient(circle at 85% 0%, rgba(255,209,26,.05), transparent 22%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  border-top: 1px solid rgba(255,255,255,.10);
}

.site-footer__top {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-footer__top-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 154px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-footer__intro h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 46px;
  line-height: .95;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__intro p {
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.35;
}

.site-footer__contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.08);
}

.footer-contact-item {
  min-height: 82px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.footer-contact-item__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--yellow);
}

.footer-contact-item__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer-contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-item__text strong,
.footer-contact-item__text span {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
}

.footer-contact-item__text strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.footer-contact-item__text span {
  color: #d7d7d7;
  font-size: 16px;
  font-weight: 500;
}

.site-footer__button {
  min-height: 42px;
  padding: 0 16px;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  background: var(--yellow);
  border: 2px solid var(--yellow-2);
  color: #050505;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease;
}

.site-footer__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.site-footer__button span {
  font-size: 19px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__bottom-inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.site-footer__bottom-inner p {
  margin: 0;
  color: #cfcfcf;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.site-footer__bottom-inner p:nth-child(2) {
  justify-self: center;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
}

.footer-social .social-link {
  width: 28px;
  height: 28px;
  color: #fff;
}

.footer-social .social-link svg {
  width: 15px;
  height: 15px;
}

.footer-social .social-link:hover {
  color: var(--yellow);
  background: transparent;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1200px) {
  .site-footer__top-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    gap: 14px;
  }

  .footer-contact-item {
    border: 1px solid rgba(255,255,255,.08);
    min-height: 78px;
  }

  .site-footer__button {
    justify-self: start;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-footer__intro h2 {
    font-size: 34px;
  }

  .site-footer__intro p {
    font-size: 16px;
  }

  .site-footer__contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-item {
    padding: 14px 16px;
  }

  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-footer__bottom-inner p:nth-child(2),
  .footer-social {
    justify-self: start;
  }
}


/* =========================================
   FOOTER REFINEMENT - closer to reference
========================================= */
.site-footer__top-inner {
  grid-template-columns: 280px 1fr !important;
  gap: 18px !important;
  min-height: 128px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.site-footer__intro h2 {
  font-size: 34px !important;
  line-height: .95 !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
}

.site-footer__intro p {
  font-size: 13px !important;
  line-height: 1.4 !important;
  color: #e0e0e0 !important;
  font-weight: 400 !important;
}

.site-footer__contact-grid {
  grid-template-columns: 1.05fr .92fr 1.28fr .92fr auto !important;
  align-items: stretch !important;
}

.footer-contact-item {
  min-height: 74px !important;
  grid-template-columns: 30px 1fr !important;
  gap: 10px !important;
  padding: 0 14px !important;
}

.footer-contact-item__icon {
  width: 24px !important;
  height: 24px !important;
}

.footer-contact-item__icon svg {
  width: 22px !important;
  height: 22px !important;
}

.footer-contact-item__text {
  gap: 2px !important;
}

.footer-contact-item__text strong,
.footer-contact-item__text span {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.footer-contact-item__text strong {
  font-size: 13px !important;
  line-height: 1.1 !important;
}

.footer-contact-item__text span {
  font-size: 13px !important;
  line-height: 1.1 !important;
  color: #f2f2f2 !important;
}

.site-footer__button {
  align-self: center !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  margin-left: 12px !important;
  font-size: 14px !important;
}

.site-footer__button span {
  font-size: 18px !important;
}

.site-footer__bottom-inner {
  min-height: 46px !important;
}

.site-footer__bottom-inner p {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.footer-social .social-link {
  width: 24px !important;
  height: 24px !important;
}

.footer-social .social-link svg {
  width: 13px !important;
  height: 13px !important;
}

/* Medium screens */
@media (max-width: 1180px) {
  .site-footer__top-inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .site-footer__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    border-left: 0 !important;
  }

  .footer-contact-item {
    border: 1px solid rgba(255,255,255,.08) !important;
  }

  .site-footer__button {
    justify-self: start !important;
    margin-left: 0 !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .site-footer__intro h2 {
    font-size: 30px !important;
  }

  .site-footer__intro p {
    font-size: 13px !important;
  }

  .site-footer__contact-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-contact-item {
    min-height: auto !important;
    padding: 12px 14px !important;
  }

  .site-footer__bottom-inner {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}


/* =========================================
   FINAL SMALL TWEAKS
========================================= */

/* 1) Menu underline centered exactly under text */
.nav-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu a {
  display: inline-block !important;
  text-align: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-menu a::after {
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  transform: scaleX(0) !important;
}

.nav-menu a::before {
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  transform: scaleX(0) !important;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-ancestor > a::after {
  transform: scaleX(1) !important;
}

.nav-menu a:hover::before,
.nav-menu .current-menu-item > a::before,
.nav-menu .current_page_item > a::before,
.nav-menu .current-menu-ancestor > a::before {
  transform: scaleX(1) !important;
}

@media (max-width: 980px) {
  .nav-menu li {
    display: block;
  }

  .nav-menu a::after {
    left: 0 !important;
    right: auto !important;
    margin: 0 !important;
    transform: scaleX(0) !important;
  }

  .nav-menu a:hover::after,
  .nav-menu .current-menu-item > a::after,
  .nav-menu .current_page_item > a::after,
  .nav-menu .current-menu-ancestor > a::after {
    transform: scaleX(1) !important;
  }
}

/* 2) Training category cards – make faces more visible */
.training-card__image-wrap img {
  object-position: center 18% !important;
}

.training-categories__grid .training-card:nth-child(1) .training-card__image-wrap img { object-position: center 8% !important; }
.training-categories__grid .training-card:nth-child(2) .training-card__image-wrap img { object-position: center 12% !important; }
.training-categories__grid .training-card:nth-child(3) .training-card__image-wrap img { object-position: center 10% !important; }
.training-categories__grid .training-card:nth-child(4) .training-card__image-wrap img { object-position: center 12% !important; }
.training-categories__grid .training-card:nth-child(5) .training-card__image-wrap img { object-position: center 16% !important; }
.training-categories__grid .training-card:nth-child(6) .training-card__image-wrap img { object-position: center 14% !important; }

/* 3) Why Atletiko – keep last item readable and preserve background message */
.why-atletiko--image-bg {
  min-height: 300px !important;
}

.why-atletiko__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.93) 34%, rgba(0,0,0,0.58) 52%, rgba(0,0,0,0.10) 72%, rgba(0,0,0,0.00) 100%),
    url('../images/why-atletiko-bg.jpg') !important;
  background-size: cover !important;
  background-position: right center !important;
}

.why-atletiko__items--copyable {
  width: min(610px, 54%) !important;
  gap: 16px !important;
}

.why-atletiko__items--copyable article {
  grid-template-columns: 30px 1fr !important;
  gap: 10px !important;
}

.why-atletiko__items--copyable img {
  width: 26px !important;
  height: 26px !important;
}

.why-atletiko__items--copyable h3 {
  font-size: 16px !important;
}

.why-atletiko__items--copyable p {
  font-size: 10.5px !important;
  line-height: 1.4 !important;
}

/* 4) Footer bottom social icons should be yellow like in header */
.footer-social .social-link {
  color: var(--yellow) !important;
}

.footer-social .social-link:hover {
  color: #ffe15f !important;
  background: rgba(255,209,26,.08) !important;
}

/* responsive safety for why section */
@media (max-width: 1200px) {
  .why-atletiko__items--copyable {
    width: min(620px, 58%) !important;
  }
}

@media (max-width: 1100px) {
  .why-atletiko__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.90) 50%, rgba(0,0,0,0.24) 100%),
      url('../images/why-atletiko-bg.jpg') !important;
  }

  .why-atletiko__items--copyable {
    width: min(760px, 70%) !important;
  }
}


/* =========================================
   ATLETIKO KUP MENU HIGHLIGHT
========================================= */
.nav-menu a[href*="atletiko-kup"] {
  color: var(--yellow) !important;
  text-shadow:
    0 0 8px rgba(242,195,0,.32),
    0 0 18px rgba(242,195,0,.16);
}

/* zadrži normalno ponašanje na hover kao i kod ostalih stavki */
.nav-menu a[href*="atletiko-kup"]:hover {
  color: #ffe15f !important;
}

/* malo jači glow na samom linku bez stalne linije ispod */
.nav-menu a[href*="atletiko-kup"]::before {
  opacity: .75;
}


/* =========================================
   GENERACIJE - TRAINING CATEGORIES UPDATE
========================================= */
.training-card__content h3 {
  font-size: clamp(24px, 1.8vw, 30px) !important;
  line-height: 0.96 !important;
  max-width: 100% !important;
  text-wrap: balance;
}

.training-card__content p:empty,
.training-card__content p {
  display: none !important;
}

.training-card__image-wrap img {
  object-position: center center !important;
}

/* individual focal tweaks so faces / action stay visible */
.training-categories__grid .training-card:nth-child(1) .training-card__image-wrap img { object-position: center 42% !important; }
.training-categories__grid .training-card:nth-child(2) .training-card__image-wrap img { object-position: 62% 42% !important; }
.training-categories__grid .training-card:nth-child(3) .training-card__image-wrap img { object-position: 56% 34% !important; }
.training-categories__grid .training-card:nth-child(4) .training-card__image-wrap img { object-position: center 40% !important; }
.training-categories__grid .training-card:nth-child(5) .training-card__image-wrap img { object-position: center 38% !important; }
.training-categories__grid .training-card:nth-child(6) .training-card__image-wrap img { object-position: center 42% !important; }

@media (max-width: 1100px) {
  .training-card__content h3 {
    font-size: 26px !important;
  }
}

@media (max-width: 800px) {
  .training-card__content h3 {
    font-size: 24px !important;
  }
}


/* =========================================
   SEO + PERFORMANCE + MOBILE FINAL PASS
========================================= */
.seo-h1 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.social-link--disabled {
  opacity: .55;
  cursor: default;
  pointer-events: none;
}

/* Prefer WebP backgrounds where supported */
.hero-main__bg {
  background-image: url('../images/hero-main.webp'), url('../images/hero-main.png') !important;
}

.why-atletiko__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.93) 34%, rgba(0,0,0,0.58) 52%, rgba(0,0,0,0.10) 72%, rgba(0,0,0,0.00) 100%),
    url('../images/why-atletiko-bg.webp'),
    url('../images/why-atletiko-bg.jpg') !important;
}

.atletiko-kup-banner__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.76) 20%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.10) 100%),
    url('../images/atletiko-kup-bg.webp'),
    url('../images/atletiko-kup-bg.jpg') !important;
}

/* Mobile polish */
@media (max-width: 980px) {
  .hero-main,
  .hero-main__content {
    min-height: 620px !important;
  }

  .hero-main__bg {
    background-size: contain !important;
    background-position: center top !important;
    transform: none !important;
  }

  .hero-main__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.55) 100%) !important;
  }

  .hero-main__content--buttons {
    align-items: flex-end !important;
    padding-bottom: 34px !important;
  }

  .hero-buttons--only {
    width: 100%;
    justify-content: center;
  }

  .stats-real-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .training-categories__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .training-card {
    min-height: 360px !important;
  }

  .why-atletiko__items--copyable {
    width: 100% !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .atletiko-kup-banner__content {
    max-width: 360px !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px)) !important;
  }

  .hero-main,
  .hero-main__content {
    min-height: 500px !important;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-real-grid,
  .training-categories__grid,
  .why-atletiko__items--copyable {
    grid-template-columns: 1fr !important;
  }

  .stat-real {
    min-height: 82px !important;
  }

  .training-card {
    min-height: 430px !important;
  }

  .training-categories__head {
    align-items: stretch !important;
  }

  .training-categories__all {
    width: 100%;
    justify-content: center;
  }

  .why-atletiko--image-bg {
    min-height: auto !important;
  }

  .atletiko-kup-banner,
  .atletiko-kup-banner__inner {
    min-height: 360px !important;
  }

  .home-gallery__actions {
    gap: 10px;
  }

  .site-footer__top-inner {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================
   ATLETIKO PRELOADER - LOGO HEARTBEAT
========================================= */
.atletiko-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(251,197,1,.08) 0%, rgba(0,0,0,0) 38%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}

.atletiko-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.atletiko-preloader__inner {
  position: relative;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
}

.atletiko-preloader__inner img {
  width: 118px;
  height: auto;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 14px rgba(251,197,1,.32))
    drop-shadow(0 12px 20px rgba(0,0,0,.65));
  animation: atletiko-heartbeat 1.05s ease-in-out 0s 2;
  transform-origin: center;
}

.atletiko-preloader__pulse {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(251,197,1,.72);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(251,197,1,.22),
    inset 0 0 22px rgba(251,197,1,.10);
  animation: atletiko-pulse-ring 1.05s ease-in-out 0s 2;
}

.atletiko-preloader__pulse::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(251,197,1,.22);
  border-radius: 50%;
  animation: atletiko-pulse-ring-outer 1.05s ease-in-out 0s 2;
}

@keyframes atletiko-heartbeat {
  0%   { transform: scale(1); }
  16%  { transform: scale(1.14); }
  28%  { transform: scale(.96); }
  44%  { transform: scale(1.09); }
  62%  { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes atletiko-pulse-ring {
  0%   { transform: scale(.88); opacity: .90; }
  45%  { transform: scale(1.16); opacity: .28; }
  100% { transform: scale(1.28); opacity: 0; }
}

@keyframes atletiko-pulse-ring-outer {
  0%   { transform: scale(.82); opacity: .45; }
  60%  { transform: scale(1.22); opacity: .12; }
  100% { transform: scale(1.42); opacity: 0; }
}

@media (max-width: 640px) {
  .atletiko-preloader__inner {
    width: 140px;
    height: 140px;
  }

  .atletiko-preloader__inner img {
    width: 96px;
  }
}


/* =========================================
   PRELOADER BIGGER LOGO UPDATE
========================================= */
.atletiko-preloader__inner {
  width: 250px !important;
  height: 250px !important;
}

.atletiko-preloader__inner img {
  width: 178px !important;
}

.atletiko-preloader__pulse {
  inset: 24px !important;
}

@media (max-width: 640px) {
  .atletiko-preloader__inner {
    width: 210px !important;
    height: 210px !important;
  }

  .atletiko-preloader__inner img {
    width: 150px !important;
  }

  .atletiko-preloader__pulse {
    inset: 22px !important;
  }
}


/* =========================================
   ISTORIJAT KLUBA PAGE
========================================= */
.history-page {
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.history-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.history-section-head--center {
  justify-content: center;
  text-align: center;
}
.history-section-head h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 800;
}
.history-section-head span {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255,209,26,.22);
  flex: 0 0 auto;
}

.history-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.history-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.25) 100%),
    url('../images/categories/pripremni.webp'),
    url('../images/categories/pripremni.png');
  background-size: cover;
  background-position: center center;
  filter: grayscale(.22) blur(0px);
  transform: scale(1.03);
}
.history-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('../images/logo.webp') no-repeat right 5% center / 220px auto;
  opacity: .16;
}
.history-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.45) 100%),
    radial-gradient(circle at 14% 50%, rgba(255,209,26,.14), transparent 24%);
}
.history-hero__inner {
  min-height: 360px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.history-hero__copy {
  max-width: 560px;
  padding: 60px 0;
}
.history-hero__copy h1 {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 8vw, 98px);
  line-height: .9;
  letter-spacing: .4px;
}
.history-hero__copy p {
  margin-top: 14px;
  font-size: clamp(20px, 2vw, 28px);
  color: #ececec;
}
.history-hero__line {
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 20px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255,209,26,.18);
}

.history-story {
  padding: 40px 0 10px;
}
.history-story__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}
.history-story__title h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .94;
  font-weight: 800;
}
.history-story__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--yellow);
  margin-top: 16px;
}
.history-story__text p {
  font-size: 21px;
  line-height: 1.45;
  color: #f0f0f0;
  max-width: 900px;
}

.history-timeline {
  padding: 22px 0 34px;
}
.history-timeline .container {
  position: relative;
}
.history-timeline__line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 126px;
  height: 2px;
  background: rgba(255,255,255,.16);
}
.history-timeline__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}
.history-milestone {
  text-align: center;
  padding-top: 22px;
}
.history-milestone__dot {
  width: 16px;
  height: 16px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,209,26,.08), 0 0 16px rgba(255,209,26,.32);
}
.history-milestone__year {
  font-size: 48px;
  line-height: .95;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
}
.history-milestone__icon {
  width: 64px;
  height: 64px;
  margin: 16px auto 14px;
  display: grid;
  place-items: center;
  color: var(--yellow);
}
.history-milestone__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.history-milestone__icon--logo img {
  width: 56px;
  height: 56px;
}
.history-milestone__icon--svg svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}
.history-milestone h3 {
  font-size: 27px;
  line-height: .95;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}
.history-milestone p {
  font-size: 16px;
  line-height: 1.45;
  color: #dddddd;
  max-width: 220px;
  margin: 0 auto;
}

.history-highlights {
  padding: 22px 0 56px;
}
.history-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.history-card {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.history-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.history-card__media picture,
.history-card__media img {
  width: 100%;
  height: 100%;
}
.history-card__media img {
  object-fit: cover;
  display: block;
}
.history-card__content {
  padding: 18px 20px 22px;
}
.history-card__content h3 {
  font-size: 28px;
  line-height: .95;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 10px;
}
.history-card__content p {
  color: #ececec;
  font-size: 18px;
  line-height: 1.4;
}

.history-card--identity {
  position: relative;
  min-height: 100%;
}
.history-card__identity-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,209,26,.24) 0%, rgba(255,209,26,.06) 26%, rgba(0,0,0,.02) 26%, rgba(0,0,0,0) 100%),
    linear-gradient(120deg, transparent 0 72%, rgba(255,209,26,.92) 72% 80%, transparent 80% 84%, rgba(255,209,26,.92) 84% 92%, transparent 92%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}
.history-card__identity-logo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 240px;
  padding: 28px 28px 0;
}
.history-card__identity-logo img {
  width: 180px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.history-card--identity .history-card__content {
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .history-story__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .history-timeline__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .history-timeline__line {
    display: none;
  }

  .history-highlights__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .history-hero,
  .history-hero__inner {
    min-height: 300px;
  }
  .history-hero__bg::after {
    background-size: 140px auto;
    opacity: .12;
  }
  .history-story__text p {
    font-size: 18px;
  }
  .history-timeline__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .history-milestone {
    padding: 16px 0 4px;
  }
  .history-milestone p {
    max-width: 100%;
  }
}


/* =========================================
   ISTORIJAT HERO BACKGROUND + TYPO UPDATE
========================================= */
.history-hero__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.20) 42%, rgba(0,0,0,.18) 100%),
    url('../images/history-hero-bg.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: none !important;
  transform: none !important;
}

.history-hero__bg::after {
  display: none !important;
}

.history-hero__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.36) 100%),
    linear-gradient(90deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.14) 36%, rgba(0,0,0,0) 60%) !important;
}

.history-hero__copy {
  max-width: 1000px !important;
}

.history-hero__copy h1 {
  font-family: 'Barlow Condensed', Arial, sans-serif !important;
  font-size: clamp(44px, 5.7vw, 84px) !important;
  line-height: .92 !important;
  font-weight: 700 !important;
  letter-spacing: .4px !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}

.history-hero__copy p {
  margin-top: 10px !important;
  font-size: clamp(14px, 1.6vw, 21px) !important;
  line-height: 1.25 !important;
  color: #f0f0f0 !important;
}

.history-hero__line {
  margin-top: 14px !important;
  width: 54px !important;
  height: 4px !important;
}

@media (max-width: 900px) {
  .history-hero__copy h1 {
    white-space: normal !important;
    font-size: clamp(38px, 8vw, 60px) !important;
  }

  .history-hero__copy p {
    font-size: 15px !important;
  }
}


/* =========================================
   ISTORIJAT TYPO + TIMELINE REFINEMENT
========================================= */
.history-story__title h2 {
  font-size: clamp(28px, 3.5vw, 46px) !important;
  line-height: .98 !important;
  font-weight: 700 !important;
}

.history-section-head h2 {
  font-size: clamp(28px, 3.3vw, 44px) !important;
  line-height: .98 !important;
  font-weight: 700 !important;
}

.history-story__text p {
  font-size: 19px !important;
}

.history-timeline {
  padding-top: 18px !important;
}

.history-timeline .container {
  position: relative !important;
}

.history-timeline__line {
  display: none !important;
}

.history-timeline__grid {
  position: relative !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 22px !important;
  padding-top: 42px !important;
  align-items: start !important;
}

.history-timeline__grid::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 7px;
  height: 2px;
  background: rgba(255,255,255,.14);
}

.history-milestone {
  position: relative;
  padding-top: 0 !important;
}

.history-milestone__dot {
  width: 14px !important;
  height: 14px !important;
  margin: 0 auto 14px !important;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255,209,26,.08), 0 0 12px rgba(255,209,26,.22) !important;
}

.history-milestone__year {
  font-family: 'Barlow Condensed', Arial, sans-serif !important;
  font-size: 38px !important;
  line-height: .95 !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
}

.history-milestone__icon {
  width: 60px !important;
  height: 60px !important;
  margin: 12px auto 12px !important;
}

.history-milestone__icon img {
  width: 46px !important;
  height: 46px !important;
}

.history-milestone__icon--logo img {
  width: 50px !important;
  height: 50px !important;
}

.history-milestone__icon--svg svg {
  width: 44px !important;
  height: 44px !important;
}

.history-milestone h3 {
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .1px !important;
  margin-bottom: 8px !important;
}

.history-milestone p {
  font-size: 15px !important;
  line-height: 1.4 !important;
}

.history-highlights .history-section-head h2 {
  font-weight: 700 !important;
}

@media (max-width: 1100px) {
  .history-timeline__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding-top: 0 !important;
  }

  .history-timeline__grid::before {
    display: none !important;
  }

  .history-milestone__dot {
    margin-top: 6px !important;
  }
}

@media (max-width: 700px) {
  .history-story__title h2,
  .history-section-head h2 {
    font-size: 30px !important;
  }

  .history-milestone__year {
    font-size: 32px !important;
  }

  .history-milestone h3 {
    font-size: 20px !important;
  }
}


/* =========================================
   ISTORIJAT FINAL USER FIXES
========================================= */
.history-story__inner {
  grid-template-columns: minmax(440px, 520px) minmax(0, 760px) !important;
  gap: 36px !important;
  align-items: center !important;
}

.history-story__title {
  align-self: center !important;
}

.history-story__title h2 {
  white-space: nowrap !important;
  font-size: clamp(34px, 3.9vw, 52px) !important;
  font-weight: 700 !important;
}

.history-story__text {
  max-width: 760px !important;
  justify-self: center !important;
  align-self: center !important;
}

.history-story__text p {
  max-width: 760px !important;
  margin: 0 auto !important;
  font-size: 19px !important;
  line-height: 1.5 !important;
}

.history-timeline__grid {
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  padding-top: 0 !important;
  margin-top: 8px !important;
}

.history-timeline__grid::before {
  display: block !important;
  top: 7px !important;
  left: 22px !important;
  right: 22px !important;
  height: 2px !important;
  background: rgba(255,255,255,.16) !important;
  z-index: 1 !important;
}

.history-milestone {
  position: relative !important;
  z-index: 2 !important;
}

.history-milestone__dot {
  width: 14px !important;
  height: 14px !important;
  margin: 0 auto 16px !important;
  position: relative !important;
  z-index: 3 !important;
}

.history-milestone__year {
  font-size: 34px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.history-milestone__icon {
  margin: 12px auto 14px !important;
}

.history-milestone__icon--svg svg {
  width: 42px !important;
  height: 42px !important;
}

.history-milestone__icon--crest svg {
  width: 44px !important;
  height: 44px !important;
}

.history-milestone h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
}

.history-milestone p {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.history-highlights .history-section-head h2,
.history-section-head h2 {
  font-weight: 700 !important;
}

@media (max-width: 1200px) {
  .history-story__inner {
    grid-template-columns: minmax(360px, 420px) minmax(0, 1fr) !important;
  }

  .history-story__title h2 {
    white-space: normal !important;
  }
}

@media (max-width: 1100px) {
  .history-timeline__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding-top: 0 !important;
  }
  .history-timeline__grid::before {
    display: none !important;
  }
  .history-story__inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .history-story__text {
    justify-self: start !important;
    max-width: 100% !important;
  }
}

@media (max-width: 700px) {
  .history-story__title h2 {
    white-space: normal !important;
    font-size: 30px !important;
  }
  .history-story__text p {
    font-size: 17px !important;
  }
  .history-milestone__year {
    font-size: 30px !important;
  }
  .history-milestone h3 {
    font-size: 18px !important;
  }
}


/* =========================================
   ISTORIJAT - PRAVA RASPODELA IKONICA
========================================= */
.history-milestone__icon--image picture,
.history-milestone__icon--image img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
  display: block;
}


/* Fix visible timeline PNG icons */
.history-milestone__icon--image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.history-milestone__icon--image img {
  display: block !important;
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
}


/* =========================================
   ISTORIJAT - HIGHLIGHTS CARD IMAGE + TYPO FIX
========================================= */
.history-card__content h3 {
  font-size: 24px !important;
  line-height: 1.02 !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
}

.history-card__content p {
  font-size: 17px !important;
  line-height: 1.38 !important;
}

.history-card__media {
  aspect-ratio: 16 / 9 !important;
}

.history-card__media img {
  object-fit: cover !important;
  object-position: center center !important;
}


/* =========================================
   ISTORIJAT - FINAL FIX ZA VIDLJIVOST SLIKA U KARTICAMA
========================================= */
.history-card__media {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 210px !important;
  background: #111 !important;
  overflow: hidden !important;
}

.history-card__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 210px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.history-card:nth-child(2) .history-card__media img {
  object-position: center 42% !important;
}

.history-card:nth-child(3) .history-card__media img {
  object-position: center center !important;
}

.history-card__content h3 {
  font-weight: 700 !important;
}


/* =========================================
   KONTAKT STRANA
========================================= */
.page-main--contact {
  background: #050505;
}

.contact-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-hero__bg,
.contact-hero__overlay {
  position: absolute;
  inset: 0;
}

.contact-hero__bg {
  background: url('../images/contact/contact-hero.jpg') center center / cover no-repeat;
}

.contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.74) 30%, rgba(0,0,0,0.24) 60%, rgba(0,0,0,0.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.28) 100%);
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: flex;
  align-items: center;
}

.contact-hero__content {
  max-width: 470px;
  padding: 30px 0;
}

.contact-hero__accent {
  display: block;
  width: 52px;
  height: 6px;
  background: #fbc501;
  margin-top: 22px;
  box-shadow: 0 0 26px rgba(251,197,1,0.28);
}

.contact-hero h1 {
  margin: 0 0 18px;
  font-family: 'Anton', sans-serif;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-hero p {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
}

.contact-section {
  padding: 34px 0 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  background: linear-gradient(180deg, rgba(11,11,11,0.9), rgba(8,8,8,0.94));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 34px 34px 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.contact-card__left h2,
.contact-map-section h2 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 58px;
  line-height: 0.95;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-card__line {
  display: block;
  width: 54px;
  height: 4px;
  background: #fbc501;
  margin: 18px 0 20px;
}

.contact-card__lead {
  margin: 0 0 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 15px 18px;
  background: rgba(255,255,255,0.02);
}

.contact-info-item__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 34px;
  height: 34px;
  fill: #fbc501;
}

.contact-info-item__text strong {
  display: block;
  margin-bottom: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #fbc501;
}

.contact-info-item__text span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.015);
  padding: 20px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 168px;
}

.contact-form__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.9) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 26px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.contact-form__field select {
  color: rgba(255,255,255,0.78);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(251,197,1,0.58);
  box-shadow: 0 0 0 3px rgba(251,197,1,0.10);
  background: rgba(255,255,255,0.03);
}

.contact-form__button {
  width: 100%;
  min-height: 76px;
  border: none;
  border-radius: 10px;
  background: #fbc501;
  color: #0b0b0b;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.18);
}

.contact-form__button span {
  font-size: 30px;
  line-height: 1;
}

.contact-form__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 10px 24px rgba(251,197,1,0.12), inset 0 -2px 0 rgba(0,0,0,0.18);
}

.contact-map-section {
  padding: 4px 0 48px;
}

.contact-map-section h2 {
  margin-bottom: 22px;
}

.contact-map-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  background: #111;
}

.contact-map-card__image,
.contact-map-card picture,
.contact-map-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1199px) {
  .contact-card {
    grid-template-columns: 320px 1fr;
    gap: 26px;
    padding: 28px;
  }

  .contact-card__left h2,
  .contact-map-section h2 {
    font-size: 52px;
  }

  .contact-hero h1 {
    font-size: 72px;
  }
}

@media (max-width: 991px) {
  .contact-hero,
  .contact-hero__inner {
    min-height: 420px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card__left h2,
  .contact-map-section h2 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    min-height: 360px;
  }

  .contact-hero__inner {
    min-height: 360px;
    align-items: flex-end;
    padding-bottom: 28px;
  }

  .contact-hero__content {
    max-width: 100%;
  }

  .contact-hero h1 {
    font-size: 54px;
  }

  .contact-hero p {
    font-size: 20px;
  }

  .contact-section {
    padding-top: 22px;
  }

  .contact-card {
    border-radius: 18px;
    padding: 20px;
    gap: 22px;
  }

  .contact-card__left h2,
  .contact-map-section h2 {
    font-size: 38px;
  }

  .contact-card__lead {
    font-size: 18px;
  }

  .contact-info-item {
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding: 13px 14px;
  }

  .contact-info-item__icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-item__icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-info-item__text strong {
    font-size: 24px;
  }

  .contact-info-item__text span {
    font-size: 17px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    padding: 17px 18px;
    font-size: 17px;
  }

  .contact-form__button {
    min-height: 62px;
    font-size: 28px;
  }
}


/* =========================================
   KONTAKT - DORADA PO REFERENCI
========================================= */
.contact-hero {
  min-height: 395px !important;
}

.contact-hero__bg {
  background-image: url('../images/contact/contact-hero.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
}

.contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.16) 42%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 100%) !important;
}

.contact-hero__inner {
  min-height: 395px !important;
  align-items: center !important;
}

.contact-hero__content {
  max-width: 520px !important;
}

.contact-hero__accent {
  width: 46px !important;
  height: 4px !important;
  margin-bottom: 22px !important;
}

.contact-hero h1 {
  font-size: clamp(54px, 5.2vw, 78px) !important;
  line-height: .95 !important;
  font-weight: 400 !important;
  letter-spacing: .5px !important;
  margin-bottom: 18px !important;
}

.contact-hero p {
  font-size: clamp(20px, 1.7vw, 25px) !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

.contact-section {
  padding: 36px 0 28px !important;
}

.contact-card {
  grid-template-columns: 390px 1fr !important;
  gap: 46px !important;
  padding: 40px 42px 34px !important;
  border-radius: 18px !important;
}

.contact-card__left h2 {
  font-size: clamp(34px, 3vw, 44px) !important;
  line-height: .95 !important;
  font-weight: 400 !important;
  letter-spacing: .4px !important;
}

.contact-card__line {
  width: 34px !important;
  height: 3px !important;
  margin: 15px 0 18px !important;
}

.contact-card__lead {
  max-width: 360px !important;
  font-size: 20px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

.contact-info-list {
  gap: 12px !important;
}

.contact-info-item {
  grid-template-columns: 58px 1fr !important;
  gap: 12px !important;
  min-height: 86px !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
}

.contact-info-item__icon {
  width: 42px !important;
  height: 42px !important;
}

.contact-info-item__icon svg {
  width: 32px !important;
  height: 32px !important;
}

.contact-info-item__text strong {
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.contact-info-item__text span {
  font-size: 19px !important;
  line-height: 1.28 !important;
  font-weight: 400 !important;
}

.contact-form {
  gap: 16px !important;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-size: 20px !important;
  font-weight: 400 !important;
  padding: 19px 22px !important;
  border-radius: 9px !important;
}

.contact-form__field textarea {
  min-height: 165px !important;
}

.contact-form__button {
  min-height: 66px !important;
  border-radius: 8px !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
}

.contact-form__button span {
  font-size: 27px !important;
}

.contact-map-section {
  padding: 2px 0 54px !important;
}

.contact-map-section h2 {
  font-size: clamp(34px, 3vw, 44px) !important;
  line-height: .95 !important;
  font-weight: 400 !important;
  letter-spacing: .4px !important;
  margin-bottom: 26px !important;
}

.contact-map-card--interactive {
  height: 420px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: #111 !important;
}

.contact-map-card--interactive iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  filter: grayscale(1) invert(.92) contrast(.92) brightness(.78);
}

@media (max-width: 1100px) {
  .contact-card {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 767px) {
  .contact-hero,
  .contact-hero__inner {
    min-height: 360px !important;
  }

  .contact-hero h1 {
    font-size: 50px !important;
  }

  .contact-hero p {
    font-size: 19px !important;
  }

  .contact-card {
    padding: 22px !important;
  }

  .contact-info-item__text strong {
    font-size: 18px !important;
  }

  .contact-info-item__text span {
    font-size: 17px !important;
  }

  .contact-form__row {
    grid-template-columns: 1fr !important;
  }

  .contact-map-card--interactive {
    height: 360px !important;
  }
}


/* =========================================
   KONTAKT - SITNIJE SMANJEN TEKST + MAPA U BOJI
========================================= */
.contact-hero h1 {
  font-size: clamp(50px, 4.9vw, 72px) !important;
  font-weight: 400 !important;
  letter-spacing: .35px !important;
}

.contact-hero p {
  font-size: clamp(18px, 1.55vw, 22px) !important;
  line-height: 1.34 !important;
  font-weight: 400 !important;
}

.contact-card__left h2,
.contact-map-section h2 {
  font-size: clamp(31px, 2.7vw, 39px) !important;
  font-weight: 400 !important;
  letter-spacing: .25px !important;
}

.contact-card__lead {
  font-size: 18px !important;
  line-height: 1.42 !important;
  font-weight: 400 !important;
}

.contact-info-item__text strong {
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: .1px !important;
}

.contact-info-item__text span {
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-size: 18px !important;
  font-weight: 400 !important;
}

.contact-form__button {
  min-height: 62px !important;
  font-size: 23px !important;
  font-weight: 700 !important;
}

.contact-form__button span {
  font-size: 25px !important;
}

.contact-map-card--interactive iframe {
  filter: none !important;
}

@media (max-width: 767px) {
  .contact-hero h1 {
    font-size: 46px !important;
  }

  .contact-hero p {
    font-size: 17px !important;
  }

  .contact-card__left h2,
  .contact-map-section h2 {
    font-size: 30px !important;
  }

  .contact-card__lead,
  .contact-info-item__text span,
  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    font-size: 16px !important;
  }

  .contact-info-item__text strong {
    font-size: 17px !important;
  }

  .contact-form__button {
    font-size: 21px !important;
  }
}


/* =========================================
   KONTAKT - VELIKI TEKSTOVI REGULAR
========================================= */
.contact-hero h1,
.contact-card__left h2,
.contact-map-section h2,
.contact-info-item__text strong,
.contact-form__button {
  font-weight: 400 !important;
}

.contact-hero h1,
.contact-card__left h2,
.contact-map-section h2,
.contact-info-item__text strong {
  text-shadow: none !important;
  letter-spacing: 0.1px !important;
}

.contact-form__button {
  letter-spacing: 0.1px !important;
}


/* Kontakt hero - bez razvlačenja pozadine */
.contact-hero {
  min-height: 405px !important;
}
.contact-hero__inner {
  min-height: 405px !important;
}
.contact-hero__bg {
  background-image: url('../images/contact/contact-hero.jpg') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.contact-hero__overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.24) 42%, rgba(0,0,0,.18) 100%), linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 100%) !important;
}
@media (max-width: 767px) {
  .contact-hero,
  .contact-hero__inner { min-height: 320px !important; }
  .contact-hero__bg { background-position: 58% center !important; }
}


/* Kontakt hero - prikaži celu sliku bez sečenja */
.contact-hero {
  min-height: 0 !important;
  aspect-ratio: 1745 / 405 !important;
  background: #090909 !important;
}

.contact-hero__inner {
  min-height: 100% !important;
  height: 100% !important;
}

.contact-hero__bg {
  background-image: url('../images/contact/contact-hero.jpg') !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #090909 !important;
}

.contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.22) 32%, rgba(0,0,0,.10) 62%, rgba(0,0,0,.08) 100%) !important;
}

.contact-hero__content {
  max-width: 430px !important;
  padding: 18px 0 !important;
}

@media (max-width: 767px) {
  .contact-hero {
    aspect-ratio: auto !important;
    min-height: 320px !important;
  }

  .contact-hero__inner {
    min-height: 320px !important;
    height: auto !important;
  }

  .contact-hero__bg {
    background-size: cover !important;
    background-position: 58% center !important;
  }
}


/* Kontakt hero - ista širina kao donji element i ceo logo vidljiv */
.page-main--contact .contact-hero {
  width: min(var(--max), calc(100% - 40px)) !important;
  margin: 0 auto !important;
  min-height: 0 !important;
  aspect-ratio: 1745 / 405 !important;
  background: #090909 !important;
  border-bottom: 0 !important;
}

.page-main--contact .contact-hero__bg,
.page-main--contact .contact-hero__overlay {
  inset: 0 !important;
}

.page-main--contact .contact-hero__bg {
  background-image: url('../images/contact/contact-hero.jpg') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-color: #090909 !important;
}

.page-main--contact .contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.64) 0%, rgba(0,0,0,.42) 21%, rgba(0,0,0,.18) 46%, rgba(0,0,0,.10) 100%) !important,
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.20) 100%) !important;
}

.page-main--contact .contact-hero__inner.container {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  display: flex !important;
  align-items: center !important;
}

.page-main--contact .contact-hero__content {
  max-width: 380px !important;
  padding: 0 !important;
}

@media (max-width: 767px) {
  .page-main--contact .contact-hero {
    width: calc(100% - 24px) !important;
    aspect-ratio: auto !important;
    min-height: 320px !important;
  }

  .page-main--contact .contact-hero__bg {
    background-size: cover !important;
    background-position: 58% center !important;
  }

  .page-main--contact .contact-hero__inner.container {
    min-height: 320px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}


/* =========================================
   HERO RESPONSIVE OPTIMIZATION - ISTORIJAT + KONTAKT
========================================= */

/* Istorijat kluba hero - responsive images */
.history-hero__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.20) 42%, rgba(0,0,0,.18) 100%),
    image-set(
      url('../images/history-hero-bg-desktop.webp') type('image/webp'),
      url('../images/history-hero-bg-desktop.jpg') type('image/jpeg')
    ) !important;
  background-size: cover !important;
  background-position: center center !important;
}

@media (max-width: 1200px) {
  .history-hero__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.20) 46%, rgba(0,0,0,.18) 100%),
      image-set(
        url('../images/history-hero-bg-tablet.webp') type('image/webp'),
        url('../images/history-hero-bg-tablet.jpg') type('image/jpeg')
      ) !important;
    background-position: center center !important;
  }
}

@media (max-width: 700px) {
  .history-hero,
  .history-hero__inner {
    min-height: 300px !important;
  }

  .history-hero__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.42) 54%, rgba(0,0,0,.22) 100%),
      image-set(
        url('../images/history-hero-bg-mobile.webp') type('image/webp'),
        url('../images/history-hero-bg-mobile.jpg') type('image/jpeg')
      ) !important;
    background-size: cover !important;
    background-position: 52% center !important;
  }

  .history-hero__copy h1 {
    font-size: clamp(36px, 10vw, 52px) !important;
    white-space: normal !important;
  }

  .history-hero__copy p {
    font-size: 15px !important;
  }
}

/* Kontakt hero - same visual width as section below, no stretching, full crest visible */
.page-main--contact .contact-hero {
  width: min(var(--max), calc(100% - 40px)) !important;
  margin-inline: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1745 / 405 !important;
  background: #090909 !important;
  overflow: hidden !important;
}

.page-main--contact .contact-hero__bg {
  background-image: image-set(
    url('../images/contact/contact-hero-desktop.webp') type('image/webp'),
    url('../images/contact/contact-hero-desktop.jpg') type('image/jpeg')
  ) !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.page-main--contact .contact-hero__inner.container {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  margin: 0 !important;
}

.page-main--contact .contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.32) 26%, rgba(0,0,0,.14) 54%, rgba(0,0,0,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.16) 100%) !important;
}

@media (max-width: 1200px) {
  .page-main--contact .contact-hero {
    aspect-ratio: 1200 / 300 !important;
  }

  .page-main--contact .contact-hero__bg {
    background-image: image-set(
      url('../images/contact/contact-hero-tablet.webp') type('image/webp'),
      url('../images/contact/contact-hero-tablet.jpg') type('image/jpeg')
    ) !important;
    background-size: 100% 100% !important;
  }

  .page-main--contact .contact-hero__inner.container {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}

@media (max-width: 767px) {
  .page-main--contact .contact-hero {
    width: calc(100% - 24px) !important;
    min-height: 320px !important;
    aspect-ratio: auto !important;
  }

  .page-main--contact .contact-hero__bg {
    background-image: image-set(
      url('../images/contact/contact-hero-mobile.webp') type('image/webp'),
      url('../images/contact/contact-hero-mobile.jpg') type('image/jpeg')
    ) !important;
    background-size: cover !important;
    background-position: 58% center !important;
  }

  .page-main--contact .contact-hero__inner.container {
    min-height: 320px !important;
    height: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .page-main--contact .contact-hero__overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 58%, rgba(0,0,0,.18) 100%),
      linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.28) 100%) !important;
  }
}

/* Atletiko kup banner duplicate safety: keep only one visual background */
.atletiko-kup-banner__bg picture,
.atletiko-kup-banner__bg img,
.atletiko-kup-banner > picture,
.atletiko-kup-banner > img {
  display: none !important;
}

.atletiko-kup-banner__bg {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}


/* =========================================
   HERO - ONLY ONE BUTTON
========================================= */
.hero-buttons--only {
  justify-content: center !important;
}

.hero-buttons--only .hero-btn {
  min-width: 210px;
  justify-content: center;
}


/* =========================================
   HERO DORADE - POČETNA + ISTORIJAT KLUBA
========================================= */

/* Početna hero: ista širina kao elementi ispod + responsive prikaz */
.hero-main {
  width: min(var(--max), calc(100% - 40px)) !important;
  margin-inline: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1672 / 941 !important;
  overflow: hidden !important;
  background: #090909 !important;
  border-bottom: 0 !important;
}

.hero-main__bg {
  background-image: image-set(
    url('../images/hero-main-desktop.webp') type('image/webp'),
    url('../images/hero-main-desktop.jpg') type('image/jpeg')
  ) !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  transform: none !important;
}

.hero-main__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.88) 22%, rgba(0,0,0,.60) 46%, rgba(0,0,0,.24) 62%, rgba(0,0,0,.05) 78%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 100%) !important;
}

.hero-main__content.container {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

@media (max-width: 1200px) {
  .hero-main {
    aspect-ratio: 1200 / 675 !important;
  }

  .hero-main__bg {
    background-image: image-set(
      url('../images/hero-main-tablet.webp') type('image/webp'),
      url('../images/hero-main-tablet.jpg') type('image/jpeg')
    ) !important;
    background-size: 100% 100% !important;
  }

  .hero-main__content.container {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}

@media (max-width: 767px) {
  .hero-main {
    width: calc(100% - 24px) !important;
    aspect-ratio: auto !important;
    min-height: 420px !important;
  }

  .hero-main__bg {
    background-image: image-set(
      url('../images/hero-main-mobile.webp') type('image/webp'),
      url('../images/hero-main-mobile.jpg') type('image/jpeg')
    ) !important;
    background-size: cover !important;
    background-position: 64% center !important;
  }

  .hero-main__content.container {
    min-height: 420px !important;
    height: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero-main__overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 34%, rgba(0,0,0,.44) 62%, rgba(0,0,0,.18) 100%),
      linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 100%) !important;
  }
}

/* Istorijat hero: prati ivice sadržaja ispod + responsive prikaz */
.history-hero {
  width: min(var(--max), calc(100% - 40px)) !important;
  margin-inline: auto !important;
  min-height: 0 !important;
  aspect-ratio: 2172 / 724 !important;
  overflow: hidden !important;
  background: #090909 !important;
  border-bottom: 0 !important;
}

.history-hero__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.25) 100%),
    image-set(
      url('../images/history-hero-bg-desktop.webp') type('image/webp'),
      url('../images/history-hero-bg-desktop.jpg') type('image/jpeg')
    ) !important;
  background-size: 100% 100%, 100% 100% !important;
  background-position: center center, center center !important;
  background-repeat: no-repeat, no-repeat !important;
  filter: none !important;
  transform: none !important;
}

.history-hero__bg::after {
  background:
    url('../images/logo.webp') no-repeat right 5% center / 220px auto !important;
  opacity: .16 !important;
}

.history-hero__inner.container {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

@media (max-width: 1200px) {
  .history-hero {
    aspect-ratio: 1200 / 400 !important;
  }

  .history-hero__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.50) 45%, rgba(0,0,0,.26) 100%),
      image-set(
        url('../images/history-hero-bg-tablet.webp') type('image/webp'),
        url('../images/history-hero-bg-tablet.jpg') type('image/jpeg')
      ) !important;
    background-size: 100% 100%, 100% 100% !important;
  }

  .history-hero__inner.container {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}

@media (max-width: 767px) {
  .history-hero {
    width: calc(100% - 24px) !important;
    aspect-ratio: auto !important;
    min-height: 300px !important;
  }

  .history-hero__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.56) 46%, rgba(0,0,0,.28) 100%),
      image-set(
        url('../images/history-hero-bg-mobile.webp') type('image/webp'),
        url('../images/history-hero-bg-mobile.jpg') type('image/jpeg')
      ) !important;
    background-size: cover, cover !important;
    background-position: 54% center, 54% center !important;
  }

  .history-hero__bg::after {
    background-size: 150px auto !important;
    background-position: right 4% center !important;
    opacity: .13 !important;
  }

  .history-hero__inner.container {
    min-height: 300px !important;
    height: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Mali razmak između Zašto Atletiko i Atletiko Kup sekcije */
.atletiko-kup-banner {
  margin-top: 18px !important;
}

@media (max-width: 767px) {
  .atletiko-kup-banner {
    margin-top: 14px !important;
  }
}


/* =====================================================
   HOME HERO - jasna vidljivost teksta na svim ekranima
===================================================== */
.hero-main {
  overflow: hidden !important;
}

.hero-main__bg {
  background-image: image-set(
    url('../images/hero-main-desktop.webp') type('image/webp'),
    url('../images/hero-main-desktop.jpg') type('image/jpeg')
  ) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
}

.hero-main__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.18) 100%) !important;
}

.hero-main__content--buttons {
  min-height: 100% !important;
  height: 100% !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding-bottom: 34px !important;
}

.hero-buttons--only {
  position: relative;
  z-index: 3;
}

.hero-buttons--only .hero-btn {
  box-shadow: 0 10px 28px rgba(0,0,0,.45) !important;
}

@media (max-width: 1199px) {
  .hero-main {
    aspect-ratio: 1450 / 941 !important;
  }

  .hero-main__bg {
    background-image: image-set(
      url('../images/hero-main-tablet-focus.webp') type('image/webp'),
      url('../images/hero-main-tablet-focus.jpg') type('image/jpeg')
    ) !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
  }

  .hero-main__content.container {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .hero-main__content--buttons {
    padding-bottom: 26px !important;
  }
}

@media (max-width: 767px) {
  .hero-main {
    width: calc(100% - 24px) !important;
    aspect-ratio: 900 / 1200 !important;
    min-height: 0 !important;
  }

  .hero-main__bg {
    background-image: image-set(
      url('../images/hero-main-mobile-focus.webp') type('image/webp'),
      url('../images/hero-main-mobile-focus.jpg') type('image/jpeg')
    ) !important;
    background-position: top center !important;
    background-size: 100% 100% !important;
  }

  .hero-main__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.12) 55%, rgba(0,0,0,.20) 100%) !important;
  }

  .hero-main__content.container,
  .hero-main__content--buttons {
    min-height: 100% !important;
    height: 100% !important;
  }

  .hero-main__content.container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-main__content--buttons {
    justify-content: flex-end !important;
    align-items: flex-end !important;
    padding-bottom: 18px !important;
  }

  .hero-buttons--only {
    width: 100%;
  }

  .hero-buttons--only .hero-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 17px;
  }
}


/* =====================================================
   FINAL HERO TWEAKS
   - Početna: dugme malo više
   - Kontakt + Istorijat: ista responsive optimizacija i bolja čitljivost
===================================================== */

/* HOME HERO: podignuto dugme */
.hero-main__content--buttons {
  padding-bottom: 58px !important;
}

@media (max-width: 1199px) {
  .hero-main__content--buttons {
    padding-bottom: 42px !important;
  }
}

@media (max-width: 767px) {
  .hero-main__content--buttons {
    padding-bottom: 28px !important;
  }
}

/* ISTORIJAT HERO: ista logika kao početna, bolja vidljivost teksta */
.history-hero__bg {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 38%, rgba(0,0,0,.24) 68%, rgba(0,0,0,.12) 100%),
    image-set(
      url('../images/history-hero-bg-desktop.webp') type('image/webp'),
      url('../images/history-hero-bg-desktop.jpg') type('image/jpeg')
    ) !important;
  background-size: 100% 100%, 100% 100% !important;
  background-position: center center, center center !important;
}

.history-hero__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.12) 100%),
    radial-gradient(circle at 12% 45%, rgba(251,197,1,.08), transparent 30%) !important;
}

.history-hero__copy {
  max-width: 560px !important;
}

@media (max-width: 1200px) {
  .history-hero__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.60) 42%, rgba(0,0,0,.26) 72%, rgba(0,0,0,.12) 100%),
      image-set(
        url('../images/history-hero-bg-tablet.webp') type('image/webp'),
        url('../images/history-hero-bg-tablet.jpg') type('image/jpeg')
      ) !important;
    background-size: 100% 100%, 100% 100% !important;
  }
}

@media (max-width: 767px) {
  .history-hero {
    min-height: 320px !important;
  }

  .history-hero__bg {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 44%, rgba(0,0,0,.30) 76%, rgba(0,0,0,.14) 100%),
      image-set(
        url('../images/history-hero-bg-mobile.webp') type('image/webp'),
        url('../images/history-hero-bg-mobile.jpg') type('image/jpeg')
      ) !important;
    background-size: cover, cover !important;
    background-position: center center, center center !important;
  }

  .history-hero__inner.container {
    min-height: 320px !important;
  }

  .history-hero__copy {
    max-width: 74% !important;
  }
}

/* KONTAKT HERO: responsive kao početna, bolja čitljivost teksta */
.page-main--contact .contact-hero__bg {
  background-image: image-set(
    url('../images/contact/contact-hero-desktop.webp') type('image/webp'),
    url('../images/contact/contact-hero-desktop.jpg') type('image/jpeg')
  ) !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.page-main--contact .contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.52) 36%, rgba(0,0,0,.22) 68%, rgba(0,0,0,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 100%) !important;
}

.page-main--contact .contact-hero__content {
  max-width: 470px !important;
}

@media (max-width: 1200px) {
  .page-main--contact .contact-hero__bg {
    background-image: image-set(
      url('../images/contact/contact-hero-tablet.webp') type('image/webp'),
      url('../images/contact/contact-hero-tablet.jpg') type('image/jpeg')
    ) !important;
    background-size: 100% 100% !important;
  }

  .page-main--contact .contact-hero__overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 38%, rgba(0,0,0,.24) 70%, rgba(0,0,0,.10) 100%),
      linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 100%) !important;
  }
}

@media (max-width: 767px) {
  .page-main--contact .contact-hero {
    min-height: 330px !important;
  }

  .page-main--contact .contact-hero__bg {
    background-image: image-set(
      url('../images/contact/contact-hero-mobile.webp') type('image/webp'),
      url('../images/contact/contact-hero-mobile.jpg') type('image/jpeg')
    ) !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .page-main--contact .contact-hero__overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.58) 44%, rgba(0,0,0,.28) 76%, rgba(0,0,0,.12) 100%),
      linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.22) 100%) !important;
  }

  .page-main--contact .contact-hero__inner.container {
    min-height: 330px !important;
  }

  .page-main--contact .contact-hero__content {
    max-width: 72% !important;
  }
}


/* =====================================================
   HOME HERO FINAL HEIGHT / BUTTON POSITION FIX
   Slika se završava bliže donjoj ivici lopte i dugme ide više.
===================================================== */
.hero-main {
  min-height: 0 !important;
  aspect-ratio: 1800 / 1013 !important;
}

.hero-main__content.container,
.hero-main__content--buttons {
  min-height: 100% !important;
  height: 100% !important;
}

.hero-main__content--buttons {
  justify-content: flex-end !important;
  align-items: flex-end !important;
  padding-bottom: 74px !important;
}

@media (max-width: 1199px) {
  .hero-main {
    aspect-ratio: 1450 / 941 !important;
  }

  .hero-main__content--buttons {
    padding-bottom: 54px !important;
  }
}

@media (max-width: 767px) {
  .hero-main {
    aspect-ratio: 900 / 1200 !important;
  }

  .hero-main__content--buttons {
    padding-bottom: 32px !important;
  }
}


/* =====================================================
   HOME HERO BUTTON LEFT FIX
   Zadrži isečen donji deo slike, ali vrati dugme levo kao prvobitno.
===================================================== */
.hero-main__content--buttons {
  justify-content: flex-start !important;
  align-items: flex-end !important;
}

@media (max-width: 767px) {
  .hero-main__content--buttons {
    justify-content: flex-start !important;
    align-items: flex-end !important;
  }
}


/* =====================================================
   HOME HERO BUTTON SLIGHTLY LOWER
===================================================== */
.hero-main__content--buttons {
  padding-bottom: 58px !important;
}

@media (max-width: 1199px) {
  .hero-main__content--buttons {
    padding-bottom: 44px !important;
  }
}

@media (max-width: 767px) {
  .hero-main__content--buttons {
    padding-bottom: 24px !important;
  }
}


/* =========================================
   AKADEMIJA STRANA
========================================= */
.page-main--academy {
  background: #050505;
}

.academy-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.academy-hero__bg,
.academy-hero__overlay {
  position: absolute;
  inset: 0;
}

.academy-hero__bg {
  background: url('../images/academy/academy-hero.png') center center / cover no-repeat;
}

.academy-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.68) 30%, rgba(0,0,0,0.28) 62%, rgba(0,0,0,0.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 100%);
}

.academy-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.academy-hero__content {
  max-width: 520px;
  padding: 42px 0;
}

.academy-hero h1 {
  margin: 0 0 18px;
  font-family: 'Anton', sans-serif;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.academy-hero p {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
  max-width: 460px;
}

.academy-hero__accent {
  display: block;
  width: 52px;
  height: 6px;
  background: #fbc501;
  margin-top: 22px;
  box-shadow: 0 0 26px rgba(251,197,1,0.28);
}

@media (max-width: 1024px) {
  .academy-hero,
  .academy-hero__inner {
    min-height: 360px;
  }

  .academy-hero h1 {
    font-size: clamp(58px, 9vw, 78px);
  }

  .academy-hero p {
    font-size: 22px;
    max-width: 430px;
  }
}

@media (max-width: 768px) {
  .academy-hero,
  .academy-hero__inner {
    min-height: 320px;
  }

  .academy-hero__bg {
    background-position: center center;
  }

  .academy-hero__content {
    max-width: 340px;
    padding: 32px 0;
  }

  .academy-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
    margin-bottom: 12px;
  }

  .academy-hero p {
    font-size: 19px;
    line-height: 1.32;
    max-width: 320px;
  }

  .academy-hero__accent {
    width: 46px;
    height: 5px;
    margin-top: 16px;
  }
}


/* =========================================
   ISTORIJAT HERO - ISTI FONT KAO AKADEMIJA
========================================= */
.history-hero__copy h1 {
  margin: 0 0 18px !important;
  font-family: 'Anton', sans-serif !important;
  font-size: 82px !important;
  line-height: 0.94 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  font-weight: 400 !important;
}

.history-hero__copy p {
  margin: 0 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 24px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  max-width: 460px !important;
}

.history-hero__line {
  width: 52px !important;
  height: 6px !important;
  margin-top: 22px !important;
}

@media (max-width: 1024px) {
  .history-hero__copy h1 {
    font-size: clamp(58px, 9vw, 78px) !important;
  }

  .history-hero__copy p {
    font-size: 22px !important;
    max-width: 430px !important;
  }
}

@media (max-width: 768px) {
  .history-hero__copy {
    max-width: 340px !important;
    padding: 32px 0 !important;
  }

  .history-hero__copy h1 {
    font-size: clamp(48px, 14vw, 64px) !important;
    margin-bottom: 12px !important;
  }

  .history-hero__copy p {
    font-size: 19px !important;
    line-height: 1.32 !important;
    max-width: 320px !important;
  }

  .history-hero__line {
    width: 46px !important;
    height: 5px !important;
    margin-top: 16px !important;
  }
}

/* =========================================
   AKADEMIJA STRANA - HERO + O AKADEMIJI
========================================= */
.page-main--academy {
  background: #050505;
}

.academy-hero {
  position: relative;
  padding: 0;
  margin-bottom: 0 !important;
  overflow: hidden;
  border-bottom: 0;
}

.academy-hero__container {
  position: relative;
}

.academy-hero__stage {
  position: relative;
  min-height: 0;
  aspect-ratio: 1916 / 821;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #090909;
}

.academy-hero__bg,
.academy-hero__overlay {
  position: absolute;
  inset: 0;
}

.academy-hero__bg {
  background: url('../images/academy/academy-hero.png') center center / cover no-repeat;
}

.academy-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.72) 24%, rgba(0,0,0,0.34) 54%, rgba(0,0,0,0.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.20) 100%);
}

.academy-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.academy-hero__content {
  max-width: 520px;
  padding: 34px 0;
}

.academy-hero h1 {
  margin: 0 0 14px;
  font-family: 'Anton', sans-serif;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

.academy-hero p {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
  max-width: 470px;
}

.academy-hero__accent {
  display: block;
  width: 52px;
  height: 5px;
  background: #fbc501;
  margin-top: 18px;
  box-shadow: 0 0 24px rgba(251,197,1,0.24);
}

.academy-info {
  padding: 0 0 24px !important;
  margin-top: 0 !important;
}

.academy-info.section-dark {
  padding-top: 0 !important;
  border-top: 0;
}

.academy-info__grid {
  display: grid;
  grid-template-columns: minmax(270px, 300px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 20px;
}

.academy-info .container {
  padding-top: 20px !important;
  margin-top: 0 !important;
}

.academy-hero + .academy-info {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.academy-info__intro,
.academy-info__methods {
  position: relative;
}

.academy-info__intro {
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.academy-info__eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.academy-info__eyebrow {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

.academy-info__methods-title,
.academy-info__subtitle {
  margin: 0;
  font-family: 'Anton', sans-serif;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 400;
}

.academy-info__subtitle {
  font-size: 14px;
  color: #fbc501;
  margin-bottom: 16px;
}

.academy-info__methods-title {
  font-size: 16px;
  color: #ffffff;
}

.academy-info__eyebrow-row--methods {
  margin-bottom: 10px;
}

.academy-info__line {
  display: inline-block;
  width: 54px;
  height: 3px;
  background: #fbc501;
  box-shadow: 0 0 18px rgba(251,197,1,0.18);
}

.academy-info__intro p {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  line-height: 1.42;
  color: rgba(255,255,255,0.90);
}

.academy-info__intro p:last-child {
  margin-bottom: 0;
}

.academy-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.academy-method-card {
  position: relative;
  min-height: 168px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%),
    radial-gradient(circle at 82% 14%, rgba(255,255,255,0.06), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(251,197,1,0.08), transparent 20%),
    #0a0a0a;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.academy-method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255,255,255,0.085) 58.5%, transparent 59.2%),
    linear-gradient(135deg, transparent 0 70%, rgba(255,255,255,0.075) 70.5%, transparent 71.2%),
    radial-gradient(circle at 76% 14%, rgba(255,255,255,0.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 83% 24%, rgba(255,255,255,0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 20%, rgba(251,197,1,0.20) 0 1px, transparent 2px);
  opacity: 0.42;
  pointer-events: none;
}

.academy-method-card::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-top: 12px solid transparent;
  border-right: 12px solid #fbc501;
  border-bottom: 12px solid #fbc501;
}

.academy-method-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 0 12px;
  background: transparent !important;
}

.academy-method-card__icon img,
.academy-method-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent !important;
}

.academy-method-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

.academy-method-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255,255,255,0.88);
}

.academy-page-content {
  padding-top: 0;
}

@media (max-width: 1280px) {
  .academy-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .academy-hero__stage {
    min-height: 0;
    aspect-ratio: 1916 / 821;
  }

  .academy-hero__inner {
    min-height: 0;
    height: 100%;
  }

  .academy-hero h1 {
    font-size: clamp(58px, 9vw, 78px);
  }

  .academy-hero p {
    font-size: 22px;
    max-width: 420px;
  }

  .academy-info__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .academy-info__intro {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 768px) {
  .academy-hero {
    padding-bottom: 0;
    margin-bottom: 0 !important;
  }

  .academy-hero__stage {
    min-height: 0;
    aspect-ratio: 1916 / 821;
  }

  .academy-hero__inner {
    min-height: 0;
    height: 100%;
  }

  .academy-hero__bg {
    background-position: center center;
  }

  .academy-hero__content {
    max-width: 320px;
    padding: 28px 0;
  }

  .academy-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
    margin-bottom: 12px;
  }

  .academy-hero p {
    font-size: 19px;
    line-height: 1.32;
    max-width: 300px;
  }

  .academy-hero__accent {
    width: 46px;
    height: 4px;
    margin-top: 14px;
  }

  .academy-info {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
    margin-top: 0 !important;
  }

  .academy-info .container,
  .academy-info__grid {
    padding-top: 20px !important;
    margin-top: 0 !important;
  }

  .academy-info__eyebrow {
    font-size: 15px;
  }

  .academy-info__subtitle {
    font-size: 13px;
  }

  .academy-info__methods-title {
    font-size: 15px;
  }

  .academy-info__intro p {
    font-size: 16px;
  }

  .academy-methods {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .academy-method-card {
    min-height: auto;
    padding: 16px 16px 18px;
  }

  .academy-method-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .academy-method-card h3 {
    font-size: 16px;
  }

  .academy-method-card p {
    font-size: 14px;
  }
}


/* =========================================
   AKADEMIJA - GENERACIJE / UZRASTI
========================================= */
.academy-info {
  margin-top: 0 !important;
}

.academy-generations {
  padding-top: 10px !important;
  padding-bottom: 46px !important;
}

.academy-generations__head {
  margin-bottom: 18px !important;
}

.academy-generations__head h2 {
  font-size: 28px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.academy-generations__grid {
  grid-template-columns: repeat(6, 1fr);
}

.academy-generations__card {
  cursor: default;
  text-decoration: none;
}

.academy-generations__card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.academy-generations__card .training-card__content h3 {
  font-size: 18px !important;
  line-height: 1.05 !important;
}

.academy-generations__card .training-card__content p {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px !important;
  line-height: 1;
  font-weight: 600 !important;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  .academy-generations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .academy-info {
    margin-top: 10px !important;
  }

  .academy-generations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .academy-generations__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   AKADEMIJA - NAŠI TRENERI
========================================= */
.academy-coaches {
  padding-top: 10px !important;
  padding-bottom: 54px !important;
  background:
    radial-gradient(circle at 80% 20%, rgba(251,197,1,0.06), transparent 28%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.academy-coaches__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.academy-coaches__head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

.academy-coaches__head h2 span {
  display: inline-block;
  width: 74px;
  height: 4px;
  background: #fbc501;
  box-shadow: 0 0 18px rgba(251,197,1,.24);
}

.academy-coaches__button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 2px solid #fbc501;
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(0,0,0,.25);
  box-shadow: 0 0 16px rgba(251,197,1,.08);
  cursor: default;
  user-select: none;
}

.academy-coaches__button span {
  font-size: 25px;
  line-height: 1;
}

.academy-coaches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.academy-coach-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)),
    #0a0a0a;
  min-height: 420px;
}

.academy-coach-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(255,255,255,.075) 64.4%, transparent 65%),
    linear-gradient(135deg, transparent 0 78%, rgba(255,255,255,.065) 78.4%, transparent 79%),
    radial-gradient(circle at 72% 14%, rgba(251,197,1,.20) 0 1px, transparent 2px);
  opacity: .34;
  pointer-events: none;
  z-index: 2;
}

.academy-coach-card__image {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #0b0b0b;
}

.academy-coach-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.00) 0%, rgba(0,0,0,.40) 74%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.24) 0%, transparent 44%, rgba(0,0,0,.18) 100%);
  z-index: 1;
}

.academy-coach-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.academy-coach-card__body {
  position: relative;
  z-index: 3;
  padding: 18px 20px 22px;
}

.academy-coach-card h3 {
  margin: 0 0 7px;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

.academy-coach-card__role,
.academy-coach-card__license {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.academy-coach-card__role {
  color: #fbc501;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 7px;
}

.academy-coach-card__license {
  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .8px;
  margin-bottom: 16px;
}

.academy-coach-card__text {
  margin: 0;
  max-width: 92%;
  color: rgba(255,255,255,.88);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 400;
}

.academy-coach-card__corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 76px;
  height: 76px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(251,197,1,.95) 42% 58%, transparent 58% 64%, rgba(251,197,1,.86) 64% 74%, transparent 74%),
    linear-gradient(135deg, transparent 0 50%, rgba(251,197,1,.55) 50% 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 4;
}

@media (max-width: 1100px) {
  .academy-coaches__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .academy-coach-card {
    min-height: auto;
  }

  .academy-coach-card__image {
    height: 260px;
  }
}

@media (max-width: 700px) {
  .academy-coaches {
    padding-top: 4px !important;
  }

  .academy-coaches__head {
    display: block;
  }

  .academy-coaches__head h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .academy-coaches__button {
    width: 100%;
    min-height: 42px;
    font-size: 15px;
  }

  .academy-coach-card__image {
    height: 220px;
  }

  .academy-coach-card__body {
    padding: 16px 16px 20px;
  }

  .academy-coach-card h3 {
    font-size: 24px;
  }

  .academy-coach-card__role {
    font-size: 19px;
  }

  .academy-coach-card__license {
    font-size: 18px;
  }

  .academy-coach-card__text {
    font-size: 16px;
    max-width: 100%;
  }
}


/* =========================================
   AKADEMIJA - REALNI TRENERI UPDATE
========================================= */
.academy-coach-card__license--empty {
  display: none !important;
  margin: 0 !important;
}

.academy-coach-card__image img {
  object-position: center top !important;
}

.academy-coach-card__role {
  display: inline-block;
}

.academy-coach-card__role + .academy-coach-card__license:not(.academy-coach-card__license--empty) {
  display: inline-block;
  margin-left: 6px;
}


/* =========================================
   AKADEMIJA - TRENERI + USLOVI TRENING CENTRA
========================================= */
.academy-coaches__head {
  justify-content: flex-start;
}

.academy-coach-card__role,
.academy-coach-card__license {
  display: block !important;
}

.academy-coach-card__license--block {
  display: block !important;
  margin-bottom: 14px;
}

.academy-coach-card__license--empty {
  display: none !important;
}

.academy-center {
  padding: 10px 0 60px;
  background:
    radial-gradient(circle at 20% 12%, rgba(251,197,1,0.05), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.academy-center__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    #090909;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}

.academy-center__media,
.academy-center__content {
  min-width: 0;
}

.academy-center__media {
  border-right: 1px solid rgba(255,255,255,.12);
}

.academy-center__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 12px;
}

.academy-center__title-row h2 {
  margin: 0;
  color: #ffffff;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: .45px;
  text-transform: uppercase;
  font-weight: 400;
}

.academy-center__title-row span {
  width: 82px;
  height: 4px;
  background: #fbc501;
  box-shadow: 0 0 16px rgba(251,197,1,.28);
  flex: 0 0 auto;
}

.academy-center__image {
  position: relative;
  height: 100%;
  min-height: 268px;
  overflow: hidden;
  background: #080808;
}

.academy-center__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(251,197,1,.10), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}

.academy-center__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.academy-center__content {
  padding: 20px 22px 20px;
  display: flex;
  align-items: center;
}

.academy-center__features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.academy-center__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.academy-center__feature--wide {
  grid-column: 1 / -1;
}

.academy-center__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.academy-center__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.academy-center__text h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.academy-center__text p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .academy-center__frame {
    grid-template-columns: 1fr;
  }

  .academy-center__media {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .academy-center__image {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  .academy-center {
    padding: 8px 0 44px;
  }

  .academy-center__title-row {
    padding: 16px 16px 10px;
    gap: 10px;
  }

  .academy-center__title-row h2 {
    font-size: 25px;
  }

  .academy-center__title-row span {
    width: 52px;
    height: 3px;
  }

  .academy-center__image {
    min-height: 220px;
  }

  .academy-center__content {
    padding: 16px;
  }

  .academy-center__features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .academy-center__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .academy-center__icon img {
    width: 38px;
    height: 38px;
  }

  .academy-center__text h3 {
    font-size: 21px;
  }

  .academy-center__text p {
    font-size: 17px;
  }
}


/* =========================================
   AKADEMIJA - USLOVI CENTRA: 3 STAVKE U JEDNOM REDU
========================================= */
.academy-center__features {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px 24px !important;
  align-items: flex-start !important;
}

.academy-center__feature,
.academy-center__feature--wide {
  grid-column: auto !important;
}

@media (max-width: 1100px) {
  .academy-center__features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .academy-center__feature {
    gap: 10px !important;
  }

  .academy-center__icon {
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px !important;
  }

  .academy-center__icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .academy-center__text h3 {
    font-size: 21px !important;
  }

  .academy-center__text p {
    font-size: 17px !important;
  }
}

@media (max-width: 700px) {
  .academy-center__features {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================
   AKADEMIJA - USLOVI I TRENING CENTAR - BOLJI ODNOSI SLIKE I TEKSTA
========================================= */
.academy-center__frame {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr) !important;
  align-items: stretch !important;
}

.academy-center__media {
  display: flex;
  flex-direction: column;
}

.academy-center__image {
  min-height: 232px !important;
}

.academy-center__image img {
  object-position: 46% 76% !important;
}

.academy-center__content {
  padding: 24px 28px !important;
}

.academy-center__features {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px 20px !important;
  align-items: flex-start !important;
}

.academy-center__feature,
.academy-center__feature--wide {
  grid-column: auto !important;
  min-width: 0;
  gap: 12px !important;
}

.academy-center__icon {
  width: 64px !important;
  height: 64px !important;
  flex: 0 0 64px !important;
  overflow: visible !important;
}

.academy-center__icon img {
  width: auto !important;
  height: auto !important;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.academy-center__text h3 {
  font-size: 22px !important;
  line-height: 1.04 !important;
}

.academy-center__text p {
  font-size: 17px !important;
  line-height: 1.26 !important;
}

@media (max-width: 1200px) {
  .academy-center__frame {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr) !important;
  }

  .academy-center__content {
    padding: 22px 24px !important;
  }

  .academy-center__features {
    gap: 14px 16px !important;
  }

  .academy-center__icon {
    width: 60px !important;
    height: 60px !important;
    flex-basis: 60px !important;
  }

  .academy-center__icon img {
    max-width: 48px !important;
    max-height: 48px !important;
  }

  .academy-center__text h3 {
    font-size: 20px !important;
  }

  .academy-center__text p {
    font-size: 16px !important;
  }
}

@media (max-width: 1100px) {
  .academy-center__frame {
    grid-template-columns: 1fr !important;
  }

  .academy-center__image {
    min-height: 320px !important;
  }

  .academy-center__image img {
    object-position: 48% 72% !important;
  }

  .academy-center__features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .academy-center__features {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .academy-center__content {
    padding: 18px 18px 20px !important;
  }

  .academy-center__icon {
    width: 56px !important;
    height: 56px !important;
    flex-basis: 56px !important;
  }

  .academy-center__icon img {
    max-width: 44px !important;
    max-height: 44px !important;
  }
}

/* =========================================
   AKADEMIJA - CTA BANNER
========================================= */
.academy-cta {
  padding: 18px 0 56px;
  background:
    radial-gradient(circle at 18% 14%, rgba(251,197,1,.05), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.academy-cta__frame {
  position: relative;
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  background: #090909;
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}

.academy-cta__image {
  display: block;
  width: 100%;
  height: auto;
}

.academy-cta__button-overlay {
  position: absolute;
  left: 4.2%;
  top: 73.5%;
  width: 29.5%;
  height: 21%;
  z-index: 2;
}

@media (max-width: 700px) {
  .academy-cta {
    padding: 16px 0 44px;
  }

  .academy-cta__button-overlay {
    left: 4.4%;
    top: 73%;
    width: 29.8%;
    height: 20.5%;
  }
}


/* =========================================
   AKADEMIJA - HERO TEXT +15px DESNO
========================================= */
.page-main--academy .academy-hero__content {
  margin-left: 15px !important;
}

/* Isključeni meni linkovi za stranice koje nisu još napravljene */
.nav-menu a.nav-link--disabled,
.nav-menu a[href="#"].nav-link--disabled {
  cursor: default !important;
  opacity: 0.72;
  pointer-events: none;
}


/* =========================================
   AKADEMIJA - RAZMAK IZMEĐU SEKCIJA MAX 20px
========================================= */
.page-main--academy .academy-coaches {
  padding-bottom: 20px !important;
}

.page-main--academy .academy-center {
  padding-top: 0 !important;
  padding-bottom: 20px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.page-main--academy .academy-cta {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.page-main--academy .academy-center + .academy-cta,
.page-main--academy .academy-center + .academy-page-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 700px) {
  .page-main--academy .academy-coaches {
    padding-bottom: 18px !important;
  }

  .page-main--academy .academy-center {
    padding-bottom: 18px !important;
  }
}

/* =========================================
   KONTAKT - DROPDOWN GODIŠTE FIX
========================================= */
.page-main--contact select,
.contact-page select,
.contact-form select,
.wpcf7 select,
form select {
  background-color: #fbc501 !important;
  color: #050505 !important;
  border: 1px solid #fbc501 !important;
  border-radius: 0 !important;
  padding: 12px 14px !important;
  font-family: 'Barlow Condensed', Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
}

.page-main--contact select option,
.contact-page select option,
.contact-form select option,
.wpcf7 select option,
form select option {
  background-color: #fbc501 !important;
  color: #050505 !important;
}

.page-main--contact select:focus,
.contact-page select:focus,
.contact-form select:focus,
.wpcf7 select:focus,
form select:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 2px rgba(251,197,1,.28) !important;
}


/* =========================================
   ATLETIKO KUP LIVE STRANICA
========================================= */
.page-main--kup {
  background:
    radial-gradient(circle at 20% 0%, rgba(251,197,1,.08), transparent 26%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.kup-live-hero {
  padding: 26px 0 14px;
}

.kup-live-hero__frame {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: center;
  padding: 42px 46px;
  overflow: hidden;
  border: 1px solid rgba(251,197,1,.42);
  background:
    linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.70) 42%, rgba(0,0,0,.78) 100%),
    url('../images/atletiko-kup-bg.jpg') center center / cover no-repeat;
  box-shadow: 0 22px 48px rgba(0,0,0,.35);
}

.kup-live-hero__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(251,197,1,.20), transparent 22%),
    linear-gradient(135deg, transparent 0 76%, rgba(251,197,1,.92) 76.4% 79%, transparent 79.4%);
  opacity: .72;
  pointer-events: none;
}

.kup-live-hero__content,
.kup-live-hero__stats {
  position: relative;
  z-index: 1;
}

.kup-live-hero__eyebrow,
.kup-live-toolbar__eyebrow {
  margin: 0 0 10px;
  color: #fbc501;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kup-live-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .92;
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.kup-live-hero h1::after {
  content: '';
  display: block;
  width: 82px;
  height: 5px;
  margin-top: 18px;
  background: #fbc501;
  box-shadow: 0 0 20px rgba(251,197,1,.34);
}

.kup-live-hero p:not(.kup-live-hero__eyebrow) {
  max-width: 570px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.90);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.kup-live-hero__button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  color: #050505;
  background: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 19px;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(251,197,1,.16);
}

.kup-live-hero__button:hover {
  filter: brightness(1.05);
}

.kup-live-hero__stats {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at top right, rgba(251,197,1,.10), transparent 32%),
    rgba(0,0,0,.62);
}

.kup-live-hero__stats div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kup-live-hero__stats div:last-child {
  border-bottom: 0;
}

.kup-live-hero__stats strong {
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.kup-live-hero__stats span {
  color: rgba(255,255,255,.82);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.kup-live-section {
  padding: 12px 0 62px;
}

.kup-live-toolbar,
.kup-generation-tabs,
.kup-live-panel,
.kup-live-all-groups,
.kup-empty-state,
.kup-loading-card {
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at top right, rgba(251,197,1,.07), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.010)),
    #090909;
}

.kup-live-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border-color: rgba(251,197,1,.25);
}

.kup-live-toolbar h2 {
  margin: 0;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.kup-live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 10px 14px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.kup-live-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00ff66;
  box-shadow: 0 0 14px rgba(0,255,102,.65);
}

.kup-live-status__dot.is-off {
  background: #ff4444;
  box-shadow: 0 0 14px rgba(255,68,68,.65);
}

.kup-generation-tabs {
  margin-top: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.kup-generation-tab {
  min-width: 150px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: #070707;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.kup-generation-tab.active,
.kup-generation-tab:hover {
  background: #fbc501;
  color: #050505;
  border-color: #fbc501;
}

.kup-live-app {
  margin-top: 16px;
}

.kup-live-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .96fr);
  gap: 16px;
}

.kup-live-panel,
.kup-live-all-groups {
  padding: 22px;
  box-shadow: 0 16px 38px rgba(0,0,0,.26);
  overflow: hidden;
}

.kup-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.kup-panel-head h3 {
  margin: 0;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.kup-panel-head h3::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 10px;
  background: #fbc501;
}

.kup-panel-head span {
  color: rgba(255,255,255,.72);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.kup-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.kup-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
}

.kup-table th,
.kup-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 17px;
  text-align: center;
}

.kup-table th {
  color: #fbc501;
  background: #050505;
  font-size: 15px;
  text-transform: uppercase;
}

.kup-table th:nth-child(2),
.kup-table td:nth-child(2) {
  text-align: left;
}

.kup-team-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kup-team-cell img,
.kup-logo-placeholder {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: cover;
  border: 1px solid rgba(251,197,1,.45);
  background: #000;
}

.kup-logo-placeholder {
  display: inline-grid;
  place-items: center;
  color: #fbc501;
  font-size: 11px;
  font-weight: 800;
}

.kup-table .positive {
  color: #00ff66;
}

.kup-table .negative {
  color: #ff4444;
}

.kup-table .points {
  color: #fbc501;
  font-weight: 900;
}

.kup-schedule-list,
.kup-knockout-list {
  display: grid;
  gap: 10px;
}

.kup-schedule-row {
  display: grid;
  grid-template-columns: 56px 1fr 54px 1fr 86px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 17px;
}

.kup-schedule-row span {
  color: #fbc501;
  font-weight: 800;
}

.kup-schedule-row em,
.kup-knockout-match em {
  color: #fff;
  font-style: normal;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-align: center;
}

.kup-schedule-row small {
  justify-self: end;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}

.kup-schedule-row small.done {
  color: #00ff66;
  border-color: rgba(0,255,102,.34);
}

.kup-schedule-row small.next {
  color: #fbc501;
  border-color: rgba(251,197,1,.34);
}

.kup-knockout-match {
  padding: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.kup-knockout-match.is-final {
  border-color: rgba(251,197,1,.62);
  box-shadow: inset 0 0 0 1px rgba(251,197,1,.10);
}

.kup-knockout-match > span {
  display: block;
  margin-bottom: 8px;
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.kup-knockout-match div {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 10px;
  align-items: center;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
}

.kup-knockout-match small {
  display: block;
  margin-top: 8px;
  color: #ffcf6b;
}

.kup-podium {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 12px;
  align-items: end;
}

.kup-podium__place {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  text-align: center;
}

.kup-podium__place.gold {
  min-height: 178px;
  border-color: rgba(251,197,1,.80);
  background: radial-gradient(circle at center 15%, rgba(251,197,1,.22), rgba(255,255,255,.025) 58%);
}

.kup-podium__place.silver {
  border-color: rgba(210,210,210,.52);
}

.kup-podium__place.bronze {
  border-color: rgba(255,140,40,.58);
}

.kup-podium__place span {
  font-size: 34px;
}

.kup-podium__place strong {
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.kup-podium__place small {
  color: rgba(255,255,255,.72);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.kup-live-all-groups {
  margin-top: 16px;
}

.kup-all-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kup-group-card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
}

.kup-group-card h4 {
  margin: 0 0 12px;
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.kup-empty-state,
.kup-loading-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
}

.kup-empty-state h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
}

.kup-empty-state p,
.kup-empty-mini,
.kup-loading-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.kup-empty-state small {
  margin-top: 12px;
  color: rgba(255,255,255,.45);
}

.kup-loading-card__spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,.16);
  border-top-color: #fbc501;
  border-radius: 50%;
  animation: kupSpin 1s linear infinite;
  margin-bottom: 14px;
}

@keyframes kupSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .kup-live-hero__frame,
  .kup-live-dashboard {
    grid-template-columns: 1fr;
  }

  .kup-live-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .kup-live-hero__stats div {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kup-all-groups-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .kup-live-hero {
    padding-top: 16px;
  }

  .kup-live-hero__frame {
    padding: 28px 18px;
    min-height: 0;
  }

  .kup-live-hero p:not(.kup-live-hero__eyebrow) {
    font-size: 20px;
  }

  .kup-live-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px;
  }

  .kup-live-toolbar {
    display: block;
    padding: 18px;
  }

  .kup-live-status {
    margin-top: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .kup-generation-tab {
    min-width: 130px;
  }

  .kup-live-panel,
  .kup-live-all-groups {
    padding: 16px;
  }

  .kup-schedule-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .kup-schedule-row em {
    text-align: left;
    color: #fbc501;
  }

  .kup-schedule-row small {
    justify-self: start;
  }

  .kup-podium {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .kup-podium__place,
  .kup-podium__place.gold {
    min-height: 120px;
  }
}

/* =========================================
   ATLETIKO KUP STRANICA - V2 REDIZAJN
========================================= */
.kup-page-v2{
  background:radial-gradient(circle at 22% 0%,rgba(251,197,1,.08),transparent 25%),#050505;
}
.kup-v2-hero{padding:34px 0 14px;border-bottom:1px solid rgba(255,255,255,.08);}
.kup-v2-hero__top{display:grid;grid-template-columns:minmax(0,1fr) 440px;gap:38px;align-items:start;}
.kup-v2-eyebrow,.kup-v2-label{display:block;margin:0 0 10px;color:#fbc501;font-family:'Barlow Condensed',Arial,sans-serif;font-size:17px;line-height:1;font-weight:800;letter-spacing:.8px;text-transform:uppercase;}
.kup-v2-hero h1{margin:0;color:#fff;font-family:'Anton',sans-serif;font-size:clamp(54px,6vw,88px);line-height:.92;font-weight:400;letter-spacing:.6px;text-transform:uppercase;}
.kup-v2-hero h1 span{color:#fbc501;}
.kup-v2-hero p{max-width:620px;margin:14px 0 0;color:rgba(255,255,255,.80);font-family:'Barlow Condensed',Arial,sans-serif;font-size:23px;line-height:1.18;}
.kup-v2-stats{display:grid;grid-template-columns:repeat(4,1fr);padding:18px;border:1px solid rgba(255,255,255,.15);background:radial-gradient(circle at top right,rgba(251,197,1,.10),transparent 34%),rgba(10,10,10,.70);box-shadow:0 16px 38px rgba(0,0,0,.28);}
.kup-v2-stats div{min-height:78px;display:grid;place-items:center;text-align:center;border-right:1px solid rgba(255,255,255,.08);}
.kup-v2-stats div:last-child{border-right:0;}
.kup-v2-stats strong{color:#fbc501;font-family:'Anton',sans-serif;font-size:32px;font-weight:400;line-height:1;}
.kup-v2-stats span{color:rgba(255,255,255,.85);font-family:'Barlow Condensed',Arial,sans-serif;font-size:16px;font-weight:700;text-transform:uppercase;}
.kup-v2-tabs-wrap{display:flex;justify-content:space-between;align-items:end;gap:22px;margin-top:28px;}
.kup-page-v2 .kup-generation-tabs{margin-top:0;padding:0;border:0;background:transparent;display:flex;gap:12px;overflow-x:auto;}
.kup-page-v2 .kup-generation-tab{min-width:92px;min-height:44px;border:1px solid rgba(255,255,255,.18);background:rgba(0,0,0,.62);color:#fff;font-family:'Barlow Condensed',Arial,sans-serif;font-size:19px;font-weight:700;cursor:pointer;text-transform:uppercase;}
.kup-page-v2 .kup-generation-tab.active,.kup-page-v2 .kup-generation-tab:hover{background:#fbc501;color:#050505;border-color:#fbc501;}
.kup-page-v2 .kup-live-status{flex:0 0 auto;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);color:rgba(255,255,255,.82);}
.kup-v2-content{padding:18px 0 66px;}
.kup-page-v2 .kup-live-panel,.kup-page-v2 .kup-live-all-groups{margin-bottom:18px;border:1px solid rgba(255,255,255,.14);background:radial-gradient(circle at top right,rgba(251,197,1,.06),transparent 30%),linear-gradient(180deg,rgba(255,255,255,.024),rgba(255,255,255,.010)),#090909;box-shadow:0 16px 38px rgba(0,0,0,.25);}
.kup-v2-winners-panel{background:linear-gradient(180deg,rgba(0,0,0,.50),rgba(0,0,0,.76)),url('../images/atletiko-kup-bg.jpg') center center/cover no-repeat!important;}
.kup-page-v2 .kup-panel-head h3{font-size:clamp(27px,3vw,36px);}
.kup-page-v2 .kup-panel-head h3::after{width:76px;}
.kup-page-v2 .kup-podium{min-height:242px;display:grid;grid-template-columns:1fr 1.12fr 1fr;align-items:end;gap:42px;padding:24px 36px 0;}
.kup-page-v2 .kup-podium__place{border-radius:0;min-height:150px;border:1px solid rgba(255,255,255,.20);background:rgba(255,255,255,.07);}
.kup-page-v2 .kup-podium__place.gold{min-height:205px;border-color:rgba(251,197,1,.78);background:radial-gradient(circle at center 22%,rgba(251,197,1,.28),transparent 56%),rgba(251,197,1,.13);}
.kup-page-v2 .kup-podium__place strong{font-size:clamp(24px,3vw,34px);}
.kup-page-v2 .kup-knockout-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.kup-page-v2 .kup-all-groups-grid,.kup-page-v2 .kup-all-groups-grid--one-column{display:grid!important;grid-template-columns:1fr!important;gap:16px!important;}
.kup-page-v2 .kup-group-card{display:grid;grid-template-columns:180px minmax(0,1fr);gap:18px;align-items:start;padding:16px;border:1px solid rgba(251,197,1,.34);background:radial-gradient(circle at bottom right,rgba(251,197,1,.08),transparent 28%),rgba(0,0,0,.30);}
.kup-page-v2 .kup-group-card h4{margin:0;padding-right:16px;border-right:1px solid rgba(255,255,255,.10);min-height:100%;font-size:26px;}
.kup-page-v2 .kup-group-card .kup-table-wrap{min-width:0;}
.kup-page-v2 .kup-table{min-width:680px;}
.kup-page-v2 .kup-table th,.kup-page-v2 .kup-table td{padding:11px 10px;}
.kup-v2-schedule-panel .kup-schedule-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px;}
.kup-v2-footnote{margin:18px 0 0;color:rgba(255,255,255,.55);font-family:'Barlow Condensed',Arial,sans-serif;font-size:17px;text-align:center;}
@media(max-width:1100px){
  .kup-v2-hero__top{grid-template-columns:1fr;}
  .kup-page-v2 .kup-knockout-list,.kup-v2-schedule-panel .kup-schedule-list{grid-template-columns:1fr;}
  .kup-page-v2 .kup-podium{gap:18px;padding-left:0;padding-right:0;}
}
@media(max-width:780px){
  .kup-v2-hero{padding-top:22px;}
  .kup-v2-stats{grid-template-columns:repeat(2,1fr);}
  .kup-v2-tabs-wrap{display:block;}
  .kup-page-v2 .kup-live-status{margin-top:14px;}
  .kup-page-v2 .kup-podium{grid-template-columns:1fr;}
  .kup-page-v2 .kup-podium__place,.kup-page-v2 .kup-podium__place.gold{min-height:140px;}
  .kup-page-v2 .kup-group-card{grid-template-columns:1fr;}
  .kup-page-v2 .kup-group-card h4{border-right:0;border-bottom:1px solid rgba(255,255,255,.10);padding-right:0;padding-bottom:10px;}
}


/* =========================================
   ATLETIKO KUP V3 - ARHIVA PRIKAZ KAO U TAURI ARHIVI
========================================= */
.kup-page-v3 {
  background:
    radial-gradient(circle at 22% 0%, rgba(251,197,1,.08), transparent 25%),
    #050505;
}

.kup-page-v3 .kup-v2-hero {
  padding: 34px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kup-v3-archive-bar {
  margin-top: 26px;
}

.kup-season-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.kup-season-tab {
  min-width: 108px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.62);
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.kup-season-tab.active,
.kup-season-tab:hover {
  background: #fbc501;
  color: #050505;
  border-color: #fbc501;
}

.kup-archive-style-section {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at top right, rgba(251,197,1,.06), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.010)),
    #090909;
  box-shadow: 0 16px 38px rgba(0,0,0,.25);
}

.kup-archive-title h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.kup-archive-title h2::after {
  content: '';
  display: inline-block;
  width: 76px;
  height: 3px;
  margin-left: 14px;
  vertical-align: middle;
  background: #fbc501;
}

.kup-archive-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.kup-archive-group-card,
.kup-archive-round-card,
.kup-archive-bracket-match {
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at bottom right, rgba(251,197,1,.08), transparent 26%),
    rgba(0,0,0,.32);
}

.kup-archive-group-card {
  padding: 18px;
}

.kup-archive-group-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.kup-archive-group-head span {
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.kup-archive-group-head small {
  color: rgba(255,255,255,.70);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.kup-archive-subtitle {
  margin: 16px 0 10px;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.kup-archive-table {
  min-width: 760px;
}

.kup-archive-rounds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.kup-archive-round-card {
  padding: 14px;
}

.kup-archive-round-title {
  margin-bottom: 10px;
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.kup-archive-match {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.kup-archive-match:last-child {
  margin-bottom: 0;
}

.kup-archive-match-meta {
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.kup-archive-match-teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.kup-archive-team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.kup-archive-team.right {
  justify-content: flex-end;
  text-align: right;
}

.kup-archive-team.left {
  justify-content: flex-start;
  text-align: left;
}

.kup-archive-score {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #fbc501;
  background: #050505;
  border: 1px solid rgba(251,197,1,.35);
  font-family: 'Anton', sans-serif;
  font-size: 23px;
  line-height: 1;
}

.kup-archive-pen {
  margin-top: 8px;
  color: #ffcf6b;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  text-align: center;
}

.kup-archive-bracket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.kup-archive-bracket-match {
  padding: 14px;
}

.kup-archive-bracket-match.final-match {
  border-color: rgba(251,197,1,.72);
  box-shadow: inset 0 0 0 1px rgba(251,197,1,.10);
}

.kup-archive-bracket-title {
  margin-bottom: 10px;
  color: #fbc501;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.kup-archive-bracket-title small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.60);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.kup-logo-placeholder,
.kup-team-cell img,
.kup-archive-team img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: cover;
  border: 1px solid rgba(251,197,1,.45);
  background: #000;
}

.kup-logo-placeholder {
  display: inline-grid;
  place-items: center;
  color: #fbc501;
  font-size: 11px;
  font-weight: 800;
}

.kup-table .positive { color: #00ff66; }
.kup-table .negative { color: #ff4444; }
.kup-table .points { color: #fbc501; font-weight: 900; }

.kup-empty-state,
.kup-loading-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: #090909;
}

.kup-loading-card__spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,.16);
  border-top-color: #fbc501;
  border-radius: 50%;
  animation: kupSpin 1s linear infinite;
  margin-bottom: 14px;
}

@keyframes kupSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .kup-archive-rounds,
  .kup-archive-bracket-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .kup-archive-style-section {
    padding: 16px;
  }

  .kup-archive-match-teams {
    grid-template-columns: 1fr;
  }

  .kup-archive-team.right,
  .kup-archive-team.left {
    justify-content: center;
    text-align: center;
  }
}


/* Fix podium graphics + elimination layout */
.kup-v2-winners {
  padding: 26px 0 10px;
}

.kup-v2-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.kup-v2-section-head h2 {
  margin: 0;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .95;
}

.kup-v2-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
}

.kup-v2-podium-card {
  position: relative;
  min-height: 170px;
  padding: 26px 18px 22px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at top center, rgba(251,197,1,.16), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    #090909;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.kup-v2-podium-card.gold {
  min-height: 198px;
  border-color: rgba(251,197,1,.55);
  box-shadow: 0 0 0 1px rgba(251,197,1,.10), inset 0 0 50px rgba(251,197,1,.05);
}

.kup-v2-podium-card.silver,
.kup-v2-podium-card.bronze {
  transform: translateY(10px);
}

.kup-v2-trophy {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.kup-v2-medal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
  color: #050505;
  background: #fbc501;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.kup-v2-podium-card.silver .kup-v2-medal {
  background: linear-gradient(180deg, #f3f3f3, #9fa4ad);
}

.kup-v2-podium-card.bronze .kup-v2-medal {
  background: linear-gradient(180deg, #e4a66b, #a55c2b);
}

.kup-v2-podium-card strong {
  display: block;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 8px;
}

.kup-v2-podium-card span {
  color: rgba(255,255,255,.78);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}

.kup-archive-elimination-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kup-archive-phase--single .kup-archive-bracket-grid,
.kup-archive-bracket-grid--single {
  grid-template-columns: 1fr;
}

.kup-archive-subtitle--phase {
  margin-top: 0;
}

.third-place-match,
.final-match {
  width: 100%;
}

@media (max-width: 860px) {
  .kup-v2-podium {
    grid-template-columns: 1fr;
  }

  .kup-v2-podium-card.silver,
  .kup-v2-podium-card.bronze {
    transform: none;
  }
}


/* Elimination + podium visual refinements */
.kup-v2-winners {
  position: relative;
  overflow: hidden;
}

.kup-v2-winners::before {
  content: '';
  position: absolute;
  inset: 12px auto 12px 50%;
  width: 320px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='none' stroke='%23fbc501' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' opacity='.22' d='M72 40h112v26c0 31.1-25.4 56-56.8 56H128c-31.4 0-56-24.9-56-56V40Zm0 16H40c0 26.5 15.6 48 44 56m100-56h32c0 26.5-15.6 48-44 56M104 122v28l-24 34h96l-24-34v-28m-52 62h56v28H100z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.kup-v2-winners > * {
  position: relative;
  z-index: 1;
}

.kup-archive-phase--single .kup-archive-subtitle--phase {
  text-align: center;
}


/* Kup archive fixes: podium image background + tie-break explanations */
.kup-v2-winners {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.84)),
    url('../images/academy/academy-cta-banner.png') center center / cover no-repeat !important;
}

.kup-v2-winners::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(251,197,1,.16), transparent 44%);
  pointer-events: none;
}

.kup-v2-winners > * {
  position: relative;
  z-index: 1;
}

.kup-tie-breakers {
  display: grid;
  gap: 10px;
  margin: 14px 0 4px;
}

.kup-tie-breaker-info {
  padding: 12px 14px;
  border-left: 3px solid #fbc501;
  border: 1px solid rgba(251,197,1,.22);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.55;
}

.kup-tie-breaker-info strong {
  color: #fff;
}

.kup-tie-breaker-info--warning {
  border-left-color: #ff8a00;
  border-color: rgba(255,138,0,.28);
}


/* FINAL FIX: postolje koristi istu pozadinsku sliku kao .atletiko-kup-banner__bg */
.kup-v2-winners {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.82)),
    url('../images/atletiko-kup-bg.webp') center center / cover no-repeat,
    url('../images/atletiko-kup-bg.jpg') center center / cover no-repeat !important;
}

.kup-v2-winners::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(251,197,1,.13), transparent 44%),
    linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.18), rgba(0,0,0,.55));
  pointer-events: none;
}

.kup-v2-winners > * {
  position: relative;
  z-index: 1;
}


/* FINAL FIX: slika ide na hero sekciju, postolje ostaje bez slike */
.kup-page-v3 .kup-v2-hero,
.kup-v2-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.70), rgba(0,0,0,.86)),
    url('../images/atletiko-kup-bg.webp') center center / cover no-repeat,
    url('../images/atletiko-kup-bg.jpg') center center / cover no-repeat !important;
}

.kup-page-v3 .kup-v2-hero::before,
.kup-v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(251,197,1,.16), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.72));
  pointer-events: none;
  z-index: 0;
}

.kup-page-v3 .kup-v2-hero > .container,
.kup-v2-hero > .container {
  position: relative;
  z-index: 1;
}

.kup-v2-winners {
  background:
    radial-gradient(circle at center, rgba(251,197,1,.06), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.010)),
    #090909 !important;
}

.kup-v2-winners::before {
  display: none !important;
}


/* FINAL FIX: centriranje svih informacija u eliminacionoj fazi */
.kup-archive-bracket-match .kup-archive-bracket-title,
.kup-archive-bracket-title {
  text-align: center !important;
  color: #fbc501 !important;
}

.kup-archive-bracket-title small {
  display: block !important;
  margin-top: 7px !important;
  text-align: center !important;
  color: rgba(255,255,255,.72) !important;
}

.kup-archive-bracket-match .kup-archive-match-meta,
.kup-archive-match-meta {
  text-align: center !important;
  justify-content: center !important;
}

.kup-archive-bracket-match .kup-archive-match-teams {
  justify-content: center !important;
}

.kup-archive-bracket-match .kup-archive-pen {
  text-align: center !important;
}

.kup-archive-phase--single .kup-archive-subtitle--phase {
  display: none !important;
}

/* Utakmica za 3. mesto i Finale: žuti naslov ostaje jedini naslov i ide na sredinu */
.third-place-match .kup-archive-bracket-title,
.final-match .kup-archive-bracket-title {
  text-align: center !important;
  color: #fbc501 !important;
  font-size: 24px !important;
}

.third-place-match .kup-archive-bracket-title small,
.final-match .kup-archive-bracket-title small {
  text-align: center !important;
}

/* Da i polufinale/četvrtfinale kartice imaju sve podatke centrirane */
.kup-archive-bracket-match {
  text-align: center !important;
}

.kup-archive-bracket-match .kup-archive-team.right,
.kup-archive-bracket-match .kup-archive-team.left {
  justify-content: center !important;
  text-align: center !important;
}


/* =========================================================
   GLOBAL MOBILE RESPONSIVE OPTIMIZATION 3.6.0
   - keeps desktop design
   - fixes mobile overflow, grids, forms, hero sections and tables
========================================================= */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 32px));
}

@media (max-width: 1024px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .stats-real-grid,
  .training-cards,
  .academy-methods,
  .academy-coaches__grid,
  .academy-generations__grid,
  .history-timeline__grid,
  .history-highlights__grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .academy-info__grid,
  .academy-center__frame,
  .contact-card,
  .history-story__inner {
    grid-template-columns: 1fr !important;
  }

  .academy-center__media,
  .academy-center__content,
  .contact-card__left,
  .contact-card__right {
    min-width: 0;
  }

  .kup-v2-hero__top {
    grid-template-columns: 1fr !important;
  }

  .kup-v2-stats {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 22px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 58px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav.open,
  .main-nav {
    width: 100%;
  }

  .nav-menu {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .hero-main,
  .hero-main__content,
  .history-hero,
  .contact-hero,
  .academy-hero__stage {
    min-height: clamp(360px, 66vh, 560px) !important;
  }

  .hero-title,
  .history-hero h1,
  .contact-hero h1,
  .academy-hero h1,
  .kup-v2-hero h1 {
    font-size: clamp(42px, 13vw, 70px) !important;
    line-height: .95 !important;
  }

  .hero-text,
  .history-hero p,
  .contact-hero p,
  .academy-hero p,
  .kup-v2-hero p {
    font-size: clamp(18px, 5.2vw, 24px) !important;
    line-height: 1.2 !important;
  }

  .stats-real-grid,
  .training-cards,
  .academy-methods,
  .academy-coaches__grid,
  .academy-generations__grid,
  .history-timeline__grid,
  .history-highlights__grid,
  .gallery-grid,
  .kup-archive-rounds,
  .kup-archive-bracket-grid,
  .kup-v2-podium {
    grid-template-columns: 1fr !important;
  }

  .stat-real {
    min-height: 112px;
  }

  .training-card,
  .academy-coach-card,
  .academy-method-card,
  .academy-center__feature,
  .contact-info-item,
  .history-milestone {
    width: 100%;
  }

  .academy-coach-card__image img,
  .training-card__image-wrap img,
  .academy-center__image img {
    width: 100%;
    object-fit: cover;
  }

  .contact-card {
    padding: 18px !important;
  }

  .contact-form__row {
    grid-template-columns: 1fr !important;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .contact-form__button {
    width: 100%;
    font-size: 16px;
  }

  .contact-map-card iframe {
    min-height: 340px;
  }

  .kup-v2-tabs-wrap,
  .kup-v3-archive-bar {
    display: block !important;
  }

  .kup-season-tabs,
  .kup-generation-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .kup-season-tab,
  .kup-generation-tab {
    flex: 0 0 auto;
  }

  .kup-v2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .kup-archive-style-section,
  .kup-v2-section {
    padding: 16px !important;
  }

  .kup-archive-match-teams {
    grid-template-columns: 1fr !important;
  }

  .kup-archive-team.right,
  .kup-archive-team.left {
    justify-content: center !important;
    text-align: center !important;
  }

  .kup-archive-score {
    width: min(140px, 100%);
    margin-inline: auto;
  }

  .kup-table-wrap,
  .standings-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    max-width: 100%;
  }

  .footer-grid,
  .site-footer__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 18px);
  }

  .hero-main,
  .hero-main__content,
  .history-hero,
  .contact-hero,
  .academy-hero__stage {
    min-height: clamp(330px, 62vh, 500px) !important;
  }

  .hero-btn,
  .training-categories__all,
  .academy-cta__button,
  .contact-form__button {
    width: 100%;
    justify-content: center;
  }

  .kup-v2-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .kup-v2-stats div {
    min-height: 72px;
  }

  .kup-v2-podium-card {
    min-height: 140px !important;
  }
}

/* ACF image override support: inline background should cover cleanly */
.hero-main__bg[style],
.academy-hero__bg[style],
.history-hero__bg[style],
.contact-hero__bg[style] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}


/* =========================================================
   FULL SITE MOBILE RESPONSIVE FIX + BACK TO TOP 3.6.1
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  min-width: 0 !important;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

section,
main,
header,
footer,
.container {
  max-width: 100%;
}

.container {
  width: min(var(--max, 1180px), calc(100% - 32px)) !important;
  margin-left: auto;
  margin-right: auto;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251,197,1,.8);
  background: #fbc501;
  color: #050505;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  filter: brightness(1.05);
}

/* Prevent text/cards from forcing page width */
.site-header,
.site-footer,
.hero-main,
.academy-hero,
.history-hero,
.contact-hero,
.page-main,
.section-dark,
.wp-content,
.contact-card,
.academy-info__grid,
.academy-center__frame,
.history-story__inner,
.kup-archive-style-section,
.kup-archive-group-card,
.kup-archive-round-card,
.kup-archive-bracket-match {
  min-width: 0 !important;
}

/* Header/menu */
@media (max-width: 980px) {
  .site-header {
    position: relative;
    z-index: 1000;
  }

  .header-inner,
  .nav-wrap,
  .site-header .container {
    min-width: 0 !important;
  }

  .main-nav {
    min-width: 0 !important;
  }

  .nav-menu {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .container {
    width: calc(100% - 28px) !important;
  }

  .stats-real-grid,
  .training-cards,
  .academy-methods,
  .academy-coaches__grid,
  .academy-generations__grid,
  .history-timeline__grid,
  .history-highlights__grid,
  .gallery-grid,
  .site-footer__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .academy-info__grid,
  .academy-center__frame,
  .contact-card,
  .history-story__inner,
  .site-footer__top-inner {
    grid-template-columns: 1fr !important;
  }

  .academy-info__intro,
  .academy-info__methods,
  .academy-center__media,
  .academy-center__content,
  .contact-card__left,
  .contact-card__right,
  .history-story__title,
  .history-story__text {
    min-width: 0 !important;
    width: 100% !important;
  }

  .hero-main__content,
  .academy-hero__inner,
  .history-hero__inner,
  .contact-hero__inner {
    max-width: 100%;
  }
}

/* Phone */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 22px) !important;
  }

  body {
    font-size: 16px;
  }

  /* All hero sections */
  .hero-main,
  .history-hero,
  .contact-hero,
  .academy-hero__stage,
  .kup-v2-hero {
    min-height: 0 !important;
  }

  .hero-main,
  .history-hero,
  .contact-hero,
  .academy-hero__stage {
    height: auto !important;
    padding: 76px 0 46px !important;
  }

  .hero-main__content {
    min-height: clamp(280px, 52vh, 440px) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .history-hero__inner,
  .contact-hero__inner,
  .academy-hero__inner {
    min-height: clamp(240px, 46vh, 420px) !important;
    padding: 0 !important;
  }

  .hero-main__bg,
  .history-hero__bg,
  .contact-hero__bg,
  .academy-hero__bg {
    background-size: cover !important;
    background-position: center center !important;
  }

  .history-hero h1,
  .contact-hero h1,
  .academy-hero h1,
  .kup-v2-hero h1,
  .hero-title {
    font-size: clamp(38px, 12vw, 62px) !important;
    line-height: .96 !important;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .history-hero p,
  .contact-hero p,
  .academy-hero p,
  .kup-v2-hero p,
  .hero-text {
    font-size: clamp(17px, 4.8vw, 22px) !important;
    line-height: 1.22 !important;
    max-width: 100%;
  }

  /* Single-column sections */
  .stats-real-grid,
  .training-cards,
  .academy-methods,
  .academy-coaches__grid,
  .academy-generations__grid,
  .history-timeline__grid,
  .history-highlights__grid,
  .gallery-grid,
  .site-footer__contact-grid,
  .footer-grid,
  .site-footer__grid,
  .kup-archive-rounds,
  .kup-archive-bracket-grid,
  .kup-v2-podium {
    grid-template-columns: 1fr !important;
  }

  .stats-real-grid,
  .training-cards,
  .academy-methods,
  .academy-coaches__grid,
  .academy-generations__grid {
    gap: 14px !important;
  }

  .stat-real,
  .training-card,
  .academy-method-card,
  .academy-coach-card,
  .history-milestone,
  .contact-info-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .academy-info,
  .academy-generations,
  .academy-coaches,
  .academy-center,
  .academy-cta,
  .history-story,
  .history-timeline,
  .contact-section,
  .contact-map-section,
  .stats,
  .training-categories {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .academy-info__grid,
  .academy-center__frame,
  .contact-card,
  .history-story__inner {
    gap: 18px !important;
  }

  .contact-card,
  .academy-center__frame {
    padding: 16px !important;
  }

  .contact-form__row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .contact-form__button {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 16px !important;
  }

  .contact-map-card iframe {
    height: 360px !important;
    min-height: 360px !important;
  }

  .academy-center__features {
    grid-template-columns: 1fr !important;
  }

  .academy-cta__frame {
    min-height: 0 !important;
  }

  .academy-cta__image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .site-footer__top-inner,
  .site-footer__bottom-inner {
    text-align: center !important;
    gap: 18px !important;
  }

  .site-footer__contact-grid {
    gap: 12px !important;
  }

  .footer-contact-item {
    justify-content: center !important;
    text-align: center !important;
  }

  .site-footer__button {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Atletiko Kup mobile: no horizontal page overflow */
  .kup-page-v3 .kup-v2-hero,
  .kup-v2-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .kup-v2-hero__top,
  .kup-v2-tabs-wrap,
  .kup-v3-archive-bar {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .kup-v2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .kup-season-tabs,
  .kup-generation-tabs {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch;
  }

  .kup-season-tab,
  .kup-generation-tab {
    flex: 0 0 auto !important;
  }

  .kup-archive-style-section,
  .kup-v2-section,
  .kup-archive-group-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    overflow: hidden !important;
  }

  .kup-table-wrap,
  .standings-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .kup-table,
  .standings-table {
    min-width: 640px !important;
  }

  .kup-tie-breakers,
  .kup-tie-breaker-info {
    width: 100% !important;
    max-width: 100% !important;
  }

  .kup-tie-breaker-info {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .kup-archive-round-card,
  .kup-archive-bracket-match,
  .kup-archive-match {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .kup-archive-match-teams {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    justify-items: center !important;
    width: 100% !important;
  }

  .kup-archive-team,
  .kup-archive-team.right,
  .kup-archive-team.left {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .kup-archive-score {
    width: 110px !important;
    min-height: 42px !important;
    margin: 0 auto !important;
  }

  .kup-archive-match-meta,
  .kup-archive-bracket-title,
  .kup-archive-bracket-title small {
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 18px) !important;
  }

  .hero-main,
  .history-hero,
  .contact-hero,
  .academy-hero__stage {
    padding: 58px 0 38px !important;
  }

  .history-hero h1,
  .contact-hero h1,
  .academy-hero h1,
  .kup-v2-hero h1,
  .hero-title {
    font-size: clamp(34px, 13vw, 52px) !important;
  }

  .section-head h2,
  .training-categories__head h2,
  .academy-info__subtitle,
  .academy-coaches__head h2,
  .academy-center__title-row h2,
  .history-section-head h2,
  .contact-card h2,
  .contact-map-section h2,
  .kup-archive-title h2 {
    font-size: clamp(27px, 9vw, 40px) !important;
    line-height: 1 !important;
    overflow-wrap: break-word;
  }

  .kup-table,
  .standings-table {
    min-width: 560px !important;
  }

  .kup-v2-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

/* Ultra small screens */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 14px) !important;
  }

  .kup-table,
  .standings-table {
    min-width: 520px !important;
  }

  .kup-archive-style-section,
  .kup-v2-section,
  .kup-archive-group-card {
    padding: 10px !important;
  }
}


/* =========================================================
   Requested update 3.7.0: Kup filters, editable footer, call button, speed/mobile refinements
========================================================= */

.kup-active-cup-notice {
  margin-top: 22px;
}

.kup-active-cup-notice__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(251,197,1,.35);
  background: rgba(0,0,0,.56);
  color: rgba(255,255,255,.82);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.kup-active-cup-notice__inner strong {
  color: #fbc501;
  text-transform: uppercase;
}

.kup-generation-select {
  display: none;
  width: 100%;
  max-width: 360px;
  height: 48px;
  margin: 0 0 12px;
  padding: 0 14px;
  border: 1px solid rgba(251,197,1,.55);
  background: #fbc501;
  color: #050505;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-call-button {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9999;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(251,197,1,.85);
  background: #fbc501;
  color: #050505;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.floating-call-button:hover {
  color: #050505;
  filter: brightness(1.05);
}

.floating-call-button__icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .kup-active-cup-notice__inner {
    width: 100%;
    display: block;
    font-size: 16px;
  }

  .kup-active-cup-notice__inner span {
    display: block;
    margin-top: 4px;
  }

  .kup-generation-select {
    display: block;
  }

  .kup-generation-tabs {
    display: none !important;
  }

  .floating-call-button {
    left: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 13px;
    font-size: 16px;
  }

  .back-to-top {
    right: 14px !important;
    bottom: 68px !important;
  }
}

/* Mobile test fixes for 360/390/768 widths */
@media (max-width: 430px) {
  .site-footer__top,
  .site-footer__bottom,
  .academy-info,
  .academy-generations,
  .academy-coaches,
  .academy-center,
  .contact-section,
  .history-story,
  .training-categories,
  .why-atletiko {
    overflow-x: hidden;
  }

  .training-categories__head,
  .academy-coaches__head,
  .academy-center__title-row,
  .history-section-head,
  .kup-v2-section-head {
    gap: 8px;
  }

  .training-categories__head h2,
  .academy-coaches__head h2,
  .academy-center__title-row h2,
  .history-section-head h2,
  .kup-v2-section-head h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

/* Small performance improvement: prevent off-screen sections from costing paint where supported */
@supports (content-visibility: auto) {
  .training-categories,
  .why-atletiko,
  .atletiko-kup-banner,
  .academy-info,
  .academy-generations,
  .academy-coaches,
  .academy-center,
  .history-story,
  .history-timeline,
  .contact-section,
  .contact-map-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 620px;
  }
}


/* =========================================================
   RASPORED TRENINGA PAGE
   ========================================================= */

.training-page-v1 {
  background: #f5f5f5;
  color: #111;
}

.training-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,209,26,.25);
}

.training-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/atletiko-kup-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  opacity: .55;
}

.training-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(255,209,26,.24), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.88) 42%, rgba(0,0,0,.58) 72%, rgba(0,0,0,.72) 100%);
}

.training-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 36px;
  align-items: center;
  padding: 74px 0;
}

.training-eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .8px;
  font-size: 14px;
  margin: 0 0 12px;
}

.training-hero h1,
.training-admin-hero h1 {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(56px, 7vw, 94px);
  letter-spacing: .6px;
  line-height: .9;
  margin: 0 0 18px;
}

.training-hero__copy p:not(.training-eyebrow) {
  color: #fff;
  max-width: 720px;
  line-height: 1.45;
  font-size: 21px;
  font-weight: 600;
}

.training-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.training-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .5px;
  transition: .2s ease;
}

.training-btn:hover {
  transform: translateY(-2px);
}

.training-btn--primary {
  background: var(--yellow);
  color: #080808;
  border: 2px solid var(--yellow);
}

.training-btn--secondary {
  background: rgba(0,0,0,.35);
  color: #fff;
  border: 2px solid var(--yellow);
}

.training-week-card {
  min-height: 180px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  padding: 34px;
  background: rgba(0,0,0,.55);
  border: 2px solid rgba(255,209,26,.65);
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}

.training-week-card__icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,209,26,.75);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 40px;
  background: rgba(255,209,26,.08);
}

.training-week-card span {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 15px;
}

.training-week-card strong {
  display: block;
  margin-top: 8px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 34px;
  color: #fff;
  line-height: 1;
}

.training-week-card p {
  margin-top: 8px;
  color: #efefef;
  font-weight: 700;
}

.training-status-strip {
  padding: 22px 0 0;
  background: #f5f5f5;
}

.training-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.training-status-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.training-status-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
}

.training-status-card--active .training-status-card__icon { background: #2dae59; }
.training-status-card--cancelled .training-status-card__icon { background: #dc2f3a; }
.training-status-card--changed .training-status-card__icon { background: #f0a000; }

.training-status-card strong {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  color: #111;
  margin-bottom: 6px;
}

.training-status-card--active strong { color: #2dae59; }
.training-status-card--cancelled strong { color: #dc2f3a; }
.training-status-card--changed strong { color: #f0a000; }

.training-status-card p {
  color: #333;
  line-height: 1.35;
  font-size: 16px;
}

.training-schedule-section {
  padding: 24px 0 50px;
  background: #f5f5f5;
}

.training-schedule-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 26px 18px 18px;
  box-shadow: 0 14px 50px rgba(0,0,0,.10);
}

.training-schedule-card__head {
  text-align: center;
  margin-bottom: 18px;
}

.training-schedule-card__head h2 {
  color: #111;
  font-size: clamp(30px, 4vw, 46px);
  font-family: 'Anton', Impact, sans-serif;
  letter-spacing: .4px;
}

.training-schedule-card__head .training-eyebrow {
  margin-bottom: 8px;
}

.training-schedule-card__head span {
  display: block;
  width: 74px;
  height: 3px;
  background: var(--yellow);
  margin: 12px auto 0;
}

/* Override Atletiko Treninzi plugin on public page */
.training-schedule-wrapper .atletiko-treninzi-public {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  color: #111;
  box-shadow: none;
}

.training-schedule-wrapper .atletiko-treninzi-public > .at-tr-header {
  display: none;
}

.training-schedule-wrapper .at-tr-days {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

.training-schedule-wrapper .at-tr-day {
  background: #fff !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 8px !important;
  overflow: hidden;
  min-height: 0 !important;
  box-shadow: none;
}

.training-schedule-wrapper .at-tr-day-title {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8 !important;
  color: #111 !important;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 16px !important;
  font-size: 18px !important;
  letter-spacing: .2px;
  font-weight: 900 !important;
}

.training-schedule-wrapper .at-tr-day-title::before {
  content: '▣';
  color: var(--yellow);
  font-size: 16px;
}

.training-schedule-wrapper .at-tr-list {
  padding: 0 16px !important;
  gap: 0 !important;
}

.training-schedule-wrapper .at-tr-item {
  display: grid !important;
  grid-template-columns: 1.05fr 1.1fr 1.05fr auto 1.25fr;
  gap: 16px;
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #eeeeee !important;
  color: #111 !important;
}

.training-schedule-wrapper .at-tr-item:last-child {
  border-bottom: 0 !important;
}

.training-schedule-wrapper .at-tr-item-top {
  display: contents !important;
}

.training-schedule-wrapper .at-tr-gen {
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.training-schedule-wrapper .at-tr-time {
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.training-schedule-wrapper .at-tr-meta {
  color: #333 !important;
  font-size: 16px !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.training-schedule-wrapper .at-tr-status {
  margin: 0 !important;
  justify-self: start;
  min-width: 96px;
  text-align: center;
  border: 1px solid currentColor;
  background: transparent !important;
  font-size: 13px !important;
  padding: 4px 12px !important;
}

.training-schedule-wrapper .at-tr-status.active {
  color: #269a4b !important;
  background: rgba(38,154,75,.09) !important;
}

.training-schedule-wrapper .at-tr-status.cancelled {
  color: #d62c36 !important;
  background: rgba(214,44,54,.09) !important;
}

.training-schedule-wrapper .at-tr-status.changed {
  color: #ee8a00 !important;
  background: rgba(238,138,0,.10) !important;
}

.training-schedule-wrapper .at-tr-empty {
  color: #777 !important;
  padding: 14px 0 !important;
  font-size: 16px !important;
}

.training-schedule-wrapper .at-tr-error {
  color: #b00020 !important;
  background: rgba(176,0,32,.08) !important;
  border-color: rgba(176,0,32,.25) !important;
}

.training-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  background: linear-gradient(90deg, #fff8d6 0%, #fffdf1 100%);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  padding: 20px;
  color: #111;
}

.training-note__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 900;
}

.training-note p {
  color: #111;
  line-height: 1.4;
  font-size: 17px;
}

.training-plugin-warning {
  padding: 18px;
  border: 1px solid rgba(220,47,58,.35);
  background: rgba(220,47,58,.08);
  color: #111;
  border-radius: 12px;
}

.training-admin-hero {
  padding: 76px 0 34px;
  border-bottom: 1px solid rgba(255,209,26,.2);
}

.training-admin-hero p {
  margin-top: 12px;
  color: #ddd;
  font-size: 20px;
}

.training-admin-section {
  background: #050505;
  padding: 28px 0 50px;
}

@media (max-width: 980px) {
  .training-hero__inner {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .training-status-grid {
    grid-template-columns: 1fr;
  }

  .training-week-card {
    max-width: 520px;
  }

  .training-schedule-wrapper .at-tr-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .training-schedule-wrapper .at-tr-item-top {
    display: flex !important;
  }

  .training-schedule-wrapper .at-tr-status {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .training-hero {
    min-height: auto;
  }

  .training-hero h1,
  .training-admin-hero h1 {
    font-size: 50px;
  }

  .training-hero__copy p:not(.training-eyebrow) {
    font-size: 18px;
  }

  .training-hero__actions,
  .training-btn {
    width: 100%;
  }

  .training-week-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .training-week-card__icon {
    margin: 0 auto;
  }

  .training-status-card {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .training-status-card__icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .training-schedule-card {
    padding: 18px 12px 12px;
  }

  .training-note {
    grid-template-columns: 1fr;
  }
}
