.div1,
.div2,
.div3 {
    width: 70%;
    position: relative;
}

.div1 {
    grid-area: 1 / 2 / 2 / 3;
    align-self: end;
    margin-left: 10%;
}

.div2 {
    grid-area: 2 / 1 / 3 / 2;
    margin-top: 20%;
    margin-left: 25%;
}

.div3 {
    grid-area: 3 / 2 / 4 / 3;
    margin-top: 40%;
    margin-left: 20%;
    margin-right: 5%;
}

.home-img-1 {
    width: 62%;
    margin-left: 24%;
    display: block;
}

.st1 {
    position: absolute;
    top: 11%;
    left: 2%;
    width: 9%;
}

.st2 {
    position: absolute;
    top: 23%;
    left: 1%;
    width: 17%;
    transform: scaleX(-1);
}

.st3 {
    position: absolute;
    top: 27%;
    left: 22%;
    width: 7%;
    transform: rotate(-22deg);
}

.st4 {
    position: absolute;
    top: 26%;
    left: 36%;
    width: 6%;
    transform: rotate(-60deg);
}

.st5 {
    position: absolute;
    top: -8%;
    right: -23%;
    width: 35%;
    transform: rotate(120deg);
    z-index: -1;
}

.home-img-2 {
    width: 100%;
    display: block;
    margin-top: 13%;
    z-index: 2;
}

.st6 {
    position: absolute;
    top: 11%;
    right: 107%;
    width: 16%;
    transform: rotate(-58deg);
}

.home-img-3 {
    margin-left: 25%;
    display: block;
    height: 100%;
}

p>span {
    color: var(--burnt-orange);
    font-weight: 700;
}

.main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 33.3333333%);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    font-size: clamp(10px, 1.2vw, 28px);
    line-height: 1.4;
    position: relative;
    margin-top: -10%;
}

.main a {
    font-family: 'Baloo Bhai 2';
    font-size: 1.2em;
    font-weight: bold;
    color: var(--golden-orange);
    text-decoration: underline 3px var(--golden-orange);
    text-underline-offset: 6px;
    text-transform: uppercase;
}

.main p,
.main h2 {
    padding: 0;
}

.main p {
    font-size: 1em;
    line-height: 1.7;
}

.main h2 {
    font-size: 2.3em;
}

.recipes {
    text-align: center;
    background-image: url('/imgavif/h-p-b.avif');
    width: 100%;
    aspect-ratio: 1919/984;
    margin-bottom: -50px;
    background-size: cover;
    padding-bottom: 80px;
}

.recipes a {
    font-family: 'Baloo Bhai 2';
    font-size: 18px;
    font-weight: bold;
    color: var(--golden-orange);
    text-decoration: underline 3px var(--golden-orange);
    text-underline-offset: 6px;
    text-transform: uppercase;
}

.rcp {
    display: flex;
    gap: 30px;
}

.recipe {
    width: 350px;
    height: 390px;
    border-radius: 64px;
    filter: drop-shadow(0px 14px 15px rgba(0, 0, 0, 0.06));
    background: #ffffff;
    margin-top: 70px
}

.recipe img {
    width: 65%;
    transform: translateY(-50px);
    border-radius: 50%;
}

.recipe h3 {
    font-family: "Baloo Bhai 2";
    font-size: 27px;
    font-weight: 500;
    line-height: 65px;
    font-style: normal;
    text-align: center;
    color: #006242;
    margin: 0;
    margin-top: -50px;
}

.recipe h4 {
    font-family: "Roboto Slab";
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: center;
    color: #0d0d0d;
    margin: 0;
    margin-bottom: 30px;
}

@media only screen and (max-width: 1000px) {
    .recipe h3 {
        font-size: 22px;
        line-height: 25px;
        margin-top: -50px;
    }

    .recipe h4 {
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 0px;
    }

    .rcp {
        gap: 10px;
        padding: 0 10px;
        padding-bottom: 50px;

    }

    .recipe {
        width: 321px;
        height: 216px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 750px) {
    .main {
        aspect-ratio: auto;
        display: block;
        margin-top: 30px;
    }

    .div1,
    .div2,
    .div3 {
        margin: 30px auto;
        width: 80%;
    }

    .home-img-2 {
        width: 70%;
    }

    .home-img-3 {
        height: auto;
        width: 70%;
        margin-left: 30%;
    }
}