/* components/hero.css */
.hero {
    position: relative;
    height: 400px;
    width: 100%;
    color: var(--hero-text-color);
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    position: absolute;
    z-index: 2;
    font-size: 55px;
    font-weight: 600;
    color: var(--hero-text-color);
    width: 90%;
    margin: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    filter: brightness(1);
}

.hero-gallery-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-gallery {
    display: flex;
    height: 100%;
    width: max-content;
    white-space: nowrap;
}

.hero-image {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    filter: brightness(1);
}
