/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: relative;
}

.hero-slide {
    display: none;
    position: relative;
    overflow: hidden;
}

.hero-slide.is-active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-slide__bg {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 2048 / 637;
    object-fit: cover;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-slide__title {
    color: #fff;
    font-size: 42px;
    font-weight: var(--fw-extrabold);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-dot.is-active {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.2);
}
