/* =========================
   GLOBAL
   ========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
  color: #0b1f3a;
}

/* =========================
   HEADER
   ========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(11, 31, 58, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* ko scrollaš */
.header.scrolled {
  background: rgba(11, 31, 58, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  background: #ffffff;           /* bela podlaga */
  padding: 6px 8px;              /* “luft” okoli grba */
  border-radius: 10px;           /* mehki robovi */
  }

.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* hover underline */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f5c842;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* =========================
   MENU + DROPDOWN
   ========================= */

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu a:hover {
  text-decoration: underline;
}

.menu-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.menu-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.menu-dropdown .arrow {
  font-size: 10px;
  opacity: 0.7;
}

.menu-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b1620;
  min-width: 180px;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 1000;
}

.menu-dropdown:hover .dropdown {
  display: block;
}

.menu-dropdown .dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
}

.menu-dropdown .dropdown a:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================
   CTA
   ========================= */

.cta {
  background: #f5c400;
  color: #0b1f3a;
  padding: 8px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  background: url('/NKZ/slike/hero.jpg') center/cover no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.75);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 0;
  text-align: center;
}

.hero-title {
  text-transform: uppercase;
  font-size: 65px;
  font-weight: 800;
  color: #ffffff;
  margin-top: -18px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #e9eef5;

  margin-top: -24px;    /* ⬅️ DVIŽE GOR */
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;

  text-shadow:
    0 6px 20px rgba(0,0,0,0.45),
    0 2px 6px rgba(0,0,0,0.6);
}

/* rumena klubska linija */
.hero h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: #f5c400;
  border-radius: 3px;
}


/* =========================
   GUMB – LESTVICA
   ========================= */

.lestvica-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b1f3a;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.lestvica-btn:hover {
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* =========================
   HERO – SPONZORJI
   ========================= */

.hero-sponsor-title {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

.hero-sponsor {
  width: 260px;          /* FIXNA širina */
  height: 110px;         /* FIXNA višina */

  background: #ffffff;
  border-radius: 14px;
  border: 2px solid #f5c400;

  padding: 12px 14px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  overflow: hidden;      /* ZELO POMEMBNO */
}

.hero-sponsor-card {
  width: 360px;        /* FIXNA širina */
  height: 90px;        /* FIXNA višina */

  background: #ffffff;
  border-radius: 14px;
  padding: 14px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;    /* zelo pomembno */
}
.hero-sponsor-card strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-sponsor-card strong,
.hero-sponsor-card span {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.hero-sponsor-card span {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 4px;
}


.hero-sponsor-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 3px;
  height: 100%;
  padding: 4px 0;
}

.hero-sponsor-logo {
  max-height: 38px;   /* znižaj */
  margin-bottom: 2px;
}

.hero-sponsor-name {
  font-size: 12px;          /* prej večje */
  font-weight: 700;
  line-height: 1.15;

  display: -webkit-box;
  -webkit-line-clamp: 2;    /* MAX 2 VRSTICI */
  -webkit-box-orient: vertical;
  overflow: hidden;

  text-align: center;
}


.hero-sponsor-text {
  font-size: 10.5px;
  line-height: 1.2;
  opacity: 0.85;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  text-align: center;
}


/* =========================
   SECTIONS
   ========================= */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 24px;
}

.section h2 {
  margin: 50px 0 20px;
  font-size: 22px;
  border-bottom: 2px solid #e5e9f0;
  padding-bottom: 8px;
}

/* =========================
   SELEKCIJE
   ========================= */

.selekcije-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.selekcija-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.selekcija-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.selekcija-content {
  padding: 12px;
  text-align: center;
}

.selekcija-content h3 {
  font-size: 16px;      /* prej večje */
  font-weight: 700;
  margin: 6px 0 2px;
}
.selekcija-content p {
  text-align: left;          /* ⬅️ KLJUČ */
  font-size: 13px;
  line-height: 1.45;
  margin: 3px 0;
  color: #0b1f3a;

  padding-left: 10px;        /* lep odmik od roba */
}

/* oznake (Trener:, Pomočnik:, Kontakt:) */
.selekcija-content p strong {
  font-weight: 600;
}

.selekcija-content em {
  font-size: 12px;
  color: #7a8794;
  font-style: normal;  /* brez italika */
  margin-bottom: 8px;
  display: block;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  background: #0b1620;
  color: #cfd8e3;
  padding: 50px 20px 20px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

  .hero-title {
    font-size: 38px;
  line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .lestvica-btn {
    font-size: 16px;
    padding: 16px 24px;
  }

  .hero-sponsor {
    width: 220px;
    height: 95px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
  .hero-sponsor-name {
    font-size: 11px;
  }

  .hero-sponsor-text {
    font-size: 10px;
  }
}
/* MOBILNO – SELEKCIJE POPRAVEK */
@media (max-width: 700px) {

  .selekcije-grid {
    grid-template-columns: 1fr; /* 1 kartica v vrstici */
  }

  .selekcija-card img {
    height: 160px;   /* več prostora za sliko */
  }
}

/* =========================
   NOVICE – FIX (PC + MOBILE)
   ========================= */

.novice-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.novica-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.novica-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* slika */
.novica-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* vsebina */
.novica-content {
  padding: 14px 16px;
}

.novica-content h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.novica-content small {
  font-size: 12px;
  opacity: 0.7;
}
/* =========================
   FOOTER – GRB FIX (GLOBAL)
   ========================= */

.footer-brand img {
  width: 40px !important;
  height: auto;
}

/* =========================
   FOOTER – SOCIAL IKONE FIX
   ========================= */

.footer-social a {
  width: 32px !important;
  height: 32px !important;
}

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

/* =========================
   FOOTER – BRAND
   ========================= */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 36px;
  height: auto;
}

.footer-brand strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-brand span {
  font-size: 13px;
  opacity: 0.75;
}
/* =========================
   FOOTER – BOTTOM
   ========================= */

.footer-bottom {
  margin-top: 50px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
}
/* OZADJE Z GRBOM – SELEKCIJE + NOVICE */

.section-bg-grb {
  position: relative;
  background-color: #f5f7fa;
  overflow: hidden;
  min-height: 700px;
}

.section-bg-grb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../slike/grb.png'); /* ⬅️ PRAVILNA POT */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1400px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* vsebina nad grbom */
.section-bg-grb > .section {
  position: relative;
  z-index: 1;
}

/* =========================
   MENU TOGGLE – DESKTOP vs MOBILE
   ========================= */

/* privzeto skrij hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
}

/* mobilno – prikaži hamburger */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: 70px;
    right: 24px;
    background: #0b1f3a;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  }
}

/* =========================
   SPONZORJI – GRID + KARTICE
   ========================= */

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 260px); /* FIXNA širina */
  gap: 24px;
  justify-content: center;
}

