/* Leaf Decorations Styles */

/* Leaf background decorations */
#leaf-decorations-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden; /* Megakadályozza, hogy a levelek kilógjanak */
}

.leaf-decoration {
  position: absolute;
  width: 65px;
  height: 65px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

/* Ensure content stays above decorations */
.main-container > *:not(#leaf-decorations-container) {
  position: relative;
  z-index: 1;
}
