.zwirner-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
}

.zwirner-hero__video,
.zwirner-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.zwirner-hero__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.zwirner-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.zwirner-hero__content {
    position: relative;
    z-index: var(--z-index-content, 2);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.zwirner-hero__eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.zwirner-hero__heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
}

.zwirner-hero__subheading {
    font-size: 1.5rem;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.zwirner-hero__search {
    max-width: 600px;
    margin: 0 auto;
}

.zwirner-hero__search-wrapper {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.zwirner-hero__search-input {
    flex: 1;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    outline: none;
}

.zwirner-hero__search-button {
    background: #FFD700;
    border: none;
    color: #000;
    padding: 0 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 18px;
    font-weight: 600;
}

.zwirner-hero__search-button:hover {
    background: #FFC700;
}

@media (max-width: 991px) {
    .zwirner-hero {
        min-height: 500px;
    }

    .zwirner-hero__heading {
        font-size: 2.5rem;
    }

    .zwirner-hero__subheading {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .zwirner-hero {
        min-height: 500px;
    }

    .zwirner-hero__heading {
        font-size: 2rem;
    }

    .zwirner-hero__subheading {
        font-size: 1rem;
    }

    .zwirner-hero__search-input {
        padding: 15px 20px;
        font-size: 14px;
    }

    .zwirner-hero__search-button {
        padding: 15px 25px;
    }
}
