html, body {
	margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.swiper-container {
	 margin-top: 68px;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

/* Arka plan katmanı */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 5; /* İçerikten daha geride */
    pointer-events: none; /* Etkileşim almıyor */
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Arka planın üzerinde */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none; /* Ebeveyn alan tıklanamaz */
}

.animated-texts {
	color: white;
	background-color: rgba(0, 0, 0, 0.3); /* Hafif siyah arka plan */ 
	border-radius: 10px; /* İsteğe bağlı: köşeleri yuvarlatmak için */ 
	padding: 10px; /* İçeriğin kenarlara yapışmaması için iç boşluk ekleyebilirsiniz */
	text-align: left;
	margin-left: 100px;
	z-index: 11; /* Yazı içerikten üstte */
	pointer-events: auto; /* Yazı etkileşimli */
}

.custom-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    color: white;
    background-color: transparent;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 100px;
    z-index: 12; /* Buton daha üstte */
    position: relative;
    pointer-events: auto; /* Buton tıklanabilir */
}

.custom-button:hover {
    color: black;
    border-color: white;
    background-color: white;
}

/* Yön ok işaretleri */


/* Yön ok işaretleri */
/* Yön ok işaretleri */
.custom-nav-buttons {
    position: absolute;
    bottom: 80px;
    left: 123px; /* Sağdan sola taşındı */
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 20; /* Yön oklarını üstte tutar */
    pointer-events: auto; /* Etkileşim için aktif */
}

.custom-nav-button {
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0.5px solid white; /* Beyaz kenarlık */
    outline: 0.5px solid black; /* Siyah kenarlık */
    background-color: rgba(0, 0, 0, 0.2); /* Koyu siyah arka plan */
    z-index: 21;
}

.custom-nav-button i {
    font-size: 20px;
}

/* Butonu sol tarafa al */
.custom-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    color: white;
    background-color: transparent;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-right: 100px; /* Sağdan sola taşındı */
    z-index: 12; /* Buton daha üstte */
    position: relative;
    pointer-events: auto; /* Buton tıklanabilir */
}


/* Mobil düzenlemeler */
@media (max-width: 767.98px) {
    .overlay-content {
        left: 0;
        padding: 10px;
    }

    .animated-texts {
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .custom-button {
        margin-right: 10px; /* Sağdan sola taşındı */
        margin-top: 10px;
    }

    .custom-nav-buttons {
        bottom: 30px;
        left: 21px; /* Mobilde sağdan sola taşındı */
    }
}

@media (max-width: 767.98px) {
    .overlay-content {
        
    }


/**/
@media (max-width: 767.98px) {
	.swiper-container {
		height: 500px;
	}
	.animated-texts {
		left: 10px;
		top: 160px;
		font-size: 16px;
		text-align: left;
		margin-left: 10px;
	}
}


