﻿/*.carousel-item img {
    height: 450px;
    object-fit: cover;
}*/
/* Carousel wrapper */
#movieCarousel {
    max-width: 800px; /* Centered fixed width */
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* Caption styling */
.carousel-caption {
    bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 8px;
}

    .carousel-caption h5 {
        font-size: 1.2rem;
        font-weight: bold;
        color: #fff;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin: 0;
        color: #f1f1f1;
    }

/* Indicators round dots */
.carousel-indicators [data-bs-target] {
    background-color: #000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 10px;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: fill; /* 👈 stretch karayla */
    border-radius: 15px;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 250px;
    }
}
