/* ─── CSS custom properties ─── */
:root {
  --primary:    #1a65a8;
  --primary-dk: #134e87;
  --primary-lt: #2278c5;
  --accent:     #2f8f4e;
  --accent-lt:  #3aa76d;
  --surface:    #f5f8fc;
  --surface-2:  #e8f0f8;
  --ink:        #0a1628;
  --text:       #111827;
  --muted:      #3d5a7a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--surface); color: var(--text); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Noto Serif', serif; }
a { text-decoration: none; }
img { display: block; }

/* ─── Scroll progress bar ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 9999; transition: width .1s linear;
}

/* ─── Nav ─── */
#site-header {
  background: rgba(255,255,255,.97);
  border: none !important;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
#site-header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 4px 20px rgba(0,0,0,.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-link {
  font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  color: var(--primary);          /* ← modrá v klidu */
  transition: color .2s;
  position: relative; padding-bottom: 3px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--accent);      /* ← zelená podtrhávací linka */
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover { color: var(--accent); }          /* ← hover zelená */
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { transform: scaleX(1); }
.nav-link-accent { color: var(--accent) !important; }
.nav-link-accent::after { background: var(--accent) !important; }

/* ─── Nav pill (Kontakt) ─── */
.nav-link-pill {
  font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: .3rem .75rem; border-radius: 5px;
  transition: background .2s, color .2s;
}
.nav-link-pill:hover {
  background: rgba(47,143,78,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(47,143,78,.25), 0 2px 8px rgba(47,143,78,.15);
}

/* ─── Nav Dropdown ─── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-btn { display: inline-flex; align-items: center; gap: .35rem; }
.nav-dropdown-chevron { font-size: .65rem; transition: transform .2s; display: inline-block; opacity: .7; }
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; min-width: 190px;
  box-shadow: 0 8px 30px rgba(10,22,40,.13);
  border: 1px solid rgba(26,101,168,.1);
  border-radius: 8px; padding: .4rem 0;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 300;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1.25rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #1f2937; transition: color .15s, background .15s;
}
.nav-dropdown-item:hover { color: var(--primary); background: var(--surface); }
.nav-dropdown-item::after { display: none; }

/* ─── Hamburger ─── */
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: .3s; margin-bottom: 5px; }
.hamburger span:last-child { margin-bottom: 0; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile nav drawer ─── */
#mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
  background: #fff; z-index: 200; padding: 5rem 2rem 2rem;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 30px rgba(0,0,0,.12);
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}
#mobile-nav.open { right: 0; }
#mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 199;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#mobile-overlay.active { opacity: 1; pointer-events: all; }
.mob-link {
  display: block; padding: .85rem 0; font-size: 1rem; font-weight: 600;
  color: #111827; border-bottom: 1px solid #f0f0f0; transition: color .2s;
  width: 100%; text-align: left; background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: inherit; cursor: pointer;
}
.mob-link:hover { color: var(--primary); }

/* ─── Mobile submenu ─── */
.mob-expand-btn { display: flex; justify-content: space-between; align-items: center; }
.mob-chevron { font-size: .7rem; transition: transform .25s; opacity: .6; }
.mob-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  background: var(--surface);
  margin: 0 -2rem; padding: 0 2rem;
}
.mob-submenu.open { max-height: 200px; }
.mob-sublink {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 0; font-size: .92rem; font-weight: 600;
  color: var(--muted); border-bottom: 1px solid rgba(26,101,168,.08);
  transition: color .2s;
}
.mob-sublink:last-child { border-bottom: none; }
.mob-sublink:hover { color: var(--primary); }

/* ─── Eyebrow labels ─── */
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--primary); flex-shrink: 0;
}
.eyebrow-green {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow-green::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.eyebrow-gold {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255,255,255,.8);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow-gold::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--accent-lt); flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS — moderní elevační hover
   ═══════════════════════════════════════════ */
.btn-primary {
  background: var(--primary); color: #fff;
  padding: .75rem 1.8rem; font-weight: 700; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .18s, transform .18s, box-shadow .18s;
  cursor: pointer; border: none; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(26,101,168,.22);
}
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,101,168,.38);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(26,101,168,.22); }

