
/* index.html*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #1c2440; /* lighter theme */
  color: #f5f6fa;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 48px;
  width: auto;
  display: block;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: 0.9;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

/* CONTENT WRAPPER */

main {
  padding: 32px 0 48px;
}

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180, 190, 210, 0.5);
  padding: 24px 20px 28px;
  box-shadow: 0 14px 28px rgba(20, 30, 50, 0.5);
}

/* LIGE */

.league-section {
  margin-top: 32px;
}

.league-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.league-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.competition-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.competition-links a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(180, 190, 210, 0.7);
  text-transform: lowercase;
  background: rgba(42, 53, 85, 0.4);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.competition-links a.highlight {
  border-color: #f97316;
  color: #f97316;
}

.competition-links a.is-active {
  background: #f97316;
  border-color: #f97316;
  color: #1c2440;
}

.competition-links a:hover {
  background: #f97316;
  border-color: #f97316;
  color: #1c2440;
}

.league-card {
  border-radius: 12px;
  border: 1px solid rgba(180, 190, 210, 0.25);
  padding: 12px 12px 14px;
  background: #1c2440;
  display: none;
}

.league-card.active {
  display: block;
}

.league-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f97316;
  margin-bottom: 8px;
}

/* TABLES */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

thead {
  background: #2a3555;
}

thead th {
  padding: 6px 4px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(180, 190, 210, 0.5);
}

tbody td {
  padding: 5px 4px;
  border-bottom: 1px solid rgba(60, 75, 110, 0.7);
  text-align: center;
  white-space: nowrap;
}

tbody td.team-name {
  text-align: left;
  white-space: normal;
}

/* RESULTS & SCHEDULE LISTS */

.results-list,
.schedule-list {
  list-style: none;
  font-size: 0.8rem;
}

.results-list li {
  padding: 3px 0;
  border-bottom: none; /* no separator between result lines */
}

.schedule-list li {
  padding: 3px 0;
  border-bottom: none; /* removed separator for schedule items */
}

.schedule-list li.spacer {
  height: 8px;
  padding: 0;
  border-bottom: 1px dashed rgba(60, 75, 110, 0.7); /* separator shown on spacer items */
}

.schedule-list li:last-child {
  border-bottom: none;
}

.round-title {
  margin-top: 6px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #f5f6fa;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  color: #f97316;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}

/* MOBILE */

@media (max-width: 640px) {
  .header-inner {
    justify-content: center;
  }

  .logo-area {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
  }
}

/* KONTAKT.html pocetak */


body {
  font-family: system-ui, sans-serif;
  background-color: #1c2440; /* lighter */
  color: #f5f6fa;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555; /* lighter */
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img { height: 48px; }

.site-title {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: .9;
  transition: .2s;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* PAGE */

main { padding: 32px 0 48px; }

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180,190,210,.5);
  padding: 28px 24px;
  box-shadow: 0 14px 28px rgba(20,30,50,.5);
  font-size: .95rem;
  color: #e2e8f0;
}

.content-box p {
  margin-bottom: 12px;
}

.label {
  color: #f97316;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .12em;
  display: block;
  margin-bottom: 4px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: .85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a { color: #f97316; }

.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}
/* KONTAKT.html kraj */



/* O NAMA.html pocetak */


body {
  font-family: system-ui, sans-serif;
  background-color: #1c2440; /* lighter */
  color: #f5f6fa;
  line-height: 1.6;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555; /* lighter */
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img { 
  height: 48px; 
}

.site-title {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: .9;
  transition: .2s;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* PAGE */

main { 
  padding: 32px 0 48px; 
}

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180,190,210,.5);
  padding: 28px 24px;
  box-shadow: 0 14px 28px rgba(20,30,50,.5);
  font-size: .95rem;
  color: #e2e8f0;
}

.content-box p {
  margin-bottom: 16px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: .85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a { 
  color: #f97316; 
}

.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}

/* O NAMA.html kraj */

/* GALERIJA.html pocetak */


body {
  font-family: system-ui, sans-serif;
  background-color: #1c2440; /* lighter */
  color: #f5f6fa;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555; /* lighter */
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img { height: 48px; }

.site-title {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: .9;
  transition: .2s;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

.main-nav a.disabled {
  opacity: .35;
  pointer-events: none;
  cursor: default;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

/* PAGE */

main { padding: 32px 0 48px; }

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f97316;
  margin-bottom: 20px;
}

/* GALLERY GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(180,190,210,.5);
  cursor: pointer;
  transition: .2s;
  background: #2a3555;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(249,115,22,.4);
}

/* LIGHTBOX */

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  border: 2px solid #f97316;
  background: #1c2440;
}

.lightbox:target {
  display: flex;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: #f97316;
  font-weight: bold;
}

/* LIGHTBOX NAV BUTTONS */

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #f97316;
  text-decoration: none;
  padding: 10px 16px;
  user-select: none;
}

.nav.prev { left: 30px; }
.nav.next { right: 30px; }

.nav:hover {
  color: #fb923c;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: .85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a { color: #f97316; }

.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}


/* GALERIJA.html kraj */


/* BILTENI.html pocetak */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, sans-serif;
  background-color: #1c2440; /* lighter */
  color: #f5f6fa;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555; /* lighter */
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-area img { height: 48px; }

.site-title {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: .9;
  transition: .2s;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* PAGE */

main { padding: 32px 0 48px; }

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180,190,210,.5);
  padding: 24px 20px 28px;
  box-shadow: 0 14px 28px rgba(20,30,50,.5);
}

/* BILTEN LIST */

.bulletins-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bulletin-card {
  background: #1c2440;
  border: 1px solid rgba(180,190,210,.25);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bulletin-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.bulletin-info p {
  font-size: .9rem;
  color: #d4dae6;
}

.open-btn {
  background: #f97316;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: .2s;
}

.open-btn:hover {
  background: #fb923c;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: .85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a { color: #f97316; }

.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}

/* BILTEN.html kraj */




/* PRIJATELJI LIGE.html pocetak */
    * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #1c2440; /* lighter */
  color: #f5f6fa;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 48px;
  width: auto;
  display: block;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: 0.9;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

/* PAGE */

main {
  padding: 32px 0 48px;
}

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180, 190, 210, 0.5);
  padding: 24px 20px 28px;
  box-shadow: 0 14px 28px rgba(20, 30, 50, 0.5);
}

