/* Slider Ana Konteyner */
.ars-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Yükseklik ve minimum yükseklik değerleri dinamik css ile ezilir */
}

.ars-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Medya Yönetimi (Görsel ve Video) */
.ars-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ars-media img,
.ars-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Medya Gösterimi - Medya Sorguları */
.ars-media-desktop { display: block; }
.ars-media-tablet { display: none; }
.ars-media-mobile { display: none; }

/* Tablet */
@media (max-width: 1024px) {
    .ars-media-desktop { display: none; }
    .ars-media-tablet { display: block; }
    .ars-media-mobile { display: none; }
}

/* Mobil */
@media (max-width: 767px) {
    .ars-media-desktop { display: none; }
    .ars-media-tablet { display: none; }
    .ars-media-mobile { display: block; }
}

/* Arkaplan Karartma (Overlay) */
.ars-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* İçerik Sarıcı */
.ars-slide-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.ars-slide-title {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ars-slide-desc {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ars-slide-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: filter 0.3s ease;
}

.ars-slide-button:hover {
    filter: brightness(0.9);
}

/* Swiper Butonları / Navigasyon Özel Stili */
.ars-swiper .ars-nav-prev,
.ars-swiper .ars-nav-next {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.ars-swiper .ars-nav-prev:after,
.ars-swiper .ars-nav-next:after {
    font-size: 20px;
}

.ars-swiper .ars-nav-prev:hover,
.ars-swiper .ars-nav-next:hover {
    background: rgba(0,0,0,0.7);
}

.ars-swiper .ars-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.ars-swiper .ars-pagination .swiper-pagination-bullet-active {
    background: #0073e6;
    opacity: 1;
}

/* Responsive Metin Küçültme (Mobil'de dinamik stilden de ezilebilir) */
@media (max-width: 767px) {
    .ars-slide-title {
        font-size: 32px !important;
    }
    .ars-slide-desc {
        font-size: 15px !important;
    }
}
