/* Carousel Styles */
.swiper-container-wrapper {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    position: relative;
    background-color: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    z-index: 10;
}

.swiper-slide-content h3 {
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation & Pagination Colors */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

/* Gallery Improvements */
.galerie {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.galerie-header {
    margin-bottom: 3rem;
    text-align: center;
}

.galerie-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.categories-nav {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.categories-nav li button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.categories-nav li button:hover {
    background: #e0e0e0;
}

.categories-nav li button.active {
    background: #333;
    color: #fff;
    border-color: #333;
}