/* Carousel kontrol ikonları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-size: 50% 50%;
}

/* Carousel caption */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    bottom: 20px;
}

/* Carousel item yüksekliğini tamamen serbest bırak */
.carousel-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: auto !important;
}

/* Resmi container'a tam sığdır */
.carousel-img {
    max-height: 500px; /* resim en fazla 500px yüksek olsun */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Fade efekti */
.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Responsive caption */
@@media (max-width: 576px) {
    .carousel-caption h3 {
        font-size: 1rem;
    }
}