/* Doplňkové styly pro galerii */
.gallery-header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin: 30px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.back-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.gallery-title {
    font-size: 3rem;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 0 0;
}

/* Mřížka pro galerii */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Jednotlivé fotografie - malé náhledy */
.photo-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1; /* Čtvercové náhledy */
}

.photo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.photo-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* Overlay s číslem fotky */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px 10px 10px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Footer galerie */
.gallery-footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

.gallery-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic
