/* Оверлей для текста на картинках */
.position-relative {
    position: relative;
}
/* Затемнение колонки при наведении */
.column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 250, 231, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.column:hover::before {
    opacity: 1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.overlay-text {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: all 0.3s ease;
}

.column:hover .overlay-text {
    transform: scale(1.05);
    z-index: 3
}

/* Дополнительный контент (будет появляться при активации) */
.column-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    /*opacity: 1;*/
    /*transform: translateY(20px);*/
    transition: all 0.4s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
    /*белый фон */
    background: rgba(255, 255, 255, 0.95);
}
/*появление текста*/
.column.active .column-content {
    opacity: 0.9;
    transform: translateY(0);
    pointer-events: none;
}

/*Анимация при наведении на текст в колонках*/
/*.content-item:hover {*/
/*    border-left: 4px solid #2c3e50;*/
/*    transform: translateX(5px);*/
/*}*/
