/* Slider'ı tam ekran yapmak için */
.main-slider-two {
    height: 88vh; /* Tam ekran yüksekliği */
    width: 100%; /* Tam ekran genişliği */
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) and (max-width: 1599px) {
    .main-slider-two {
        height: 89vh; /* Sadece laptop ekranları için */
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .main-slider-two {
        height: 91vh; /* Sadece laptop ekranları için */
    }
}
@media (min-width: 800px) and (max-width: 1024px) {
    .main-slider-two {
        height: 93vh; /* Sadece laptop ekranları için */
    }
}
@media (min-width: 1024px) and (max-width: 1024px) {
    .main-slider-two {
        height: 99vh; /* Sadece laptop ekranları için */
    }
}
@media  (max-width: 767px) {
    .main-slider-two {
        height: 90vh; /* Sadece laptop ekranları için */
    }
}
.main-slider__carousel {
    height: 100%; /* Carousel tam yüksekliği kaplar */
}

.main-slider__slide {
    height: 100vh; /* Her slayt tam ekran */
    position: relative;
}

.main-slider__bg {
    height: 100%;
    width: 100%;
    background-size: cover !important; /* Arka plan resmi ekranı kaplar */
    background-position: center center !important; /* Resim ortalanır */
    background-repeat: no-repeat !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* İçerik konteyneri */
.main-slider__container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center; /* Dikeyde ortala */
    justify-content: flex-start; /* Sola hizala */
    padding: 20px;
}

/* Başlık ve açıklama */
.main-slider__content {
    text-align: left;
    max-width: 600px;
}

.main-slider-two__title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff; /* Başlık rengi (isteğe bağlı) */
}

.main-slider__desc-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-slider__desc {
    font-size: 17px;
    color: #fff; /* Açıklama rengi (isteğe bağlı) */
}

/* Butonlar */
.custom-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    background: none;
    padding: 0 20px;
}

.custom-button {
    width: 300px; /* Sabit buton genişliği */
    height: 100px; /* Sabit buton yüksekliği */
    background: #EA0A2A;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row; /* İkon ve etiketi yatay hizala */
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px; /* İkon ile etiket arası boşluk */
}

.custom-button.active {
    background: #FFFFFF !important;
    transform: scale(1.05);
}

.custom-button.active .custom-button-icon {
    filter: brightness(0) invert(0.3) sepia(1) saturate(100) hue-rotate(330deg) contrast(1.3);
}

.custom-button.active .custom-button-label {
    color: #EA0A2A; /* Aktif buton etiket rengi */
}

.custom-button-icon {
    width: 60px; /* Orijinal ikon boyutu korundu */
    height: 60px;
    filter: brightness(0) invert(1) contrast(1.5) drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5)); /* Daha kalın görünüm için */
}

.custom-button-label {
    font-size: 16px;
    color: #FFFFFF; /* Etiket rengi */
    text-align: left;
    font-weight: 600;
    max-width: 200px; /* Etiketin taşmasını önler */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Uzun metinleri kırpar */
}

/* Medya Sorguları */
@media (max-width: 991px) {
    .main-slider-two__title {
        font-size: 40px; /* Başlık biraz küçült */
        line-height: 1.3;
    }

    .main-slider__desc {
        font-size: 15px; /* Açıklama metni */
    }

    .custom-button {
        width: 250px; /* Tablet için küçült */
        height: 80px; /* Tablet için yüksekliği küçült */
        gap: 8px; /* İkon ile etiket arası boşluğu azalt */
    }

    .custom-button-icon {
        width: 50px; /* İkonları tablet için biraz küçült */
        height: 50px;
        filter: brightness(0) invert(1) contrast(1.5) drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5)); /* Kalınlık efektini koru */
    }

    .custom-button-label {
        font-size: 14px; /* Etiket yazı boyutunu küçült */
        max-width: 160px; /* Daha küçük alanda metni kırp */
    }

    .custom-pagination {
        gap: 15px;
        bottom: 25px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__title {
        font-size: 32px;
        line-height: 1.4;
    }

    .main-slider__desc {
        font-size: 13px;
    }

    .custom-pagination {
        display: none; /* Mobil cihazlarda butonları tamamen gizler */
    }

    .main-slider__container {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .main-slider-two__title {
        font-size: 28px;
    }

    .main-slider__desc {
        font-size: 12px;
    }
}