.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: white;
}

.hero-line {
    margin: 0.5rem 0;
    overflow: hidden;
}

/* Flickity overrides */
.flickity-button {
    background: rgba(255, 255, 255, 0.8);
}

.flickity-button:hover {
    background: white;
}

.flickity-page-dots {
    bottom: 2rem;
}

.flickity-page-dots .dot {
    background: white;
}

/* Add these styles to hero-slider.css */
/* .hero-slider[data-transition="fade"] .hero-slide {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.hero-slider[data-transition="fade"] .hero-slide.is-selected {
    opacity: 1;
} */
