/* ==========================================================================
   Hero Styles (hero.css)
   ========================================================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.hero-right-top {
    height: 420px;
    width: 100%;
    background-image: url(../../assets/img/hero-garage-main.png);
    background-size: cover;
    background-position: bottom;
    border-radius: 40px;
}

.hero-right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.hero-right-bottom div {
    background-color: #ffa6fb;
    border-radius: 30px;
    padding: 30px;
}

.hero-right-bottom div:first-of-type {
    background-image: url(../../assets/img/hero-2.jpg);
    background-size: cover;
    color: #fff;
}

.hero-right-bottom h5 {
    text-transform: uppercase;
    font-size: 32px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.hero-left div:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-left h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 68px;
}

.hero-left p {
    max-width: 500px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.button-1 {
    background-color: #3a2616;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 15px;
    text-decoration: none;
}

.button-2 {
    background-color: #efefef;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 10px 15px;
    text-decoration: none;
}

.circle {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* This makes the div a circle */
}

.blurred-circle {
    background-color: #ffa6fb; /* The pink color. This provides the "pigment" for the blur. */
    border-radius: 50%; /* Crucial: Makes the base shape a circle BEFORE blurring. */
    filter: blur(20px);
}

.solid-circle {
    background-color: #ffa6fb; /* Solid pink color */
}

@media only screen and (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 5vh;
    }

    .hero-left h1 {
        font-size: 28px;
        line-height: unset;
        line-height: 40px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-right-top {
        height: 300px;
    }

    .hero-right-bottom {
        grid-template-columns: 1fr;
    }

    .circle {
        display: inline-block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .hero-right-bottom h5 {
        font-size: 28px;
    }
}
