.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-carousel-slides {
    position: relative;
    width: 100%;
    height: 80vh;
}

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

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

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

.hero-carousel-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-carousel-slide.active .hero-carousel-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-carousel-title {
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-carousel-subtitle {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-carousel-cta {
    display: inline-block;
    background-color: #A00708;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-carousel-cta:hover {
    background-color: #850607;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}

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

.hero-carousel-dot.active {
    background-color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-carousel-slides {
        height: 85vh;
    }
    
    .hero-carousel-title {
        font-size: 30px !important;
    }
    
    .hero-carousel-subtitle {
        font-size: 20px !important;
    }
}