/* ========================================
   GOPLANIA INOWROCŁAW — style.css
   ======================================== */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --dark-blue: #002f87;
  --bright-blue: #0d5eff;
  --light-blue: #e8f0ff;
  --dark-bg: #001a4d;
  --darker-bg: #001030;
  --text-primary: #0d1a2e;
  --text-muted: #6b7a99;
  --shadow-sm: 0 2px 12px rgba(0,47,135,0.10);
  --shadow-md: 0 8px 32px rgba(0,47,135,0.16);
  --shadow-lg: 0 20px 60px rgba(0,47,135,0.22);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: #f5f7ff;
  overflow-x: hidden;
}

/* ---- Typography Helpers ---- */
.section-title-center {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark-blue);
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title-center::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-blue), var(--dark-blue));
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.title-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--dark-blue);
  border-bottom: 3px solid var(--bright-blue);
  padding-bottom: 6px;
  display: inline-block;
}

/* ---- Fade-In Animations ---- */
.fade-in, .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--bright-blue), var(--dark-blue));
  color: white;
  box-shadow: 0 4px 20px rgba(13, 94, 255, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(13, 94, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px) scale(1.03);
}

.btn-white-solid {
  background: white;
  color: var(--dark-blue);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-white-solid:hover {
  background: var(--bright-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 16px rgba(0,47,135,0.08);
  transition: var(--transition);
  overflow: visible;
  /* Eliminuje subpixel gap */
  transform: translateZ(0);
  backface-visibility: hidden;
}
.navbar.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 30px rgba(0,47,135,0.14);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

.nav-logo { text-decoration: none; flex-shrink: 0; }
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 10px rgba(0,47,135,0.15));
  position: relative;
  z-index: 10;
}
.nav-logo-img:hover { transform: scale(1.05); }

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px;
  width: 0; height: 2px;
  background: var(--bright-blue);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-link:hover { color: var(--bright-blue); }
.nav-link:hover::after { width: calc(100% - 28px); }

.nav-social {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--dark-blue);
  color: var(--dark-blue);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--dark-blue);
  color: white;
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Hero zaczyna od samej góry pod navbar */
  margin-top: 0;
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('img/heroes/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Left-side gradient for text readability */
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,10,40,0.92) 0%,
    rgba(0,15,55,0.75) 45%,
    rgba(0,15,55,0.25) 70%,
    transparent 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,10,40,0.35) 0%,
    transparent 50%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 40px;
}

.hero-content { flex: 0 0 auto; max-width: 600px; }

.hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.92;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.hero-title-white {
  font-size: clamp(4rem, 10vw, 8rem);
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  display: block;
}
.hero-title-blue {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  color: var(--bright-blue);
  text-shadow: 0 0 40px rgba(13,94,255,0.6);
  display: block;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 0;
}

/* hero-buttons removed — cinematic clean hero */

/* ---- removed decorative circles that conflicted with hero photo ---- */

.hero-scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-arrow {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  animation: scrollBounce 2.2s ease-in-out infinite;
  cursor: pointer;
  transition: var(--transition);
}
.scroll-arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================
   BELKA OSTATNIEGO MECZU
   (przyklejona do dołu hero)
   =========================== */
.hero-last-match {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 10, 36, 0.94);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.07);
  z-index: 10;
}

.hero-last-match-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 0 0;
  height: 68px;
  display: flex;
  align-items: stretch;
}

.hlm-label {
  background: var(--bright-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px 0 32px;
  flex-shrink: 0;
  min-width: 200px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  padding-right: 40px;
}
.hlm-label-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hlm-label-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.3px;
  margin-top: 2px;
  text-transform: uppercase;
}

.hlm-teams {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 0 28px;
}

.hlm-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.hlm-away-badge {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hlm-away-badge span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: white;
}

.hlm-team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.3px;
  line-height: 1.25;
  text-transform: uppercase;
}

.hlm-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bright-blue);
  letter-spacing: 2px;
  line-height: 1;
  padding: 0 14px;
  flex-shrink: 0;
}