.btn-green {
  background: var(--accent); color: #fff;
  padding: .75rem 1.8rem; font-weight: 700; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .18s, transform .18s, box-shadow .18s;
  cursor: pointer; border: none; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(47,143,78,.2);
}
.btn-green:hover {
  background: #247a40;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47,143,78,.32);
}
.btn-green:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(47,143,78,.2); }

.btn-outline {
  border: 2px solid var(--primary); color: var(--primary);
  padding: .7rem 1.6rem; font-weight: 700; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .18s, color .18s, transform .18s, box-shadow .18s;
  border-radius: 6px; background: transparent;
}
.btn-outline:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,101,168,.28);
}
.btn-outline:active { transform: translateY(0); }

.btn-ghost-white {
  border: 2px solid rgba(255,255,255,.45); color: #fff;
  padding: .7rem 1.6rem; font-weight: 700; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: border-color .18s, background .18s, transform .18s;
  border-radius: 6px; background: transparent;
}
.btn-ghost-white:hover {
  border-color: #fff; background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn-ghost-white:active { transform: translateY(0); }

/* ─── Club logo ─── */
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-text-divider { width: 1px; height: 28px; background: rgba(26,101,168,.18); flex-shrink: 0; }

/* ─── Hero match info line ─── */
.hero-match-line {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--primary-dk); font-weight: 800; font-size: .9rem;
  padding: .35rem 0 .35rem .75rem;
  border-left: 3px solid var(--accent);
  line-height: 1.3; letter-spacing: .01em;
}
.hero-match-line .match-icon { color: var(--accent); flex-shrink: 0; }

/* ─── Live dot pulse ─── */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-lt); flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(58,167,109,.6); }
  50% { opacity: .7; transform: scale(1.2); box-shadow: 0 0 0 5px rgba(58,167,109,0); }
}

/* ─── Match day strip ─── */
.match-day-strip {
  background: rgba(8,18,30,.75);
  border: 1px solid rgba(58,167,109,.25);
  border-left: 3px solid var(--accent-lt);
  padding: 1rem 1.25rem;
  box-shadow: 4px 4px 0 rgba(47,143,78,.35);
  backdrop-filter: blur(4px);
}

/* ─── Match CTA badge ─── */
.match-cta-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: .8rem 1.4rem;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(26,101,168,.22);
  margin-bottom: 1.5rem;
}
.match-cta-badge:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,101,168,.35);
}

/* ─── Contact split ─── */
.contact-dark { background: var(--primary); }

/* ─── Section h2 text-shadow ─── */
section h2 { text-shadow: 0 1px 0 rgba(0,0,0,.06); }

/* ─── Hero: desktop layout ─── */
@media (min-width: 1024px) {
  #hero { display: flex; align-items: center; min-height: 76svh; }
}

/* ─── Hero: mobile — text first, image below ─── */
@media (max-width: 1023px) {
  #hero { display: flex; flex-direction: column; min-height: auto; }
  #hero-img-wrap {
    position: relative !important; inset: auto !important;
    order: 2; height: 250px; flex-shrink: 0; overflow: hidden; z-index: 0 !important;
  }
  .hero-content-wrap { order: 1; background: #eef6f0; }
  .hero-overlay-h, .hero-overlay-v, .hero-stripe, .hero-noise { display: none; }
}

/* ─── Hero image animation (Ken Burns) ─── */
.hero-img { animation: hero-kenburns 20s ease-in-out infinite alternate; will-change: transform; }
@keyframes hero-kenburns {
  0%   { transform: translateX(20%) scale(1);    opacity: .85; }
  100% { transform: translateX(16%) scale(1.08); opacity: .88; }
}
@media (max-width: 1023px) {
  .hero-img { animation: hero-kenburns-mob 16s ease-in-out infinite alternate; }
  @keyframes hero-kenburns-mob {
    0%   { transform: scale(1.03) translateX(0);   opacity: .85; }
    100% { transform: scale(1.10) translateX(-2%); opacity: .90; }
  }
}

