.fotoBanner {
  position: relative; /* nutné pro absolutní pozici pastelk */
  width: 100%;
  overflow: hidden;
}

.fotoBanner .banner-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.fotoBanner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  padding: 3rem;
  z-index: 2;
}

.fotoBanner .banner-text::before{
    content: "";
  position: absolute;
  inset: 0;
  background-color: var(--colorBackground);
  opacity: 0.5; /* pouze pozadí je průhledné */
  z-index: -1;
}

.rainbow-frame {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  transform: translateY(40px); /* posun 10px dolů */
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.rainbow-frame svg {
  flex-shrink: 0;
  margin-right: 0; /* nalepené vedle sebe */
}