.sponsor-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 20px;

  height: 220px;                /* FIXNA višina */
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* LOGO */
.sponsor-card img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* IME */
.sponsor-card h3 {
  font-size: 9px;
  font-weight: 600;
  margin: 6px 0 4px;

  display: -webkit-box;
  -webkit-line-clamp: 2;        /* MAX 2 VRSTICI */
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* OPIS */
.sponsor-card p {
  font-size: 13px;
  color: #5b6a79;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2;        /* MAX 2 VRSTICI */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* MOBILNO */
@media (max-width: 700px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .sponsor-card {
    height: 200px;
    padding: 22px 16px;
  }
}

/* =========================
   KONTAKT – KARTICE
   ========================= */

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.kontakt-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.kontakt-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.kontakt-card p,
.kontakt-card a {
  font-size: 14px;
  color: #4a5a6a;
  line-height: 1.6;
}

.kontakt-card a {
  text-decoration: underline;
}

/* MOBILNO */
@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   KONTAKT – OBLIKOVNI FIX
   (brez posega v HTML)
   ========================= */

#kontakt,
.kontakt,
.kontakt-section {
  max-width: 1200px;
  margin: auto;
}

/* vsi neposredni bloki v kontaktu → kartice */
 
  margin-bottom: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* naslovi */
#kontakt h2,
.kontakt h2 {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 30px;
}

#kontakt h3,
.kontakt h3 {
  margin-top: 0;
  font-size: 16px;
  color: #0b1f3a;
}

/* linki */
#kontakt a,
.kontakt a {
  color: #0b1f3a;
  font-weight: 600;
  text-decoration: underline;
}

/* telefon / email lepši razmik */
#kontakt p,
.kontakt p {
  line-height: 1.6;
  color: #4a5a6a;
}

/* =========================
   KONTAKT – GRID NA PC
   ========================= */

@media (min-width: 900px) {
  #kontakt,
  .kontakt,
  .kontakt-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  #kontakt h2,
  .kontakt h2 {
    grid-column: 1 / -1;
  }
}

/* =========================
   MOBILNO
   ========================= */

@media (max-width: 900px) {
  #kontakt > *,
  .kontakt > *,
  .kontakt-section > * {
    text-align: center;
  }
}
/* =========================
   O KLUBU – PLOŠČICE (CSS ONLY)
   ========================= */


/* vsak večji vsebinski blok → kartica */

/* naslovi ostanejo "čisti" */
.o-klubu h1,
.o-klubu h2,
#o-klubu h1,
#o-klubu h2 {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}

/* tekst */
.o-klubu p,
#o-klubu p {
  color: #4a5a6a;
  line-height: 1.7;
}

/* =========================
   PODATKI O KLUBU (če imaš sezname ali tabele)
   ========================= */

.o-klubu table,
#o-klubu table {
  width: 100%;
  border-collapse: collapse;
}

