/* Kankacım, Masaüstü Slider CSS - MAVİ & TURUNCU KONSEPT (Revize Versiyon) */

.desktop-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
}

/* Slaytlar */
.desktop-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1);
}

@keyframes zoomInEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.desktop-slide.active {
    opacity: 1;
    z-index: 2;
    animation: zoomInEffect 7s linear forwards;
}

/* Sis Efekti - Kankacım bunu biraz daha belirgin yaptım */
.slider-fog-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%; 
    height: 100%;
    /* Soldan sağa doğru azalan siyahlık */
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Alt Beyaz Nuans */
.slider-overlay-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    z-index: 10;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0% 100%);
    pointer-events: none;
}

/* İçerik Alanı */
.slider-content-wrapper {
    position: absolute;
    bottom: 40%;
    left: 10%;
    max-width: 800px;
    z-index: 20;
    color: white;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    pointer-events: none;
}

.slider-content-wrapper * {
    pointer-events: auto;
}

/* --- ANİMASYON DÜZELTMELERİ BURADA --- */
/* Artık karmaşık + işaretleri yok, direkt sınıf kontrolü var */

.slider-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s; /* Gecikme eklendi */
}

/* Aktif olduğunda çalışacak kural */
.slider-content-wrapper.active-anim .slider-title {
    opacity: 1;
    transform: translateY(0);
}

.slider-desc {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
    max-width: 90%;
    line-height: 1.5;
}

.slider-content-wrapper.active-anim .slider-desc {
    opacity: 1;
    transform: translateY(0);
}

/* BUTON - TURUNCU (#e68f23) */
.btn-slider {
    display: inline-block;
    background-color: #e68f23; /* İstediğin Turuncu Tonu */
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s, background-color 0.3s;
    /* Hafif bir turuncu gölge ekledim ki patlasın */
    box-shadow: 0 4px 15px rgba(230, 143, 35, 0.4); 
}

.btn-slider:hover {
    background-color: #cf7e1d; /* Hoverda hafif koyusu */
    transform: translateY(-5px) !important; /* Animasyonla çakışmasın diye */
}

.slider-content-wrapper.active-anim .btn-slider {
    opacity: 1;
    transform: translateY(0);
}

/* Navigasyon Okları */
.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 5%;
    z-index: 30;
    display: flex;
    gap: 15px;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.7);
    background-color: rgba(0,0,0,0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav-btn:hover {
    /* Hover olunca MAVİ (#317da8) olsun */
    background-color: #317da8; 
    border-color: #317da8;
    transform: scale(1.1);
}