/* PRIJATELJI LIGE */

.friends-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.friend-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(180, 190, 210, 0.25);
  background: #1c2440;
}

.friend-logo {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.friend-logo img {
  max-width: 180px;
  max-height: 130px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(42, 53, 85, 0.75));
  background: #2a3555;
  border-radius: 12px;
  padding: 8px 10px;
}

.friend-info {
  flex: 1 1 auto;
  font-size: 0.9rem;
}

.friend-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.friend-info p {
  color: #d4dae6;
}

.friend-info a {
  color: #f97316;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  color: #f97316;
}

/* NAV STATE */

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}

/* MOBILE */

@media (max-width: 640px) {
  .header-inner {
    justify-content: center;
  }

  .logo-area {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
  }

  .friend-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .friend-logo {
    flex: 0 0 90px;
  }
}

/* PRIJATELJI LIGE.html kraj */



/* RASPOREDI.html pocetak */


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #1c2440; /* lighter blue-gray */
  color: #f5f6fa;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

  .site-header {
  background: #2a3555; /* lighter header */
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 48px;
  width: auto;
  display: block;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: 0.9;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

/* PAGE */

main {
  padding: 32px 0 48px;
}

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180, 190, 210, 0.5);
  padding: 24px 20px 28px;
  box-shadow: 0 14px 28px rgba(20, 30, 50, 0.5);
}

.round-header {
  margin-bottom: 18px;
}

.round-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.round-meta {
  font-size: 0.9rem;
  color: #d4dae6;
}

.courts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.court-card {
  border-radius: 12px;
  border: 1px solid rgba(180, 190, 210, 0.25);
  padding: 12px 14px 14px;
  background: #1c2440;
}

.court-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f97316;
  margin-bottom: 6px;
}

.court-list {
  list-style: none;
  font-size: 0.8rem;
}

.court-list li {
  padding: 4px 0;
  border-bottom: 1px dashed rgba(60, 75, 110, 0.85);
}

.court-list li:last-child {
  border-bottom: none;
}

.time-tag {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  margin-right: 6px;
}

.age-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1px 6px;
  border-radius: 999px;
  border: 1px solid rgba(180, 190, 210, 0.6);
  margin-right: 6px;
  color: #d4dae6;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  color: #f97316;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none; /* nije klikabilno */
}.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}

@media (max-width: 640px) {
  .header-inner {
    justify-content: center;
  }

  .logo-area {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
  }
}

/* RASPOREDI.html kraj */




/* TAKMICENJA.html pocetak */


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #1c2440; /* lighter theme */
  color: #f5f6fa;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.site-header {
  background: #2a3555;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 48px;
  width: auto;
  display: block;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: 0.9;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  border-color: #f97316;
  opacity: 1;
}

/* CONTENT WRAPPER */

main {
  padding: 32px 0 48px;
}

.page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f97316;
  margin-bottom: 20px;
}