.o-klubu table td,
#o-klubu table td {
  padding: 12px 18px;
  border-bottom: 1px solid #e6e9ee;
  font-size: 14px;
}

.o-klubu table tr:last-child td {
  border-bottom: none;
}

/* =========================
   GRID NA DESKTOPU (če je več sklopov)
   ========================= */

  /* glavni naslov čez celo širino */
  .o-klubu h1,
  #o-klubu h1 {
    grid-column: 1 / -1;
  }
}

/* =========================
   MOBILNO
   ========================= */

@media (max-width: 900px) {
  .o-klubu > *,
  #o-klubu > * {
    padding: 24px 20px;
  }
}

/* =========================
   O KLUBU – LAYOUT PLOŠČIC
   ========================= */

.o-klubu,
#o-klubu {
  max-width: 1200px;
  margin: auto;
  gap: 32px;
}

/* vsak večji vsebinski blok postane ploščica */
.o-klubu > *,
#o-klubu > * {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* glavni naslov čez celo širino */
.o-klubu h1,
#o-klubu h1 {
  grid-column: 1 / -1;
}

/* mobilno */
@media (max-width: 900px) {
  .o-klubu,
  #o-klubu {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PODSTRANI – STAR STIL (ENAK KOT PREJ)
   o-klubu, zgodovina, kontakt, sponzorji, vpis, donacije
   ========================= */

.page-content {
  max-width: 1000px;
  margin: 60px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* naslovi */
.page-content h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.page-content h2 {
  font-size: 20px;
  margin: 30px 0 15px;
}

/* tekst */
.page-content p,
.page-content li {
  color: #4a5a6a;
  line-height: 1.7;
  font-size: 15px;
}

/* tabele */
.page-content table {
  width: 100%;
  border-collapse: collapse;
}

.page-content td {
  padding: 12px 16px;
  border-bottom: 1px solid #e6e9ee;
}

/* mobile */
@media (max-width: 700px) {
  .page-content {
    padding: 26px 22px;
    margin: 40px 16px;
  }
}

/* O KLUBU – Trenerji po selekcijah (fix) */
.page-content ul li {
  font-weight: 700;
  color: #0b1f3a;
}

/* =========================
   ZGODOVINA – ČASOVNICA
   ========================= */

.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 40px;
  border-left: 3px solid #e5e9f0;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 10px;
}

/* krog ob črti */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -51px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #0b1f3a;
  border-radius: 50%;
}

/* leto */
.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #0b1f3a;
}

/* opis */
.timeline-item p {
  margin: 0;
  color: #4a5a6a;
  line-height: 1.6;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 700px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline-item::before {
    left: -43px;
  }
}

/* O KLUBU – Trenerji po selekcijah (TABELA) */
.page-content table td {
  padding: 14px 18px;
  font-size: 15px;
}

/* =========================
   O KLUBU – vizualna nadgradnja (STABILNO)
   ========================= */

/* splošni layout strani */
.page-content {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 36px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  color: #0b1f3a;
}

/* naslovi */
.page-content h1 {
  font-size: 30px;
  margin-bottom: 24px;
}

.page-content h2,
.page-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 16px;
  position: relative;
  padding-left: 14px;
}

.page-content h2::before,
.page-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 70%;
  background: #f5c400;
  border-radius: 2px;
}

/* besedilo */
.page-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a5a6a;
  margin-bottom: 14px;
}

/* poudarjeni bloki (če jih uporabljaš) */
.page-content .highlight {
  background: #f5f7fa;
  border-left: 4px solid #f5c400;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #0b1f3a;
  margin: 26px 0;
}

/* =========================
   Trenerji po selekcijah – TABELA
   ========================= */

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.page-content table tr {
  border-bottom: 1px solid #e6ebf0;
}

.page-content table td {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;      /* ⬅️ ODEBELJENO */
  color: #0b1f3a;
}


oprema
 _______________________________________________

.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row select {
  width: 100%;
  max-width: 420px;
  padding: 8px 10px;
  font-size: 15px;
}


