/* Styles for slider section */

/* Center caption within slider */
.carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
}

/* Limit carousel dimensions and maintain aspect ratio */
#mainCarousel {
    max-width: 1920px;
    margin: 0 auto;
}

/* Dark overlay for better readability */
#mainCarousel .carousel-item {
    position: relative;
}

/* #mainCarousel .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
} */


/* Domyślnie duże ekrany – bez zmian */
#mainCarousel .carousel-item img {
    height: clamp(420px, 45vw, 800px);
    object-fit: cover;
    object-position: center;
}

/* TELEFONY: pokazuj całe zdjęcie, bez kadrowania */
@media (max-width: 768px) {
    #mainCarousel .carousel-item {
        background: #000;           /* opcjonalnie: tło pod „belki” */
    }
    #mainCarousel .carousel-item img {
        width: 100%;
        height: auto;               /* najważniejsze – bez stałej wysokości */
        max-height: calc(100vh - 100px); /* żeby zmieścić pod stałym headerem */
        object-fit: contain;        /* pokazuje całe zdjęcie */
        object-position: center;    /* wyśrodkowanie */
    }
}