.content-box {
  background: #1c2440;
  border-radius: 14px;
  border: 1px solid rgba(180, 190, 210, 0.5);
  padding: 24px 20px 28px;
  box-shadow: 0 14px 28px rgba(20, 30, 50, 0.5);
}

/* LIGE */

.league-section {
  margin-top: 32px;
}

.league-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.league-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.competition-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.competition-links a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(180, 190, 210, 0.7);
  text-transform: lowercase;
  background: rgba(42, 53, 85, 0.4);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.competition-links a.highlight {
  border-color: #f97316;
  color: #f97316;
}

.competition-links a.is-active {
  background: #f97316;
  border-color: #f97316;
  color: #1c2440;
}

.competition-links a:hover {
  background: #f97316;
  border-color: #f97316;
  color: #1c2440;
}

.league-card {
  border-radius: 12px;
  border: 1px solid rgba(180, 190, 210, 0.25);
  padding: 12px 12px 14px;
  background: #1c2440;
  display: none;
}

.league-card.active {
  display: block;
}

.league-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f97316;
  margin-bottom: 8px;
}

/* TABLES */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

thead {
  background: #2a3555;
}

thead th {
  padding: 6px 4px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(180, 190, 210, 0.5);
}

tbody td {
  padding: 5px 4px;
  border-bottom: 1px solid rgba(60, 75, 110, 0.7);
  text-align: center;
  white-space: nowrap;
}

tbody td.team-name {
  text-align: left;
  white-space: normal;
}

/* RESULTS & SCHEDULE LISTS */

.results-list,
.schedule-list {
  list-style: none;
  font-size: 0.8rem;
}

.results-list li {
  padding: 3px 0;
  border-bottom: none; /* ensure no separator between result lines */
}

.schedule-list li {
  padding: 3px 0;
  border-bottom: none;
}

.schedule-list li:last-child {
  border-bottom: none;
}

.round-title {
  margin-top: 6px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #f5f6fa;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #3b4670;
  background: #1c2440;
  padding: 18px 0 26px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #d4dae6;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  color: #f97316;
}

.main-nav a.active {
  border-color: #f97316 !important;
  color: #f97316 !important;
  opacity: 1 !important;
}

.main-nav a.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.contact-logo {
  text-align: center;
  margin: 20px 0 0px; /* space between header and Kontakt */
}

.contact-logo img {
  height: 140px; /* ~20% larger visual feeling */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.35));
}
/* MOBILE */

@media (max-width: 640px) {
  .header-inner {
    justify-content: center;
  }

  .logo-area {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
  }
}

/* TAKMICENJA.html kraj */


   /* Gallery specific styles */
    .gallery-wrap { display:flex; gap:20px; align-items:flex-start; margin-top:18px; }
    .albums { width:200px; background:rgba(42,53,85,0.35); padding:12px; border-radius:10px; }
    .albums h4 { margin:0 0 8px 0; color:#f97316; }
    .albums ul { list-style:none; padding:0; margin:0; max-height:520px; overflow:auto; }
    .albums li { padding:6px 8px; cursor:pointer; border-radius:6px; color:#e6eefb; }
    .albums li.active, .albums li:hover { background:#f97316; color:#1c2440; }

    .gallery { flex:1; }
    .thumbs { display:grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap:12px; }
    .thumb { position:relative; overflow:hidden; padding-top:66%; background:#111; border-radius:8px; cursor:pointer; }
    .thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
    .thumb .cap { position:absolute; left:6px; right:6px; bottom:6px; color:#fff; font-size:0.8rem; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); padding:6px; border-radius:4px; }

    /* Lightbox */
    .lb-overlay { position:fixed; inset:0; background:rgba(6,10,20,0.85); display:none; align-items:center; justify-content:center; z-index:9999; }
    .lb-overlay.active { display:flex; }
    .lb-content { position:relative; max-width:92vw; max-height:92vh; width:900px; }
    .lb-img { max-width:100%; max-height:100%; display:block; margin:0 auto; border-radius:6px; }
    .lb-caption { color:#e6eefb; text-align:center; margin-top:8px; }
    .lb-close, .lb-prev, .lb-next { position:absolute; background:rgba(0,0,0,0.5); color:#fff; border:none; padding:8px 10px; border-radius:6px; cursor:pointer; }
    .lb-close { right:-10px; top:-10px; }
    .lb-prev { left:-60px; top:50%; transform:translateY(-50%); }
    .lb-next { right:-60px; top:50%; transform:translateY(-50%); }
    @media (max-width:800px){ .albums{display:none;} .lb-prev{left:6px;} .lb-next{right:6px;} }
