/* ========================================================================== */
/* GALLERY */
/* ========================================================================== */
/* LEGACY gallery wrapper helper */
.foto{  display: block;}

/* ====================================================================== */
/* LEGACY FLOAT GALLERY SYSTEM */
/* Původní gallery layout kompatibilita */
/* Modern gallery používá flexbox */
/* ====================================================================== */
.photo-link{
    display:block;
    float:left;

    width:140px;

    margin:10px;
    padding:8px;

    background:#18222c;

    border:1px solid #2d3d4d;
    border-radius:10px;

    overflow:hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

    text-align:center;
}

.photo-link:hover{
    transform:translateY(-2px);

    background:#22303d;

    border-color:#486178;

    box-shadow:var(--shadow-hover);
}

.photo-link img{
    width:100%;
    height:auto;

    border-radius:var(--radius-xs);

    display:block;

    transition:transform 0.25s ease;
}

.photo-link:hover img{
    transform:scale(1.06);
}

.no-hover:hover{
    transform:none !important;

    box-shadow:none !important;

    background:#18222c !important;

    border-color:#2d3d4d !important;
}

.no-hover:hover img{
    transform:none !important;
}

/* MODERN GALLERY */
.modern-gallery{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:flex-start;
}

.modern-gallery .photo-link{

    display:block;

    width:125px;
    flex:0 0 125px;

    margin:0 !important;

    padding:10px;

    background:
        linear-gradient(
            180deg,
            rgba(28,40,52,.96),
            rgba(20,30,40,.96)
        );

    border:1px solid #324354;

    border-radius:18px;

    text-align:center;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;

    float:none !important;
    clear:none !important;

    position:relative;

    box-shadow:
        0 0 14px rgba(0,0,0,.28);

    overflow:hidden;
}

.modern-gallery .photo-link:hover{

    transform:translateY(-4px);

    background:
        linear-gradient(
            180deg,
            rgba(38,54,70,.98),
            rgba(26,38,50,.98)
        );

    border-color:#4d79ff;

    box-shadow:
        0 0 20px rgba(0,0,0,.38),
        0 0 12px rgba(77,121,255,.18);
}

.modern-gallery .photo-link img{

    display:block;

    width:100%;

    height:auto;

    aspect-ratio:4 / 3;

    object-fit:cover;

    border-radius:var(--radius-sm);

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.modern-gallery .photo-link:hover img{
    transform:scale(1.06);
}

.modern-gallery img{
    border-radius:10px;
}

.modern-gallery br{
    display:none;
}

.modern-gallery table{
    display:contents;
}

.modern-gallery td{
    display:block;
}

.modern-gallery a{
    vertical-align:top;
}

.modern-gallery .clear{
    display:none;
}

.gallery-panel{

    background:
        linear-gradient(
            180deg,
            rgba(24,34,44,.92),
            rgba(18,26,34,.92)
        );

    border:1px solid var(--color-border);

    border-radius:var(--radius-xl);

    padding:24px;

    margin-bottom:25px;

    box-shadow:var(--shadow-lg);

    overflow:hidden;
}

.gallery-panel h2{

    margin-top:0;

    margin-bottom:20px;

    color:#ffffff;

    font-size:28px;

    font-weight:600;
}

.gallery-panel h3{

    margin-top:0;

    margin-bottom:18px;

    text-align:center;

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    letter-spacing:.3px;

    line-height:1.2;
}

.gallery-panel h3::after{

    content:"";

    display:block;

    width:120px;

    height:2px;

    margin:14px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4d79ff,
            transparent
        );
}
/* ====================================================================== */
/* GALLERY LOAD ANIMATIONS */
/* ====================================================================== */

.modern-gallery .photo-link{

    opacity:0;

    transform:translateY(6px) scale(.98);

    animation:galleryFadeIn .45s ease forwards;
}

/* jemné zpoždění dlaždic */

.modern-gallery .photo-link:nth-child(2){

    animation-delay:.04s;
}

.modern-gallery .photo-link:nth-child(3){

    animation-delay:.08s;
}

.modern-gallery .photo-link:nth-child(4){

    animation-delay:.12s;
}

.modern-gallery .photo-link:nth-child(5){

    animation-delay:.16s;
}

.modern-gallery .photo-link:nth-child(6){

    animation-delay:.20s;
}

@keyframes galleryFadeIn{

    to{

        opacity:1;

        transform:translateY(0) scale(1);
    }
}
