 /* =========================
   CAROUSEL ANA YAPI
========================= */

.carousel {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    background: #fff;
}

/* Responsive oran – grid uyumlu */
.carousel-inner {
    aspect-ratio: 16 / 9;
}

/* Eski tarayıcı fallback */
@supports not (aspect-ratio: 16 / 9) {
    .carousel-inner {
        height: 420px;
    }
}

.carousel-item {
    height: 100%;
}

/* =========================
   RESİM ALANI
========================= */

.carousel-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Resim */
.carousel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* alanı doldurur, hafif kırpabilir */
    transition: transform .4s ease;
}

/* Hover efekti */
.carousel-item:hover img {
    transform: scale(1.03);
}

/* =========================
   CAPTION
========================= */

.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
    padding: 25px 20px 15px;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    border-radius: 0;
}

.carousel-caption h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.carousel-caption p {
    font-size: 14px;
    margin-bottom: 0;
}

/* =========================
   ALT İÇERİK BLOĞU
========================= */

.carousel-content {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    color: #495057;
}

/* =========================
   CAPTION PROFESYONEL
========================= */
/* =========================
   YUMUŞAK ALT GRADIENT CAPTION
========================= */

.carousel-item {
    position: relative;
}

.carousel-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;

    padding: 14px 18px;
    text-align: center;

    /* Siyah bant yerine gradient */
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.05) 80%,
        rgba(0,0,0,0) 100%
    );

    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Sidebar’da daha minimal */
@media (max-width: 992px) {
    .carousel-caption {
        font-size: 13px;
        padding: 10px 14px;
    }
}
