

.section-title {
    font-size: 1.6rem;
}

.section-paragraph-custom {
    line-height: 1.7;
}



/* --- Zvětšení obrázku (Lightbox) --- */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    object-fit: contain;
    border: 3px solid var(--dark-concrete); /* Ujisti se, že máš tuto proměnnou definovanou */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--army-green); /* Ujisti se, že máš tuto proměnnou definovanou */
}

.cursor-pointer {
    cursor: pointer;
}