/* === ANA SLIDER (CAROUSEL) STYLES === */

/* Ana carousel container */
#carouselExampleIndicators {
    margin-bottom: 0;
}

/* Carousel görselleri */
.carousel-item img {
    height: 45vh;
    object-fit: cover;
    object-position: center;
}

/* Carousel indicators (alt nokta göstergeleri) */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #D4A03D;
    border-color: #D4A03D;
    transform: scale(1.2);
}

/* Carousel kontrol butonları (ok işaretleri) */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 160, 61, 0.8);
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(212, 160, 61, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Carousel kontrol ikonları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .carousel-item img {
        height: 35vh;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 30vh;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
}