.image-selector {
    display: none;
}

.indicator {
    width: 25px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.8);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    background-color: #000;
    color: white;
    overflow: hidden;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    filter: brightness(0.8);
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 25vh;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .hero {
        height: 90vh;
        min-height: 700px;
    }

    .hero-content {
        padding-bottom: 25vh;
        justify-content: flex-end;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        margin-top: 0;
        white-space: nowrap;
        letter-spacing: -0.5px;
    }
}
