/* Hero Carousel */
.hero-slide {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

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

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-text p {
    margin-bottom: 0.5rem;
}

.hero-cta {
    font-weight: 600;
}

/* Pause on hover */
.carousel:hover .carousel-item {
    transition-duration: 0s !important;
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 350px;
    }

    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.5);
    }
}
