body {
    margin: 0;
    font-family: sans-serif;
    background:
        linear-gradient(rgba(101,162,231,0.5), rgba(101,162,231,0.5)),
        url("pozadi.jpg");
    background-size: cover;
    background-attachment: fixed;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #02025a;
    padding: 10px;
}

#logo, #rollmob {
    height: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
}

#home {
    color: rgb(61,157,247);
}

.hidden {
    display: none;
}

#tlahead {
    background: rgb(5,128,243);
    padding: 7px 14px;
    border-radius: 20px;
}

/* TITLE */
.main-title {
    text-align: center;
    color: white;
    padding-top: 35px;
}

#highlight {
    color: rgb(53,231,255);
    text-decoration: underline;
    display: block;
}

.inline { display: inline; }
.block { display: inline; }

/* TABLE */
table {
    margin: auto;
    border-spacing: 0;
}

th {
    border: 2px solid white;
    color: white;
    padding: 10px;
}

/* ARROW */
.arrow {
    display: block;
    margin: 25px auto;
    width: 60px;
}

/* GALLERY */
.gallery-img {
    width: 90%;
    display: block;
    margin: auto;
    padding-top: 40px;
}

/* ABOUT */
.about {
    background: white;
    padding: 20px;
}

.section-title {
    font-size: 1.4em;
}

#section-highlight {
    color: #5ae6ff;
    text-decoration: underline;
}

.text {
    color: #a8a5a1;
    font-size: 0.8em;
}

.btn {
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.85em;
}

.light {
    border: 2px solid #5ae6ff;
    color: #5ae6ff;
}

.dark {
    background: #02025a;
    color: white;
}

/* RESPONSIVE */
@media (min-width:800px) {
    .hidden {
        display: inline;
    }

    #rollmob {
        display: none;
    }

    .gallery {
        display: flex;
        justify-content: center;
        gap: 1%;
    }

    .gallery-img {
        width: 30%;
        padding: 0;
    }

    .about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 80px;
    }

    #highlight {
        display: inline;
    }

    .block {
        display: block;
    }
}
.malyob{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    margin-top: 20px;
    margin-left: -8px;
}
.malyob{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
/* Obrázky vpravo dole */
.corner-images {
    position: fixed;      /* pevně v okně */
    bottom: 10px;
    right: 10px;
    display: flex;        /* pro více obrázků vedle sebe */
    gap: 5px;
    z-index: 1000;        /* aby byly nad vším ostatním */
}

.corner-images img {
    width: 50px;          /* velikost pro PC */
    height: 50px;
    border-radius: 50%;   /* kruh */
    object-fit: cover;    /* zachová proporce */
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,0.5); /* hezký efekt */
    transition: transform 0.2s;
}

.corner-images img:hover {
    transform: scale(1.1); /* malá animace při hoveru */
}

/* Responzivita pro mobil */
@media (max-width: 600px) {
    .corner-images img {
        width: 35px;
        height: 35px;
    }

    .corner-images {
        gap: 3px;
        bottom: 5px;
        right: 5px;
    }
}
