/* === ŽIJ PADEL HEADER – RESTYLE 2025 === */
#header {
  font-family: 'Poppins', sans-serif !important;
  background: #fff !important;
  box-shadow: none !important;
  position: relative;
  z-index: 50;
}

/* --- TOP BAR --- */
.zp-topbar {
  background-color: #fff;
  color: #003d79;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.zp-topbar-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.zp-topbar a {
  color: #003d79;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.zp-topbar a:hover {
  color: #c6e801;
}

.zp-top-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.zp-top-contact svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  margin-right: 4px;
}

.zp-divider-dot {
  color: #003d79;
  opacity: 0.4;
  margin: 0 8px;
}

/* --- MAIN HEADER --- */
#header .container.navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#header .site-name img {
  max-height: 48px;
  width: auto;
}

#navigation {
  flex-grow: 1;
}

#navigation .menu-level-1 {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation .menu-level-1 a {
  color: #003d79;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

#navigation .menu-level-1 a:hover {
  color: #c6e801;
}

.zp-nav-sep {
  display: inline-block;
  width: 2px;
  height: 24px;
  background-color: #003d79;
  opacity: 0.3;
  border-radius: 2px;
  margin: 0 24px;
}

/* --- UTILITY ICONS --- */
.navigation-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navigation-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navigation-buttons svg {
  width: 22px;
  height: 22px;
  stroke: #003d79;
  fill: none;
  transition: stroke 0.2s ease;
}

.navigation-buttons a:hover svg {
  stroke: #c6e801;
}

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .zp-topbar {
    display: none;
  }
  #header .container.navigation-wrapper {
    padding: 10px 20px;
  }
  #navigation .menu-level-1 {
    gap: 20px;
  }
}

/* odstranění původního stínu sekce pod hlavičkou */
body #header::after {
  display: none !important;
}

.zp-top-contact a,
.zp-top-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zp-top-contact svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
  top: 0.5px;
}

.zp-top-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.zp-divider-dot {
  margin: 0 8px;
  opacity: 0.4;
}
/* === Fix: logo vždy vlevo na všech zařízeních === */
#header .site-name {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#header .site-name a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

/* jistota i pro mobile breakpoint */
@media (max-width: 980px) {
  #header .container.navigation-wrapper {
    justify-content: flex-start !important;
  }
}
#header .menu-helper > span,
#header .menu-helper .navigation-open,
#header .menu-helper [data-testid="hamburgerMenu"] > span{
  color:#003d79 !important;
}