/* Pozycjonowanie całego bloku */
.hover-text-effect {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Ukrycie i sformatowanie nagłówka jako nakładki */
.hover-text-effect h2.wpb_heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7); /* Czarne, półprzezroczyste tło */
    color: #ffffff !important; /* Biały tekst */
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
    font-size: 16px;
    white-space: nowrap;
}

/* Pokazanie napisu po najechaniu myszką */
.hover-text-effect:hover h2.wpb_heading {
    opacity: 1;
}