/* Galeri İçin Özel CSS */
.gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item a {
    display: block;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.gallery-item .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.hover-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay i {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .hover-overlay i {
    opacity: 1;
    transform: translateY(0);
}

/* Fancybox özelleştirmeleri */
.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.93);
}

.fancybox__caption {
    font-size: 16px;
    padding: 16px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

.fancybox__counter {
    color: #fff;
    font-size: 15px;
    opacity: 0.85;
}

.fancybox__toolbar {
    padding: 16px;
}

.fancybox__toolbar__items {
    color: #fff;
}

.fancybox__toolbar__items button {
    color: #fff;
}

/* Fare işaretçisi stilleri */
.carousel__button.is-prev,
.carousel__button.is-next {
    opacity: 0.85;
    transition: all 0.2s;
}

.carousel__button.is-prev:hover,
.carousel__button.is-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel__button.is-close {
    top: 20px;
    right: 20px;
}
