#home-page-wrapper {
    height: calc(100vh - 76px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#home-page-wrapper .split-container {
    flex: 1;
    display: flex;
    height: 100%;
}

.split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.split-left {
    background-color: #f4f4f4;
}

.split-right {
    background: linear-gradient(rgba(215, 203, 190, 0.85), rgba(215, 203, 190, 0.85)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920') center/cover;
}

.split-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.1;
}

/* Mobil nézet javítása */
@media (max-width: 768px) {
    #home-page-wrapper .split-container {
        flex-direction: column;
    }
    .split-container h2 {
        font-size: 2rem;
    }
}

/* OKOS ÜVEG (OVERLAY) EFFECT */
.split-left::after, .split-right::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 2;
    pointer-events: none; 
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.split-left:hover, .split-right:hover {
    flex: 1.25; 
}

.split-container:hover .split-left:not(:hover)::after,
.split-container:hover .split-right:not(:hover)::after {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}