* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ecd19e;
}

/* Centrování a velikost carouselu */
.carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 600px;
    transform: translate(-50%, -50%);
}

.picture-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0000004D;
}

/* Obrázky v řadě a přechod */
.picture {
    width: 500%; 
    height: 100%;
    display: flex;
    transition: 1s ease;
}

/* Obrázky zachovají proporce */
 .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation {
    position: absolute;
    bottom: 8%;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Tlačítka navigace */
.bar {
    width: 50px;
    height: 10px;
    margin: 7px;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
}

.bar:hover,
.bar:focus {
    background-color: #ffffff95;
}

/* Skrytí radio buttonů */
input[name="r"] {
    display: none;
}

/* Posun obrázků podle zvoleného radio buttonu */
#r1:checked ~ .picture {
    transform: translateX(0%);
}

#r2:checked ~ .picture {
    transform: translateX(-20%);
}

#r3:checked ~ .picture {
    transform: translateX(-40%);
}

#r4:checked ~ .picture {
    transform: translateX(-60%);
}

#r5:checked ~ .picture {
    transform: translateX(-80%);
}
