@charset "UTF-8";
/*
e0d5fd
fee3ce
*/
/* Hero Section - Nowy design z nakładką tekstową */
.hero_section {
  padding: 20px 0;
}

.hero_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.hero_image_wrapper {
  position: relative;
  width: 100%;
}

.hero_img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.hero_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 55%, transparent 100%);
  padding: 70px 50px 50px;
}

.hero_title {
  font-size: 42px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.hero_subtitle {
  font-size: 19px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  opacity: 0.97;
  max-width: 950px;
}

/* Responsywność */
@media (max-width: 999px) {
  .hero_img {
    height: 450px;
  }
  .hero_content {
    padding: 50px 35px 35px;
  }
  .hero_title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .hero_subtitle {
    font-size: 17px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .hero_section {
    padding: 20px;
  }
}
@media (max-width: 648px) {
  .hero_container {
    border-radius: 12px;
  }
  .hero_img {
    height: 350px;
  }
  .hero_content {
    padding: 40px 25px 30px;
  }
  .hero_title {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .hero_subtitle {
    font-size: 15px;
    line-height: 1.55;
  }
}
/* =====================================================
   HERO SLIDER - vanilla JS
   ===================================================== */
.heroSlider {
  position: relative;
  width: 100%;
  height: 650px;
  touch-action: pan-y pinch-zoom;
}

.heroSlider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.heroSlider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.heroSlider__slide--active {
  opacity: 1;
  z-index: 1;
}
.heroSlider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.heroSlider__prev,
.heroSlider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 22px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}
.heroSlider__prev:hover,
.heroSlider__next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.heroSlider__prev {
  left: 15px;
}

.heroSlider__next {
  right: 15px;
}

.hero_container:hover .heroSlider__prev,
.hero_container:hover .heroSlider__next {
  opacity: 1;
}

.heroSlider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  gap: 10px;
}

.heroSlider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.heroSlider__dot--active {
  background: #fff;
  opacity: 1;
}
.heroSlider__dot:hover {
  opacity: 1;
}

.hero_content {
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 999px) {
  .heroSlider {
    height: 450px;
  }
  .heroSlider__prev,
  .heroSlider__next {
    opacity: 0.7;
  }
}
@media (max-width: 648px) {
  .heroSlider {
    height: 350px;
  }
  .heroSlider__prev,
  .heroSlider__next {
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
    opacity: 0.7;
  }
  .heroSlider__dot {
    width: 8px;
    height: 8px;
  }
}
/* =====================================================
   S2 rozszerzenia - zdjecia i daty w kartach (aktualnosci)
   ===================================================== */
.s2_img {
  margin: -30px -30px 15px;
  overflow: hidden;
}
.s2_img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.s2_a:hover .s2_img img {
  transform: scale(1.05);
}

.s2_a--nobar::after {
  display: none;
}

.s2_data {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.s2_opis {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 5px;
}

@media (max-width: 768px) {
  .s2_img {
    margin: -25px -25px 15px;
  }
}
/* =====================================================
   SEKCJA AKTUALNOSCI - usuwamy wlasne style, uzywamy s2
   ===================================================== */
.sekcjaAktualnosci {
  padding: 0 20px;
}

/* Przycisk "Zobacz wszystkie" */
.s2_zobacz_wszystkie {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.przycisk--jasny {
  display: inline-block;
  background-color: var(--tlo-szare, #f5f5f5);
  color: var(--tlo-niebieskie, #303cce);
  width: auto;
  margin: 0 auto;
  padding: 0 40px;
  font-weight: 600;
  font-size: 15px;
}
.przycisk--jasny:hover, .przycisk--jasny:focus {
  background-color: var(--tlo-niebieskie);
  color: #fff;
}

/* =====================================================
   SEKCJA 6 - DLA RODZICOW
   ===================================================== */
.s6 {
  padding: 40px 20px;
}

.s6_h {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--zielony, #4aa739);
  font-weight: 700;
}

.s6_wasko {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .s6_wasko {
    grid-template-columns: 1fr;
  }
}

.s6_a {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.s6_a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--zielony, #4aa739);
  transition: height 0.3s ease;
}
.s6_a.s6_k2::after {
  background: var(--niebieski, #76caee);
}
.s6_a.s6_k3::after {
  background: var(--fioletowy, #ac6ca9);
}
.s6_a:hover, .s6_a:focus {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--zielony, #4aa739);
}
.s6_a:hover .s6_s, .s6_a:focus .s6_s {
  transform: translateX(5px);
  opacity: 1;
}

.s6_t {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #1a1a1a;
}

.s6_s {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
  color: var(--zielony, #4aa739);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.s6_s::after {
  content: "→";
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .s6 {
    padding: 30px 20px;
  }
  .s6_h {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .s6_a {
    padding: 25px;
  }
  .s6_t {
    font-size: 17px;
  }
}
/* =====================================================
   SEKCJA AKTUALNOSCI (mod_articles override)
   ===================================================== */
.sekcjaAktualnosci {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Stare style - zachowane dla kompatybilności */
.s1 {
  background-color: var(--k1);
  padding: 110px 20px 40px;
  position: relative;
  z-index: 1;
}

.s1_wasko {
  position: relative;
  z-index: 1;
}

.przycisk {
  display: block;
  background-color: var(--tlo-niebieskie);
  width: 280px;
  text-align: center;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: unset;
  transition: var(--transition5);
  line-height: 40px;
  padding-bottom: 3px;
}

@keyframes obrot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.s1_h {
  background: var(--tlo-niebieskie);
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  max-width: 1200px;
  width: 90%;
  margin: -100px auto 0;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}
@media (max-width: 1239px) {
  .s1_h {
    margin: -75px auto 0;
  }
}
@media (max-width: 999px) {
  .s1_h {
    margin: -75px auto 0;
  }
}
@media (max-width: 648px) {
  .s1_h {
    margin: -120px auto 20px;
  }
}

#full_img_home {
  width: 100%;
  height: calc(100vh - 125px);
  object-fit: cover;
}
@media (max-width: 1239px) {
  #full_img_home {
    height: calc(100vh - 100px);
  }
}
@media (max-width: 999px) {
  #full_img_home {
    height: calc(100vh - 75px);
  }
}

.s1_a {
  margin: 25px auto 0;
  position: relative;
}
@media (max-width: 699px) {
  .s1_a {
    margin: 25px 0;
  }
}

.przycisk:hover,
.przycisk:focus {
  background-color: var(--tlo-niebieskie-hover);
  color: #fff;
  border-radius: var(--radius);
}

p + p {
  margin: 0;
}

.s2 {
  padding: 20px;
}

.s2_h {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--tlo-niebieskie, #2563eb);
  font-weight: 700;
}

.s2_wasko {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 1100px) {
  .s2_wasko {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .s2_wasko {
    grid-template-columns: 1fr;
  }
}

.s2_a {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.s2_a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--zolty);
  transition: height 0.3s ease;
}
.s2_a.k_n::after {
  background: var(--niebieski);
}
.s2_a.k_c::after {
  background: var(--czerwony);
}
.s2_a.k_f::after {
  background: var(--fioletowy);
}
.s2_a.k_s::after {
  background: var(--k2);
}
.s2_a.s2_more::after {
  background: rgba(255, 255, 255, 0.3);
}
.s2_a.s2_more .s2_t {
  font-size: 21px;
  margin-bottom: 10px;
}
.s2_a.s2_more .s2_s {
  padding-top: 0;
}
.s2_a:hover, .s2_a:focus {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--tlo-niebieskie);
}
.s2_a:hover::after, .s2_a:focus::after {
  height: 6px;
}
.s2_a:hover .s2_s, .s2_a:focus .s2_s {
  transform: translateX(5px);
  opacity: 1;
}

.s2_t {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #1a1a1a;
}

.s2_s {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
  color: var(--tlo-niebieskie);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.s2_s::after {
  content: "→";
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .s2 {
    padding: 20px;
  }
  .s2_h {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .s2_a {
    padding: 25px;
  }
  .s2_t {
    font-size: 17px;
  }
  .s2_a.s2_more .s2_t {
    font-size: 19px;
  }
}
.s3_a {
  margin: 40px 0;
  padding: 40px 20px;
  display: block;
  background-color: var(--tlo-niebieskie);
  color: #fff;
  position: relative;
  text-decoration: none;
}

.s3_zobacz {
  font-weight: bold;
  margin-top: 10px;
}

.s3_s {
  background: #fff;
  font-size: 16px;
  color: #000;
  line-height: 30px;
  padding: 6px 20px;
  font-weight: bold;
  border-radius: var(--radius-5);
  display: block;
  margin: 40px 0 0 auto;
  width: 160px;
  text-align: center;
  transition: var(--transition5);
}
@media (max-width: 999px) {
  .s3_s {
    margin: 40px 0 0 0;
  }
}

.s3_a:hover,
.s3_a:focus {
  color: #fff;
  background-color: var(--tlo-niebieskie-hover);
  border-radius: var(--radius);
}

.s4 {
  padding: 0 20px;
}

.s4_le {
  width: 280px;
  margin: 0 auto 20px;
}

.s4_text {
  margin: 20px 0;
}

.s4_text p,
.s5_text p {
  margin-top: 20px;
}

.s1.s5 {
  margin: 40px 0 0;
  padding: 40px 20px;
}

.s5_text {
  margin-bottom: 20px;
}

.s1_le.s5_le {
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .s4_wasko {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .s4_le {
    flex: 0 0 280px;
    margin: 0;
  }
}
@media (min-width: 501px) {
  .s1_wasko {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .s1_le::before {
    left: -20px;
  }
  .s1_a.przycisk {
    margin-left: 0;
  }
  .s1_pr {
    margin: 0;
    flex: 0 0 155px;
  }
  .s1_pr::before {
    right: 0;
  }
  .s3_a {
    font-size: 130%;
    max-width: 660px;
    margin: 40px auto;
    border-radius: var(--radius);
    padding: 40px;
  }
}
@media (min-width: 900px) {
  .s2_a {
    flex: 1;
  }
  .s1_pr {
    margin: 0;
    flex: 0 0 300px;
  }
  .s4_le {
    flex: 0 0 400px;
  }
}
@media (min-width: 1000px) {
  .s1 {
    padding: 150px 20px 60px;
  }
  .s1_wasko {
    gap: 100px;
  }
  .s1_pr {
    margin: 0;
    flex: 0 0 400px;
  }
  .s3_a {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 80px;
    position: relative;
    border-radius: var(--radius);
  }
  .s2_zobacz {
    font-size: 150%;
    font-weight: bold;
  }
  .s3_s {
    position: absolute;
    right: 80px;
    bottom: 40px;
    background: #fff;
    color: #000;
    line-height: 30px;
    padding: 6px 20px;
    font-weight: bold;
    border-radius: var(--radius);
  }
}
@media (min-width: 1240px) {
  .s1 {
    padding: 220px 0 100px;
  }
  .s1_wasko {
    max-width: var(--sz1200);
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  .s1_le {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .s1_le::before {
    left: -100px;
  }
  .s1_p {
    margin: 30px 0 40px;
  }
  .s1_pr {
    flex: 0 0 445px;
  }
  .s2 {
    padding: 20px;
  }
  .s2_wasko {
    margin: 40px auto 0;
  }
  .s3_a {
    margin: 35px auto;
  }
  .s4 {
    padding: 100px 0;
    background-color: var(--k2);
  }
  .s4_wasko {
    max-width: var(--sz1200);
    margin: auto;
    justify-content: space-between;
    gap: 80px;
  }
  .s4_le {
    flex: 1;
  }
  .s4_pr {
    flex: 1;
  }
  .s4_text {
    margin: 30px 0 40px;
  }
  .s1.s5 {
    margin: 0;
    padding: 100px 0;
  }
  .s5_text {
    margin: 30px 0 40px;
  }
} /*  */
@media (min-width: 124000px) {
  @keyframes obrot-l {
    from {
      transform: rotate(359deg);
    }
    to {
      transform: rotate(0deg);
    }
  }
  .animate {
    animation: scale 1.5s both;
  }
  @keyframes scale {
    50% {
      transform: scale(0.5);
    }
    100% {
      transform: scale(1);
    }
  }
  .s1_g2 {
    position: absolute;
    background: url(../img/gw2.png) no-repeat;
    z-index: 2;
    width: 100px;
    height: 100px;
    background-size: contain;
    left: 5%;
    bottom: 0;
  }
  .s1::before {
    content: "";
    position: absolute;
    background: url(../img/gw3.png) no-repeat bottom;
    z-index: 2;
    width: 64px;
    height: 65px;
    right: 50%;
    top: 25%;
    animation: obrot 40s infinite linear, scale 10s infinite linear;
  }
  .s1::after {
    content: "";
    position: absolute;
    background: url(../img/gw2.png) no-repeat bottom;
    z-index: 2;
    width: 75px;
    height: 55px;
    right: 20px;
    top: 50%;
  }
}
