/* ============================================
   ULTRA BASİT SLIDER - GARANTİLİ ÇALIŞIR
   ============================================ */

/* Slider Ana Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: transparent;
    margin: 0;
    padding: 0;
}

/* Slider İç Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Her Bir Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* Aktif Slide */
.slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

/* Slide Blur Arka Plan - Yanlardaki boşluklar için */
.slide-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    z-index: 0;
    filter: blur(25px) brightness(0.5);
    transform: scale(1.1);
}

/* Slide Ana Resim - Net, ortada, tam gözüken */
.slide-bg-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    z-index: 1;
    filter: none;
}

/* Slide İçerik - Modern & Responsive */
.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    max-width: 1000px;
    padding: 40px 20px;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.slide-content .btn {
    font-size: clamp(14px, 1.8vw, 18px);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin-top: 10px;
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Navigasyon Butonları */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    transition: all 0.3s ease;
    outline: none;
}

.slider-control:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

/* Dots (Noktalar) */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 999;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgb(212, 175, 55);
    transform: scale(1.3);
}

.dot:hover {
    background: rgb(212, 175, 55);
    transform: scale(1.2);
}

/* Mobil */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .slider-container {
        background: transparent !important;
        height: 100% !important;
    }
    
    .slide {
        background: transparent !important;
        height: 100% !important;
    }
    
    .slide-bg-blur {
        background-color: #1a1a2e !important;
        background-size: cover !important;
        background-position: center center !important;
        height: 100% !important;
        filter: blur(20px) brightness(0.5) !important;
        transform: scale(1.1) !important;
    }
    
    .slide-bg-main {
        background-size: contain !important;
        background-position: center center !important;
        background-color: transparent !important;
        filter: none !important;
    }
    
    .slide-content {
        padding: 30px 15px;
    }
    
    .slide-title {
        font-size: clamp(24px, 8vw, 36px);
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .slide-subtitle {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .slide-content .btn {
        font-size: clamp(13px, 3.5vw, 16px);
        padding: 12px 30px;
    }
    
    .slider-control {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-control.prev {
        left: 15px;
    }
    
    .slider-control.next {
        right: 15px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .slider-container {
        background: transparent !important;
        height: 100% !important;
    }
    
    .slide {
        background: transparent !important;
        height: 100% !important;
    }
}

/* Ekstra küçük ekranlar */
@media (max-width: 480px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .slide-content {
        padding: 20px 10px;
    }
    
    .slide-title {
        font-size: clamp(22px, 7vw, 28px);
        margin-bottom: 12px;
    }
    
    .slide-subtitle {
        font-size: clamp(13px, 3.5vw, 16px);
        margin-bottom: 20px;
    }
    
    .slide-content .btn {
        font-size: 13px;
        padding: 10px 25px;
    }
}
