/* Drevený rám */
.wooden-frame {
    width: 100%;
    height: 100%;
    
    transform: scale(2);
    opacity: 0;
    overflow: hidden;
}

/* Animácia pre drevený rám */
@keyframes frameAppear {
    0% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.landscape-image__container {
    overflow: hidden;
    position: relative;
    top: 20px;
    left: 50%;
    transform: translateX( -50%);
    width: 90%;
    height: 92%;
}
@media screen and (max-width: 480px) {
    .landscape-image__container {
        top: 2px;
    }
}

.landscape-image {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.frame-animate {
    overflow: hidden;
    animation: frameAppear 0.8s ease-out forwards;
}

/* Bounce animácia pre obrázok */
@keyframes imageBounce {
    0% {
        top: -400px; /* začína úplne vysoko */
    }
    40% {
        top: 15px; /* RÝCHLY pád do rámu! */
    }
    55% {
        top: 5px; /* tvrdý odraz */
    }
    70% {
        top: 12px; /* menší odraz */
    }
    80% {
        top: 8px; /* posledný malý odraz */
    }
    100% {
        top: 15px; /* zastaví sa v ráme */
    }
}

.image-animate {
    animation: imageBounce 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}