/* ─── Hero logo animation ─── */
.hero-logo { animation: hero-logo-float 4s ease-in-out infinite; will-change: transform, filter; }
@keyframes hero-logo-float {
  0%   { transform: translateY(0)    scale(1);    filter: drop-shadow(0 4px 12px rgba(0,0,0,.18)); }
  50%  { transform: translateY(-9px) scale(1.04); filter: drop-shadow(0 14px 22px rgba(0,0,0,.22)); }
  100% { transform: translateY(0)    scale(1);    filter: drop-shadow(0 4px 12px rgba(0,0,0,.18)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-img { animation: none; }
}

/* ─── Hero noise ─── */
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Hero diagonal stripe ─── */
.hero-stripe {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .045;
  background-image: repeating-linear-gradient(135deg, #0a1c35 0px, #0a1c35 12px, #1a3a60 12px, #1a3a60 24px);
}

/* ─── Stats strip ─── */
.stat-val  { font-family: 'Noto Serif', serif; font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-unit { font-size: .85rem; font-weight: 700; color: var(--accent-lt); }
.stat-lab  { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .2rem; }
.stat-div  { width: 1px; height: 2rem; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ─── Match banner ─── */
.match-banner { background: var(--primary); color: #fff; border-left: 4px solid var(--accent); }
.match-score-win  { background: #16a34a; color: #fff; }
.match-score-loss { background: #dc2626; color: #fff; }
.match-score-draw { background: #ca8a04; color: #fff; }
.result-row { border-bottom: 1px solid rgba(58,167,109,.12); }
.result-row:last-child { border-bottom: none; }
.result-row:hover { background: rgba(26,101,168,.25); }

/* ─── Team cards ─── */
.team-card {
  background: #fff; border: 1px solid rgba(26,101,168,.1);
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s; border-radius: 12px;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(26,101,168,.18); }
.team-card:hover .card-icon { background: var(--accent) !important; }
.team-card:hover .card-icon span { color: #fff !important; }
.card-num {
  font-family: 'Noto Serif', serif; font-size: 4rem; font-weight: 900;
  color: var(--surface-2); position: absolute; top: .25rem; right: .75rem;
  line-height: 1; user-select: none; pointer-events: none;
}

/* ─── Gallery ─── */
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, rgba(26,101,168,.45) 100%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 1rem 1.2rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  padding: .2rem .6rem; margin-bottom: .4rem;
}
.gallery-caption { color: #fff; font-size: .8rem; font-weight: 600; }

/* ─── Testimonial cards ─── */
.testi-card { background: #fff; border: 1px solid rgba(26,101,168,.12); border-top: 3px solid var(--accent); }

/* ─── Partner cards ─── */
.partner-card {
  background: #fff; border: 1px solid rgba(26,101,168,.1);
  border-radius: 10px; padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.partner-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,101,168,.1); }
.partner-logo {
  height: 64px; width: auto; max-width: 160px;
  object-fit: contain; margin-bottom: 1rem;
  transition: opacity .2s;
}
.partner-logo:hover { opacity: .85; }
.partner-logo-placeholder {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

/* ─── News cards ─── */
.news-card {
  background: #fff; border: 1px solid rgba(26,101,168,.1);
  border-radius: 10px; padding: 1.5rem;
  border-top: 3px solid var(--primary);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,101,168,.12); }
.news-tag {
  display: inline-block; background: var(--surface-2); color: var(--primary);
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: .2rem .6rem; border-radius: 4px; margin-bottom: .75rem;
}
.news-date { font-size: .78rem; color: var(--muted); font-weight: 500; margin-bottom: .5rem; }
.news-title { font-family: 'Noto Serif', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .65rem; line-height: 1.4; }
.news-perex { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.news-read-more { margin-top: 1rem; font-size: .8rem; font-weight: 700; color: var(--primary); letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .3rem; }
.news-read-more:hover { color: var(--primary-dk); }

/* ─── Subpage header ─── */
.subpage-header {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, var(--primary-lt) 100%);
  color: #fff; padding: 7rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.subpage-header::before {
  content: ''; position: absolute; inset: 0; opacity: .045; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, #0a1c35 0px, #0a1c35 12px, #1a3a60 12px, #1a3a60 24px);
}
.subpage-header > div { position: relative; }

/* ─── Breadcrumb ─── */
.breadcrumb { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb-current { color: rgba(255,255,255,.85); }

/* ─── Reveal animation ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── Section defaults ─── */
section { padding: 5rem 0; }

/* ─── Footer ─── */
footer {
  background: #1a2f4a;
  padding: 48px 40px 28px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 14px;
}

.footer-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin: 0 0 5px;
}

.footer-muted {
  color: rgba(255,255,255,0.4);
  margin: 0 0 4px;
  font-size: 13px;
}

.footer-text {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.7);
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

footer a:hover {
  color: rgba(255,255,255,1);
  text-decoration: underline;
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  margin-left: 22px;
}

.footer-logo-link img {
  height: 47px;
  width: auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 0 0px transparent);
  transition: opacity 0.2s, filter 0.2s;
}

.footer-logo-link:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.45));
}
.footer-logo-link:hover { text-decoration: none; }

@media (max-width: 640px) {
  footer { padding: 36px 20px 24px; }
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { row-gap: 10px; }
  .footer-bottom p { margin-left: 0; }
}

/* ─── Material icons ─── */
.material-symbols-outlined { font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24; vertical-align: middle; }
.ms-fill { font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24; }

/* ─── Form inputs ─── */
.field {
  width: 100%; border: 1px solid #d1d5db; padding: .75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .875rem;
  color: var(--text); background: #fff; outline: none; transition: border-color .2s;
}
.field:focus { border-color: var(--primary); }
.field::placeholder { color: #9ca3af; }

/* ─── Club logo ─── */
.logo-img { height: 44px; width: auto; object-fit: contain; }

/* ─── Player roster ─── */
.player-card {
  background: #fff; border: 1px solid rgba(26,101,168,.1);
  border-radius: 10px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}
.player-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,101,168,.12); }
.player-num {
  font-family: 'Noto Serif', serif; font-size: 1.5rem; font-weight: 900;
  color: var(--surface-2); min-width: 2.2rem; line-height: 1;
}
.player-pos {
  display: inline-block; font-size: .62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: .18rem .55rem; border-radius: 4px;
  background: var(--surface-2); color: var(--primary);
}

/* ─── Contact person cards ─── */
.contact-person-card {
  background: #fff; border: 1px solid rgba(26,101,168,.1);
  border-radius: 12px; padding: 1.5rem; border-top: 3px solid var(--primary);
  transition: box-shadow .2s, transform .2s;
}
.contact-person-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,101,168,.12); }

/* ─── Fanshop product cards ─── */
.product-card {
  background: #fff; border: 1px solid rgba(26,101,168,.1);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,101,168,.13); }
.product-img-placeholder {
  background: var(--surface-2); display: flex; align-items: center; justify-content: center; height: 200px;
}
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-price { font-family: 'Noto Serif', serif; font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: .5rem; }
.product-badge-unavailable {
  display: inline-block; background: #fee2e2; color: #dc2626;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: .2rem .6rem; border-radius: 4px;
}

/* ─── GDPR souhlas checkbox ─── */
.gdpr-souhlas {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9em;
  margin: 12px 0;
  cursor: pointer;
}
.gdpr-souhlas input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.gdpr-souhlas a {
  color: var(--primary);
  text-decoration: underline;
}


/* ─── GDPR page prose ─── */
.gdpr-prose { max-width: 720px; margin: 0 auto; }
.gdpr-prose h2 {
  font-family: 'Noto Serif', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--primary); margin: 2rem 0 .6rem;
}
.gdpr-prose h2:first-child { margin-top: 0; }
.gdpr-prose p, .gdpr-prose li {
  font-size: .95rem; line-height: 1.75;
  color: var(--muted); margin-bottom: .5rem;
}
.gdpr-prose ul { padding-left: 1.4rem; margin-bottom: .75rem; }
.gdpr-prose a { color: var(--primary); text-decoration: underline; }
.gdpr-prose strong { color: var(--text); font-weight: 700; }
.gdpr-info-box {
  background: var(--surface-2); border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0; padding: .85rem 1.1rem; margin-bottom: 1rem;
  font-size: .88rem; color: var(--muted);
}
