/* ===== FILMFLIX HOVER CARDS ===== */

.hover-card-container {
    transition: transform .25s ease, box-shadow .25s ease;
    z-index: 1;
    position: relative;
}

.hover-card-container:hover {
    transform: scale(1.10);
    z-index: 20;
}

.block-images {
    overflow: hidden;
    border-radius: 12px;
}

/* overlay */
.movie-hover-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(25px);
    transition: all .25s ease;
    padding: 14px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.85) 40%,
        rgba(0,0,0,0) 100%
    );
}

.hover-card-container:hover .movie-hover-info {
    opacity: 1;
    transform: translateY(0);
}

/* text */
.movie-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.movie-genres {
    color: #d0d0d0;
    font-size: 13px;
    margin-bottom: 3px;
}

/* watch button */
.watch-btn {
    background: #e50914;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.watch-btn:hover {
    background: #ff202a;
    color: #fff;
}

/* plus */
.watchlist-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.18);
    color: #fff;
}

.movie-hover-info{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:14px;
    background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.85) 45%, rgba(0,0,0,0) 100%);
    opacity:0;
    transform:translateY(20px);
    transition:all .25s ease;
    z-index:5;
}

.hover-card-container:hover .movie-hover-info{
    opacity:1;
    transform:translateY(0);
}

/* sjednocení tlačítek overlaye */
.movie-actions{
    min-height:44px;
}

.movie-actions .watch-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.movie-actions .watchlist-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:10px;
}
