/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');*/


.slider-container {
    /*display: flex;*/
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* --- Sol Taraf: Görseller --- */
.slider-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.background-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    opacity: 0.3;
    z-index: 1; /* Arka plan deseni altta kalacak */
}

.image-clipper {
    width: 500px;
    height: 500px;
    position: relative;
    clip-path: url(#image-mask-shape);
    z-index: 2; /* Resimler desenin üstünde olacak */
}

/* KAYDIRMA İÇİN KULLANILAN WRAPPER ARTIK GEREKLİ DEĞİL, AMA YAPIYI BOZMAYALIM */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- ANA DEĞİŞİKLİK BURADA --- */
.slide-image {
    position: absolute; /* Resimleri üst üste bindirir */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Başlangıçta tüm resimler görünmez */
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s; /* Yumuşak geçiş efekti */
}

    .slide-image.active-image {
        opacity: 1; /* Aktif olan resim görünür olur */
        visibility: visible;
    }

    .slide-image img {
       /* width: 100%;
        height: 100%;*/
        /*object-fit: cover;*/
    }


/* --- Sağ Taraf: Metinler (Değişiklik yok) --- */
.slider-content {
    flex: 1;
    padding-left: 50px;
    position: relative;
    height: 550px;
}

.text-slide {
    position: absolute;
    top: 0;
    left: 50px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

    .text-slide.active {
        opacity: 1;
        visibility: visible;
    }

    /* ... (Geri kalan h1, p, .slider-button vb. stilleriniz aynı kalabilir) ... */

    .text-slide h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #e0c580;
    }

    .text-slide p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 500px;
    }

.slider-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #e0c580;
    color: #e0c580;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

    .slider-button:hover {
        
    }
