/* Slider CSS */

.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-image: url('https://olimpiyatozelders.com/images/slider/home1/slide3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.hero-slider .carousel {
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-slider .carousel-inner {
    height: 100%;
}

.hero-slider .carousel-item {
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.slider-image .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    margin-top: 0;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.slider-content {
    position: relative;
    z-index: 2;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    padding-bottom: 0;
    margin-top: 0;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slider-text {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--gradient-primary);
    opacity: 1;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-slider .carousel-indicators {
    bottom: 30px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slider-content {
        padding-top: 40px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-text {
        font-size: 1.125rem;
    }
}

