body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.top-menu a {
    margin-left: 20px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

.top-menu a:hover {
    text-decoration: underline;
}

/* KONTAKT ODKAZ */
.contact-link {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: rgba(0, 0, 0, 0.9);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    pointer-events: none;
}

.modal.show {
    display: flex;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* GALERIE */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    justify-content: center;
    gap: 30px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.gallery img:hover {
    transform: scale(1.03);
}

.caption {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

#lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ŠIPKY V LIGHTBOXU */
#lightbox .arrow {
    position: fixed;
    bottom: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    transition: background 0.2s ease;
    z-index: 2001;
}

#lightbox .arrow.left {
    left: 30px;
}

#lightbox .arrow.right {
    right: 30px;
}

#lightbox .arrow:hover {
    background: rgba(0,0,0,0.6);
}

/* POPISEK V LIGHTBOXU */
#lightbox-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 0 0 10px black;
}

/* --- Mobilní verze --- */
@media (max-width: 600px) {
    .gallery .caption {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 8px 0;
        text-align: center;
    }

    #lightbox .arrow {
        font-size: 2.4rem;
        bottom: 20px;
    }
}

/* --- TEXTOVÝ BLOK (BIO) --- */
.bio-text {
    max-width: 700px;
    margin: 0 auto 2em auto;
    padding: 0 1em;
    font-size: 0.95em;
    line-height: 1.4;
    text-align: center;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

.bio-text h1 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* PUBLIKACE */
.publikace-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.pub-item img {
    width: 250px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* SKRYTÍ DEFAULTNÍ ŠIPKY SUMMARY */
summary {
    list-style: none !important;
}
summary::-webkit-details-marker {
    display: none !important;
}
summary::marker {
    display: none !important;
}
