﻿
#lll{
    background-color:white;
}



.rezervaceRP {
    position: fixed;
    top: 30px;
    right: 15px;
    padding: 16px 20px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    color: #ffffff;
    background: #782d98;
    /*    background: linear-gradient(135deg, #0a84ff, #0066ff);*/
    border: 5px solid rgba(255,255,255,0.45);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25), inset 0 0 12px rgba(255,255,255,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden; /* nutné pro shine efekt */
    position: fixed; /* zůstane nahoře */
    z-index: 9999; /* nad vším */
}

    /* shine efekt */
    .rezervaceRP::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100% );
        transform: skewX(-25deg);
        animation: shineEffect 20s ease-in-out infinite;
        pointer-events: none; /* aby neblokoval kliknutí */
    }

    .rezervaceRP:hover {
        transform: translateY(-4px);
        background: linear-gradient(135deg, #0a7aff, #0052cc);
        border-color: rgba(255,255,255,0.7);
        box-shadow: 0 12px 28px rgba(0,0,0,0.32), inset 0 0 18px rgba(255,255,255,0.35);
        /* při hoveru animaci vypneme, aby nerušila interakci */
        animation: none;
    }
        @keyframes shineEffect {
    0% {
        left: -100%;
    }

    10% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}


















.lista {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index:1000;
}



    .lista ul {
        display: block;
        width: 100%;
        height: 100%;
        list-style: none;
        text-decoration: none;
    }

    .lista li a {
        display: block;
        padding: 8px 16px;
        list-style: none;
        text-decoration: none;
        
    }

.lista .btnl {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 800;
    width: 60px; /* jen ikona je vidět */
    overflow: hidden; /* ořízne text */
    white-space: nowrap;
    transition: width 0.5s ease;
}

    /* Hover efekt: zobrazí text */
   .lista .btnl:hover {
        width: 230px;
    }



.lista .fbl {
    background: #4267B2;
    border: 5px solid #4267B2;
}

  .lista .fbl:hover {
        background: white;
        color: #4267B2;
    }

.lista .twl {
    background-color: black;
    color: white;
    border: 5px solid black;
}

   .lista .twl:hover {
        background-color: white;
        color: black;
    }

.lista .ikxl {
    background-color: black;
    border-radius: 3px;
}

.lista .messengerl {
    background-color: white;
    color: black;
    border: 5px solid dodgerblue;
}

   .lista .messengerl:hover {
        background-color: white;
        color: dodgerblue;
        border: 5px solid dodgerblue;
    }

/*.tell {
    background-color: dodgerblue;
    color: black;
    border: 5px solid dodgerblue;
}

    .tell:hover {
        background-color: white;
        color: dodgerblue;
        border: 5px solid dodgerblue;
    }*/

.lista .instagraml {
    background-color: white;
    color: black;
    border: 5px solid crimson;
}

   .lista .instagraml:hover {
        background-color: white;
        color: crimson;
        border: 5px solid crimson;
    }


.lista .viberl {
    background-color: #665CAC;
    color: black;
    border: 5px solid #665CAC;
}

   .lista .viberl:hover {
        background-color: white;
        color: #665CAC;
        border: 5px solid #665CAC;
    }

.lista .wal {
    background: #25D366;
    border: 5px solid #25D366;
}

   .lista .wal:hover {
        background: white;
        color: #25D366;
    }

.lista .ikwal {
    background: #25D366;
    border-radius: 100px;
}

.lista .btnl svg,
.lista .btnl img {
    flex-shrink: 0;
}









@media (max-width: 811px) {
    .lista {
        display: inline-flex;
        position: absolute;
        left: 0px;
        text-align: center; /* zarovná inline-block obsah na střed */
        margin: 0 auto; /* vystředí kontejner, pokud má pevnou šířku */
        width: 100%; /* kontejner roztáhne na celou stránku */
        position: relative; /* potřebné pro zarovnání */
        z-index: 100;
    }

        .lista ul {
            display: inline-flex;
            width: auto;
            list-style: none;
            padding: 0;
            margin: 0 auto;
        }

        .lista li a {
            display: inline-flex;
            padding: 8px 16px;
            list-style: none;
            text-decoration: none;
        }

        .lista .btnl:hover {
            width: 60px;

        }

        .lista .instagraml:hover {
            background-color: gold;
        }


        .lista .messengerl:hover {
            background-color: gold;
        }








    .rezervaceRP {
        top: 15px;
        right: 10px;
        max-width: 250px;
        max-height: 50px;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.4px;
    }








}
        