/* =========================================
   RESET / BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.65;
  color: #0f172a; /* slate-900 */
  background:
    radial-gradient(1200px 600px at 80% -20%, #c7d2fe33, transparent 60%),
    radial-gradient(900px 500px at -10% 0%, #a7f3d033, transparent 50%),
    #f8fafc; /* slate-50 */
}

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 16px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border: 1px solid #e2e8f0; /* slate-200 */
  border-radius: 16px;
  padding: 24px;
  margin: 16px 0;
  box-shadow: 0 10px 25px -10px rgba(2, 6, 23, 0.12);
}

.card h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.kpi {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lang {
  display: inline-flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px;
}

.lang__btn {
  display: inline-block;
  min-width: 44px;
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.lang__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lang__btn.active {
  background: #fff;
  color: #0f172a;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 72px 0 32px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 20% 10%, #60a5fa33, transparent 70%),
    radial-gradient(600px 280px at 90% 0%, #34d39933, transparent 70%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.12), transparent 40%);
  pointer-events: none;
}

.hero__content {
  position: relative;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.2px;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #334155;
  margin: 0 0 16px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111827;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  background: #e2e8f0;
  color: #0f172a;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s;
  box-shadow: 0 8px 18px -10px rgba(2, 6, 23, 0.25);
  margin-right: 8px;
}

.btn:hover {
  transform: translateY(-1px);
  background: #cbd5e1;
}

.btn--primary {
  background: #2563eb;
  color: #fff;
}

.btn--primary:hover {
  background: #1d4ed8;
}

/* =========================================
   SCHEDULE
   ========================================= */
.schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .schedule {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   LISTS / TYPOGRAPHY
   ========================================= */
ul,
ol {
  padding-left: 18px;
}

.bullets {
  list-style: disc;
}

.signup-list {
  columns: 1;
  column-gap: 24px;
}
@media (min-width: 720px) {
  .signup-list {
    columns: 2;
  }
}

/* =========================================
   LINKS – Stonowany czerwony
   ========================================= */
a {
  color: #dc2626; /* karmazyn dojo */
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #b91c1c; /* ciemniejszy odcień przy hoverze */
  text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  color: #475569;
  text-align: center;
  padding: 28px 0 48px;
}

/* =========================================
   PRINT
   ========================================= */
@media print {
  .nav,
  .hero {
    display: none !important;
  }
  body {
    background: #ffffff;
  }
  .card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #cbd5e1;
    box-shadow: none;
  }
}
/* =========================================
   HERO WITH POSTER
   ========================================= */
.hero--with-poster .hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 48px 0;
}

.hero__poster img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px -10px rgba(15, 23, 42, 0.35);
}

.hero__text h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 0;
  margin-bottom: 12px;
}

.hero__text .lead {
  color: #334155;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero__cta {
  margin-top: 20px;
}

/* Mobile: plakat nad tekstem */
@media (max-width: 768px) {
  .hero--with-poster .hero__content {
    grid-template-columns: 1fr;
  }
  .hero__poster {
    order: -1; /* obrazek nad tekstem */
  }
}
#patrons{
background:#162735;
}
.patrons{color:#FFF}
   .logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px; /* odstęp między logami */
        flex-wrap: wrap; /* zawijanie na małych ekranach */
        padding: 16px;
      }

      /* Każde logo */
      .logos img {
              width: 100%; /* pozwala obrazowi kurczyć się responsywnie */
        height: auto; /* zachowanie proporcji */
        object-fit: contain; /* bez rozciągania */
      }
.puppets{max-height: 60px;}
.greebo{max-height:150px}

      /* Opcjonalnie: mniejsze limity na bardzo wąskich ekranach */
      @media (max-width: 480px) {
.logos{
flex-direction: column;
}
        .logos img {
          max-width: 140px;
        }
      }