/* Header Slider */
.header-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    overflow: visible;
}

/* Slider İçerik Konteyner */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Slider Elemanları */
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
}

/* Slider Görsel Stilleri */
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Text Overlay - Görseldeki Stile Uygun */
.slider-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 8.5);
}

.slider-item.active .slider-text {
    opacity: 1;
    transform: translateY(-50%);
}

.slider-text h2 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.slider-text span {
    color: #e20613;
}

.slider-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Slider Butonları - Görseldeki Gibi */
.slider-buttons {
    display: flex;
    gap: 15px;
}

.slider-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Kırmızı buton */
.slider-btn.primary-btn {
    background-color: #e20613;
    color: white;
    border: none;
}

.slider-btn.primary-btn:hover {
    background-color: #d00512;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(226, 6, 19, 0.3);
}

/* Outline buton */
.slider-btn.outline-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.slider-btn.outline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Kırmızı Arka Plan Alanı */
.slider-controls-bg {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(226, 6, 19, 0.9);
    border-radius: 0 50% 50% 0;
    z-index: 5;
    pointer-events: none;
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    gap: 15px;
    z-index: 50;
}

/* Slider Butonları */
.slider-prev, 
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    cursor: pointer;
    z-index: 100;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-prev:hover, 
.slider-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Slider İndikatör */
.slider-indicator {
    position: absolute;
    bottom: 70px;
    right: 60px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 30px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #e20613;
    width: 40px;
}

/* Slider Çizgisi */
.slider-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* ===== MOBİL İÇİN ÖZEL AYARLAR ===== */

/* Tablet ve Mobil ekranlar için slider çizgisini yukarı taşı */
@media (max-width: 992px) {
    .slider-line {
        bottom: 60px !important; /* Tablet ve mobilde çizgiyi yukarı taşı */
    }
    .slider-text h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        font-family: 'Poppins', sans-serif;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
}

@media (max-width: 768px) {
    .slider-line {
        bottom: 50px !important; /* Mobilde çizgiyi daha yukarı taşı */
    }
    .slider-text h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        font-family: 'Poppins', sans-serif;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
}

@media (max-width: 480px) {
    .slider-line {
        bottom: 40px !important; /* Küçük mobilde çizgiyi daha da yukarı taşı */
    }
    .slider-text h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        font-family: 'Poppins', sans-serif;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
}