/* ================================
   Seasonal HERO Styling (Christmas)
   ================================ */

/* Główna sekcja hero z trybem świątecznym */
.hero.hero-seasonal {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 28px;
  background: #020617; /* ciemne tło */
}

/* TYLKO normalne dzieci mają warstwę nad tłem – NIE płatki */
.hero.hero-seasonal > :not(.snowflake) {
  position: relative;
  z-index: 1;
}

/* LEWA KOLUMNA – tekst z gradientem od prawej do lewej */
.hero.hero-seasonal .hero-seasonal-text {
  position: relative;
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px;
  border-radius: 26px;
  background: linear-gradient(
    270deg,
    rgba(2, 6, 23, 0.98) 0%,
    rgba(7, 26, 40, 0.92) 45%,
    rgba(7, 26, 40, 0.75) 80%,
    rgba(7, 26, 40, 0.4) 100%
  );
  color: #f9fafb;
}

.hero.hero-seasonal .hero-seasonal-text h1 {
  position: relative;
  z-index: 2; /* tekst nad czapką */
  color: #ffffff;
  margin-top: 26px; /* żeby czapka nie zakrywała pierwszego słowa */
  margin-bottom: 10px;
}

.hero.hero-seasonal .hero-seasonal-text .hero-subtitle {
  color: #e5e7eb;
  margin-bottom: 14px;
}

/* Lista punktowana */
.hero-festive-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  color: #e5e7eb;
  font-size: 0.98rem;
}

.hero-festive-list li {
  margin-bottom: 6px;
}

.hero-festive-list li::before {
  content: "•";
  margin-right: 6px;
  color: #22c55e;
}

/* Przyciski */
.hero.hero-seasonal .hero-buttons {
  margin-top: 4px;
}

/* Tekst na dole – jaśniejszy, czytelny na gradiencie */
.hero.hero-seasonal .hero-note {
  margin-top: 14px;
  color: #d1d5db;
}

/* Czapka Mikołaja – przypięta do bloku tekstowego */
.hero.hero-seasonal .hero-seasonal-text .santa-hat {
  position: absolute;
  top: 4px;
  left: 0;
  width: 85px;
  height: auto;
  transform: rotate(-30deg);
  pointer-events: none;
  opacity: 0.95;                 /* subtelna przezroczystość */
  z-index: 1;                    /* pod tekstem nagłówka, nad tłem */
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

/* PRAWA KOLUMNA – większa grafika */
.hero.hero-seasonal .hero-seasonal-image {
  flex: 0 0 44%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.hero.hero-seasonal .hero-seasonal-image img {
  max-width: 120%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

/* MOBILE – układ jeden pod drugim */
@media (max-width: 768px) {
  .hero.hero-seasonal {
    flex-direction: column;
    gap: 20px;
  }

  .hero.hero-seasonal .hero-seasonal-text {
    flex: 1 1 auto;
    padding: 20px 16px 22px;
  }

  .hero.hero-seasonal .hero-seasonal-image {
    padding: 12px;
    border-radius: 22px;
    flex: 1 1 auto;
  }

  .hero.hero-seasonal .hero-seasonal-text .santa-hat {
    top: 3px;
    left: 0;
    width: 75px;
    position: absolute;
    transform: rotate(-30deg);
  }
}

/* Płatki śniegu (te generowane JS-em) – nad wszystkim */
.hero.hero-seasonal .snowflake {
  z-index: 3; /* ponad tłem i zdjęciem */
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.7));
}
