.home-hero {
    width: 100%;
    height: 600px;
    padding: 0;
    border: none;
    background-color: yellow;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
    user-select: none;
}

.home-hero-half {
    width: 50%;
    height: 100%;
    min-width: 300px;
    position: relative;
}

.home-hero-half > img {
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-hero-logo {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
    border-radius: 50%;
    background-image: url("/imageserver/UserMedia/avilasroofingandconstruction/remodel-2025/avilas2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
    background-size: contain;
    box-shadow: 0px 0px 12px 0px var(--compliment-color);
    z-index: 3;
}

.hero-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    backdrop-filter: brightness(50%) blur(5px);
    transition: backdrop-filter 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image-overlay:hover {
    backdrop-filter: brightness(70%) blur(0px);
}

.hero-image-overlay h2 {
    font-size: 3.5rem;
    margin: 0;
    max-width: 50%;
    text-align: center;
}

.hero-image-overlay .button {
    font-size: 1.5rem;
}

.hero-image-overlay .gold-line {
    margin: 20px 0px;
    max-width: 50%;
    border-radius: 10px;
}

@media only screen and (max-width: 700px) {
    .home-hero {
        flex-direction: column;
        height: 1200px;
    }

    .home-hero-half {
        width: 100%;
        height: 50%;
    }
  }