/* === SLIDER KONTEYNERİ === */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 20px auto 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* === SLIDER ANA ALANI === */
.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

/* === HER SLIDE === */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === SLIDE RESMİ === */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 12px;
    background-color: #111;
}

/* === SLIDE METİN BİLGİ === */
.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.slide-info h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: bold;
}

.slide-info p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

/* === SLIDER DOT NAVİGASYONU === */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    user-select: none;
}

.slider-nav .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-nav .dot.active {
    background-color: white;
}

/* === MOBİL UYUMLULUK === */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }

    .slide-info {
        padding: 12px 16px;
    }

    .slide-info h3 {
        font-size: 18px;
    }

    .slide-info p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .slider-nav .dot {
        width: 14px;
        height: 14px;
        margin: 0 7px;
    }
}