.hlm-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: white;
  border-left: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  background: transparent;
}
.hlm-match-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hlm-match-date, .hlm-match-time {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hlm-match-date i, .hlm-match-time i { color: var(--bright-blue); font-size: 0.65rem; }
.hlm-cta:hover {
  background: rgba(13,94,255,0.25);
  color: white;
}

/* ===========================
   NASTĘPNY MECZ
   =========================== */
.next-match {
  background: #f7f9ff;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.paint-splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.06;
}
.paint-splash-1 {
  width: 400px; height: 400px;
  background: var(--bright-blue);
  top: -100px; left: -100px;
}
.paint-splash-2 {
  width: 300px; height: 300px;
  background: var(--dark-blue);
  bottom: -80px; right: -80px;
}

.next-match-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.match-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,47,135,0.10);
  border: 1.5px solid rgba(0,47,135,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.match-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-blue), var(--dark-blue));
}

.match-info { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }

.match-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.match-icon {
  width: 32px; height: 32px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bright-blue);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.match-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.match-value {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-blue);
  letter-spacing: 0.3px;
}
.match-sublabel {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Real logo */
.match-team-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,47,135,0.18));
  transition: transform var(--transition);
}
.match-team-logo:hover { transform: scale(1.06); }

/* Away team placeholder badge */
.away-badge-placeholder {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #1a6b2a, #0d4a1e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 3px 10px rgba(26,107,42,0.25));
}
.away-badge-placeholder span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
}

.team-badge {
  filter: drop-shadow(0 4px 16px rgba(0,47,135,0.2));
  transition: transform var(--transition);
}
.team-badge:hover { transform: scale(1.05); }
.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark-blue);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-transform: uppercase;
}

.match-vs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #0d5eff;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(13,94,255,0.2);
  line-height: 1;
  flex-shrink: 0;
}

.match-live { flex-shrink: 0; }

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--dark-blue);
  background: #fff;
  border: 2px solid var(--dark-blue);
  border-radius: 10px;
  text-decoration: none;
  transition: .3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,47,135,.08);
}
.btn-live:hover {
  background: var(--dark-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,47,135,0.25);
}

.live-dot {
  width: 9px; height: 9px;
  background: #ff3b30;
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===========================
   THREE COLUMNS
   =========================== */
.three-cols {
  padding: 60px 0;
  background-image: url('img/heroes/section-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.three-cols::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(2px);
}
.three-cols-container {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 32px;
}

.col-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,47,135,0.07);
  border: 1.5px solid rgba(0,47,135,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}
.col-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,47,135,0.14);
}

.col-card-title { margin-bottom: 4px; }

/* News */
.news-list { display: flex; flex-direction: column; gap: 16px; flex: 1; justify-content: space-between; }

.news-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 8px;
  transition: background var(--transition);
  cursor: pointer;
}
.news-item:hover { background: var(--light-blue); }

