﻿/* ============================================
   HERO SLIDER - Ana Container
   ============================================ */
.hero-slider-container {
    width: 100%;
    position: relative;
    min-height: 600px;
    background-color: #1a1a2e;
}

    /* Slide Resimleri */
    .hero-slider-container .hero-slide-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        z-index: 0;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }

/* İLK SLIDE - Her zaman görünür (arka plan) */
.hero-slide-item[data-slide="1"] {
    opacity: 1;
    z-index: 0;
    animation: none;
}

/* ✅ DÜZELTME: Delay değerleri */
.hero-slide-item[data-slide="2"] {
    animation: heroSliderFade 32s infinite;
    animation-delay: 8s; /* ✅ 8 saniye sonra başla */
}

.hero-slide-item[data-slide="3"] {
    animation: heroSliderFade 32s infinite;
    animation-delay: 16s; /* ✅ 16 saniye sonra başla */
}

.hero-slide-item[data-slide="4"] {
    animation: heroSliderFade 32s infinite;
    animation-delay: 24s; /* ✅ 24 saniye sonra başla */
}

/* Animasyon */
@keyframes heroSliderFade {
    0% {
        opacity: 0;
        z-index: 1;
    }

    3% {
        opacity: 1;
        z-index: 1;
    }

    25% {
        opacity: 1;
        z-index: 1;
    }

    28% {
        opacity: 0;
        z-index: 0;
    }

    100% {
        opacity: 0;
        z-index: 0;
    }
}

/* OVERLAY */
.hero-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100% );
    z-index: 1;
    pointer-events: none;
}

/* İÇERİK CONTAINER */
.hero-slider-container #headerContainer {
    position: relative;
    z-index: 10;
    overflow: visible;
}



/* MOBİL RESPONSIVE */
@media (max-width: 768px) {
    .hero-slider-container {
        min-height: 450px;
    }

        .hero-slider-container::before {
            background: linear-gradient( 180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100% );
        }
}

@media (max-width: 480px) {
    .hero-slider-container {
        min-height: 420px;
    }
}

@media (min-width: 1200px) {
    .hero-slider-container {
        min-height: 550px;
    }
}

/* Hero slide içindeki img */
.hero-slider-container .hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}