﻿#heroSlider {
    margin-bottom: 3rem;
}

.slider-image {
    height: 400px;
    object-fit: cover;
    aspect-ratio: 650 / 400;
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem;
}

.slider-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .slider-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .slider-image {
        height: 200px;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .slider-description {
        font-size: 0.9rem;
    }

    .slider-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-slider .carousel-item {
        height: 400px;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 2rem;
    }

    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
}
