
.gallery-section {
    background: linear-gradient(180deg, #000 0%, #000 50%, #fff 50%, #fff 100%);
    padding: 60px 0;
    overflow: hidden;
}

.gallery-title {
    font-family: Manrope;
    font-weight: 700;
    font-size: 48px;
    leading-trim: Cap height;
    line-height: 64px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    padding-bottom: 60px;
}

#galleryCarousel {
    position: relative;
    padding: 0 50px;
    margin-bottom: 20px;
    overflow: visible;
}

#gallerySwiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gallery-slide {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 400px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

#galleryCarousel .gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#galleryCarousel .gallery-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#galleryCarousel .gallery-btn:hover {
    background: #007bff;
    color: #fff;
}

#galleryCarousel .gallery-btn i {
    font-size: 1.2rem;
}
/* Responzivní úpravy */
@media (max-width: 1920px) {
    #galleryCarousel {
        padding: 0 30px;
    }

    .gallery-img {
        height: auto;
     }
    .gallery-slide {
        max-width: 450px;
    }
}


/* Responzivní úpravy */
@media (max-width: 768px) {
    #galleryCarousel {
        padding: 0 30px;
    }

    .gallery-img {
        height: auto;
    }
    .gallery-slide {
        width: auto;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    #galleryCarousel {
        padding: 0 20px;
    }

    .gallery-img {
        height: 200px;
    }
    .gallery-slide {
        width: 95%;
        max-width: 300px;
    }
}

.gallery-swiper-container {
    position: relative;
    padding: 0 50px;
    margin-bottom: 20px;
    overflow: visible;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

#gallerySwiper .swiper-slide-duplicate-prev,
#gallerySwiper .swiper-slide-duplicate-next {
    opacity: 0.5;
    transition: opacity 0.15s;
}

#gallerySwiper .swiper-slide-prev,
#gallerySwiper .swiper-slide-next {
    opacity: 1;
    transition: opacity 0.15s;
} 