.news-thumb {
  flex-shrink: 0;
  width: 110px; height: 76px;
  border-radius: 8px;
  overflow: hidden;
}
.thumb-placeholder {
  width: 100%; height: 100%;
  border-radius: 8px;
}
.thumb-1 { background: linear-gradient(135deg, #002f87 0%, #0d5eff 100%); }
.thumb-2 { background: linear-gradient(135deg, #0d5eff 0%, #4d8fff 100%); }
.thumb-3 { background: linear-gradient(135deg, #001a4d 0%, #002f87 100%); }

.news-body { flex: 1; }
.news-title-link {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.news-title-link:hover { color: var(--bright-blue); }

.news-date {
  font-size: 0.75rem;
  color: var(--bright-blue);
  font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--bright-blue);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  align-self: flex-start;
}
.news-all-link:hover {
  color: var(--dark-blue);
  border-bottom-color: var(--dark-blue);
}
.btn-cta-blue {
  background: linear-gradient(135deg, var(--bright-blue), var(--dark-blue));
  color: white;
  border-color: transparent;
}
.btn-cta-blue:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,47,135,0.3);
}

/* Shop – full image card */
.col-card--shop {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.shop-full-banner {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.shop-full-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.col-card--shop:hover .shop-full-banner img {
  transform: scale(1.05);
}

.shop-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,10,50,0.10) 0%,
    rgba(0,20,80,0.55) 40%,
    rgba(0,10,50,0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  gap: 8px;
}

.shop-full-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.shop-full-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: white;
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.shop-full-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 6px;
}

.shop-full-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 26px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--dark-blue);
  background: white;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.shop-full-cta:hover {
  background: var(--bright-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,94,255,0.5);
}

.shop-jersey { filter: drop-shadow(0 8px 20px rgba(0,47,135,0.2)); }
.shop-scarf { filter: drop-shadow(0 4px 12px rgba(0,47,135,0.15)); }
.shop-desc {
  font-size: 1.05rem;
  color: var(--dark-blue);
  text-align: center;
}

/* Previous Result — compact premium scoreboard */
.result-card {
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 6px 24px rgba(0,47,135,.07);
  border: 1.5px solid rgba(0,47,135,0.06);
  justify-content: center;
}

.result-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.result-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}

.result-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.result-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,47,135,0.08);
}

.scorers-col { display: flex; flex-direction: column; gap: 5px; }
.scorers-away .scorer { opacity: 0.62; }
.scorer--away { opacity: 0.62; }

/* Real logo in result */
.result-team-logo {
  width: 119px;
  height: 119px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,47,135,0.25));
  transition: transform var(--transition);
}
.result-team-logo:hover { transform: scale(1.05); }

/* Away team placeholder */
.result-away-badge {
  width: 140px;
  height: 140px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 20px rgba(26,107,42,0.35));
}
.result-away-badge svg { width: 140px; height: 140px; }
.result-away-badge span { display: none; }

.result-team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}

.result-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7.5rem;
  font-weight: 900;
  color: #0038b8;
  letter-spacing: 4px;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 0 4px 24px rgba(0,56,184,0.18);
}

.result-scorers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-top: 4px;
}

.scorers-col { display: flex; flex-direction: column; gap: 5px; }
.scorers-away .scorer { opacity: 0.62; }

.scorer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
}
.scorer i { color: var(--bright-blue); font-size: 0.70rem; }
.scorer-min { font-weight: 700; color: var(--dark-blue); min-width: 24px; }
.scorer-name { color: var(--text-primary); font-weight: 500; }
.away-scorer { opacity: 0.6; }

/* ===========================
   AKADEMIA
   =========================== */
.akademia {
  background-image: url('img/heroes/akademia-banner.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.akademia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,20,70,.92) 0%,
    rgba(0,30,90,.80) 40%,
    rgba(0,30,90,.35) 65%,
    rgba(0,0,0,0) 100%
  );
}
.akademia::after { display: none; }

.akademia-particles { display: none; }

.akademia-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left block: title + desc + CTA */
.akademia-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 420px;
  flex-shrink: 0;
}

.akademia-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.akademia-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: white;
  letter-spacing: 4px;
  line-height: 1;
}
.akademia-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.5px;
  text-transform: none;
  line-height: 1.55;
}

.akademia-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
}

/* Right: image */
.akademia-image-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.akademia-img {
  width: 100%;
  max-width: 660px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.45));
}

/* ===========================
   SPONSORS
   =========================== */
.sponsors {
  background: white;
  padding: 70px 0;
}
.sponsors-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: center;
}

.sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
  background: white;
  border: 1px solid rgba(0,47,135,0.07);
  overflow: hidden;
}
.sponsor-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,47,135,0.15);
}

.sponsor-logo-img {
  width: 100%;
  max-width: 110px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
}
.sponsor-item:hover .sponsor-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: linear-gradient(180deg, #001233 0%, #000d1f 100%);
  position: relative;
  overflow: hidden;
}

/* Brand Strip */
.footer-brand-strip {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
}

.footer-brand-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 24px rgba(13,94,255,0.30));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-brand-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 32px rgba(13,94,255,0.50));
}

.footer-brand-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  letter-spacing: 4px;
  line-height: 1;
}

.footer-brand-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
}

.footer-brand-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.footer-founded {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
}
.footer-founded span {
  color: var(--bright-blue);
  font-weight: 700;
  font-size: 0.88rem;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--bright-blue);
  border-color: var(--bright-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13,94,255,0.4);
}

/* Links Area */
.footer-links-area {
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.30);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-block;
  line-height: 1.4;
}
.footer-col a:hover { color: white; }

.footer-col--contact a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.55;
}

/* Bottom */
.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.30);
}
.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.25);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.footer-credit {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit:hover { color: rgba(255,255,255,0.75); }

/* ===========================
   RESPONSIVE
   =========================== */
/* ===========================
   RESPONSIVE — CZYSTY BLOK
   =========================== */

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

@media (max-width: 920px) {
  .three-cols-container { grid-template-columns: repeat(2, 1fr); }
  .col-card:last-child { grid-column: span 2; }
  .match-card { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .match-info { width: 100%; justify-content: space-around; flex-direction: row; flex-wrap: wrap; }
  .match-live { width: 100%; display: flex; justify-content: center; }
  .footer-container { flex-wrap: wrap; gap: 40px; }
  .hlm-label { min-width: 150px; }
  .hlm-cta span { display: none; }
}

@media (max-width: 768px) {
  /* Particles — wyłącz na mobile */
  .hero-particles, #heroParticles, #akademiaParticles { display: none !important; }
  .particle { display: none !important; animation: none !important; }

  /* NAV */
  .hamburger { display: flex !important; }
  .nav-social { display: none !important; }
  .nav-links {
    position: fixed !important;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,47,135,.12);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
    display: flex !important;
  }
  .nav-link { width: 100%; padding: 12px 16px; border-radius: 8px; }

  /* HERO */
  .hero-container { flex-direction: column; padding: 90px 16px 80px; }
  .hero-image-side { display: none; }
  .hero-title-white { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-title-blue  { font-size: clamp(2.5rem, 13vw, 4rem); }

  /* BELKA HLM — nastepny mecz */
  .hero-last-match { display: block !important; }
  .hero-last-match-inner {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 8px;
    align-items: center;
  }
  .hlm-label { min-width: unset; border-right: none; padding-right: 0; }
  .hlm-cta span { display: inline !important; }
  .hlm-cta { font-size: .70rem !important; padding: 8px 12px !important; }
  .hlm-match-info { display: none; }
  .hlm-logo, .hlm-away-badge { width: 28px !important; height: 28px !important; }
  .hlm-team-name { font-size: .58rem; max-width: 55px; }

  /* THREE COLS */
  .three-cols { padding: 28px 0; }
  .three-cols-container {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    padding: 0 14px !important;
    gap: 16px !important;
  }
  .col-card { padding: 18px 16px !important; border-radius: 12px; gap: 12px; }
  .col-card:last-child { grid-column: span 1 !important; }
  .news-thumb { width: 80px !important; height: 58px !important; }
  .news-item  { padding: 8px !important; gap: 10px !important; }

  /* MATCH CARD */
  .match-card { flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px; }
  .match-info { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: space-around; }
  .match-live { width: 100%; display: flex; justify-content: center; }

  /* AKADEMIA */
  .akademia-container { flex-direction: column; gap: 32px; padding: 0 14px; }
  .akademia-left { max-width: 100%; }
  .akademia-image-side { width: 100%; justify-content: center; }
  .akademia-img  { max-width: 100%; border-radius: 10px; }

  /* SPONSORS */
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }

  /* FOOTER */
  .footer-brand-strip-inner { flex-wrap: wrap; gap: 24px; }
  .footer-links-container   { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-container  { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  .hero-last-match-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .result-team-logo,
  .result-away-badge,
  .result-away-badge svg,
  .result-away-badge img { width: 60px !important; height: 60px !important; }
  .hlm-cta { width: 100% !important; justify-content: center !important; }
  .three-cols-container { padding: 0 10px !important; gap: 12px !important; }
  .col-card { padding: 14px 12px !important; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .match-teams { gap: 16px; }
  .match-vs { font-size: 1.8rem; }
  .footer-links-container { grid-template-columns: 1fr 1fr; }
  .footer-bottom-container { flex-direction: column; gap: 8px; text-align: center; }
  .hero-scroll-indicator { bottom: 32px; }
}

@media (max-width: 400px) {
  .three-cols-container { padding: 0 8px !important; }
  .hero-title-white { font-size: 12vw; }
  .hero-title-blue  { font-size: 10vw; }
}

/* Particle Canvas */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
  opacity: 0.35;
}
@keyframes particleFloat {
  0% { transform: translateY(100%) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-100vh) translateX(30px) rotate(360deg); opacity: 0; }
}

/* ============================================================
   MOBILE GLOBAL — dodane przez CMS
   ============================================================ */

@media (max-width: 768px) {
  /* Navbar */
  .nav-container { padding: 0 16px; }
  .nav-logo-img  { height: 44px; }

  /* Hero główna */
  .hero-section  { min-height: 480px; }
  .hero-title-white { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-sub      { font-size: .80rem; }
  .hlm-content   { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hlm-cta       { width: 100%; justify-content: center; }

  /* Three cols */
  .three-cols-container { grid-template-columns: 1fr; }
  .col-card:last-child  { grid-column: span 1; }

  /* Footer */
  .footer-brand-strip-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-links-container   { grid-template-columns: 1fr; gap: 24px; }
  .footer-col--contact      { grid-column: span 1; }
}

@media (max-width: 480px) {
  /* Navbar */
  .nav-logo-img  { height: 38px; }

  /* Typografia */
  body { font-size: 15px; }

  /* Przyciski */
  .btn, .hlm-cta { font-size: .78rem; padding: 11px 18px; }
}

/* ============================================================
   MOBILE CRITICAL FIXES
   ============================================================ */

/* Zapobiegaj wychodzeniu poza viewport */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 768px) {

  /* Hamburger zawsze widoczny na mobile */
  .hamburger {
    display: flex !important;
    z-index: 1001;
    flex-shrink: 0;
  }
  .nav-links:not(.open) {
    display: none !important;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-social { display: none !important; }

  /* Three cols — full width, bez wystawania */
  .three-cols { padding: 32px 0; }
  .three-cols-container {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    padding: 0 14px !important;
    gap: 16px !important;
  }
  .col-card:last-child { grid-column: span 1 !important; }
  .col-card { min-height: unset !important; }

  /* Belka następnego meczu */
  .hlm-wrap { padding: 0 14px !important; }
  .hlm-content { flex-direction: column !important; gap: 12px !important; }
  .hlm-cta { width: 100% !important; justify-content: center !important; }

  /* Wszystkie sekcje — padding bezpieczny */
  section, .section, [class*="-section"], [class*="-wrap"],
  [class*="-container"], [class*="-inner"] {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Tabela terminarza */
  .schedule-table-wrap, .table-section {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .three-cols-container { padding: 0 10px !important; gap: 12px !important; }
  .col-card { padding: 16px 14px !important; }
}

@media (max-width: 520px) {
  .hero-last-match { display: block !important; }
  .hero-last-match-inner {
    flex-direction: column !important;
    padding: 12px 14px !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }
  .hlm-label { min-width: unset !important; border-right: none !important; padding-right: 0 !important; }
  .hlm-teams { flex: 1 !important; }
  .hlm-match-info { display: none !important; }
  .hlm-cta { width: 100% !important; justify-content: center !important; }
  .hlm-cta span { display: inline !important; }
  .hlm-logo, .hlm-away-badge { width: 28px !important; height: 28px !important; }
  .hlm-away-badge span { font-size: .72rem !important; }
  .hlm-team-name { font-size: .60rem !important; max-width: 60px !important; }
  .hlm-score { font-size: .80rem !important; padding: 0 6px !important; }
}
