/* ================================================
   SLIDER RESİM BOYUT DÜZENLEMELERİ
   Tüm slider resimleri sabit boyut ve cover ile gösterilir
   ================================================ */

.main-slides-item {
    /* Sabit yükseklik */
    height: 600px;
    min-height: 600px;

    /* Background ayarları */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    /* Overlay için */
    position: relative;
}

/* Mobil için daha küçük yükseklik */
@media only screen and (max-width: 767px) {
    .main-slides-item {
        height: 400px;
        min-height: 400px;
    }
}

/* Tablet için */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-slides-item {
        height: 500px;
        min-height: 500px;
    }
}

/* Büyük ekranlar için */
@media only screen and (min-width: 1400px) {
    .main-slides-item {
        height: 700px;
        min-height: 700px;
    }
}
