/* Polish letters background for hero section */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.polish-letter {
  position: absolute;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive;
  font-weight: bold;
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite;
  user-select: none;
}

.polish-letter:nth-child(2n) {
  animation-delay: 2s;
  transform: rotate(10deg);
}

.polish-letter:nth-child(3n) {
  animation-delay: 4s;
  transform: rotate(-8deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(-15deg);
  }
  50% {
    transform: translateY(-10px) rotate(-12deg);
  }
}

/* Ensure hero content is above background */
.hero {
  position: relative;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .polish-letter {
    font-size: 0.8em !important;
  }
  
  .polish-letter:nth-child(1) { top: 15%; left: 10%; }
  .polish-letter:nth-child(2) { top: 25%; right: 5%; }
  .polish-letter:nth-child(3) { top: 65%; left: 5%; }
  .polish-letter:nth-child(4) { top: 75%; right: 10%; }
  .polish-letter:nth-child(5) { top: 45%; left: 10%; }
  .polish-letter:nth-child(6) { top: 80%; left: 15%; }
  .polish-letter:nth-child(7) { top: 30%; right: 15%; }
  .polish-letter:nth-child(8) { top: 20%; left: 20%; }
}
