/* Logo a text vlevo, logo stejně velké jako v základních stylech */
.text-container {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.nadpis-vlevo h2,
.text-container > h2,
.text-container > .nadpis-vlevo h2 {
    text-align: left;
    font-size: 5vh;
    color: white;
    margin-top: 0.2em;
    margin-bottom: 1em;
    margin-left: 0;
    width: 100%;
}

/* Tabulka vycentrovaná a na max 80% šířky */
.vyrobky-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}
.vyrobky {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    color: #111;
    font-size: 1.2em;
    box-shadow: 0 2px 14px #0002;
    border-radius: 1em;
    overflow: hidden;
}
.vyrobky th, .vyrobky td {
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
    background: white;
    color: black;
    font-weight: normal;
}
.vyrobky p {
    font-size: 130%;
    text-align: center;
    margin: 0.5em 0 0 0;
    font-weight: bold;
    color: black;
}
.vyrobky img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0.4em auto;
    border-radius: 12px;
    cursor: pointer;
}

/* Nadpis videí vlevo */
.text-container > h2,
.text-container > .videos-title {
    text-align: left;
    margin-left: 0;
}

/* Videa vedle sebe, uprostřed a na 80% šířky */
.bottom-videos {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2em 0 3em 0;
}
.video-list {
    width: 80%;
    display: flex;
    flex-direction: row;        /* Videa vedle sebe */
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
}
.bottom-videos video {
    width: 100%;
    max-width: 100%;
    border-radius: 11px;
    box-shadow: 0 1px 10px #0002;
    background: #222;
    display: block;
}

/* Plná velikost obrázku */
.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}
.fullscreen img {
    max-width: 100%;
    height: auto;
    max-height: 90%;
    border-radius: 8px;
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}
.fullscreen.show {
    opacity: 1;
    visibility: visible;
}
.fullscreen.show img {
    transform: scale(1);
}

/* Responzivita */
@media (max-width: 1100px) {
    .vyrobky, .video-list {
        width: 95%;
    }
    .video-list {
        gap: 1em;
    }
    .bottom-videos video {
        max-width: 260px;
    }
}
@media (max-width: 900px) {
    .vyrobky, .video-list {
        width: 100%;
    }
    .video-list {
        gap: 0.7em;
    }
    .bottom-videos video {
        max-width: 180px;
    }
}
@media (max-width: 700px) {
    #logo {
        width: 90%;
        max-width: 220px;
    }
    .vyrobky, .video-list {
        width: 100%;
        font-size: 1em;
    }
    .nadpis-vlevo h2,
    .text-container > h2,
    .bottom-videos h2 {
        font-size: 1.5em;
    }
    /* Na malých mobilech videa už pod sebe */
    .video-list {
        flex-direction: column;
        align-items: center;
    }
    .bottom-videos video {
        max-width: 100%;
    }
}