/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-slide.active {
    opacity: 1;
}

.hero-carousel-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-carousel-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.hero-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-carousel-indicator.active {
    background-color: var(--primary-color);
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.3s ease;
}

.hero-carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-carousel-prev {
    left: 20px;
}

.hero-carousel-next {
    right: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
    }
    
    .hero-carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-carousel-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 350px;
    }
    
    .hero-carousel-content h1 {
        font-size: 2rem;
    }
    
    .hero-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
