/* PRODUCTS PAGE CONTENTS */

.box-color-products {
    background-color: var(--clr-basil-light);
    max-width: 1500px;
    margin: 50px 80px 50px;
    box-shadow: 5px 5px 4px -3px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    min-width: 357px;
}

.product-title {
    padding: 25px 0 0;
}
#grid-has-it-all {
    padding: 2em 4em 2em;
    display: grid;
    gap: 1.5rem;
    text-align: center;
    justify-content: center;
    align-content: center;
}

@media (min-width: 40em) {
    #grid-has-it-all {
        grid-template-columns: repeat(2, 1fr);
    }
    #list-grow-with-rosies {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

@media (min-width: 60em) {
    #grid-has-it-all {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-text {
        text-align: center;
    }
}

#items-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#click-here-seasons {
    padding: 0;
    color: var(--clr-olive);
    text-decoration: underline;
}

#jersey-produce {
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.products-text {
    padding: 2em 3em 4em;
}
.products-text-2 {
    padding: 2em 3em 2em;
}

.parallax-tomatoes {
    min-height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-rose {
    min-height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-tomatoes {
    background-image: url('images/tomatoes-stock.jpg');
}

.parallax-rose {
    background-image: url('images/flowers.jpg');
}

#list-grow-with-rosies {
    max-width: 1500px;
    display: grid;
    padding: 1em 2em 4em;
    justify-items: flex-start;
    justify-content: flex-start;
    align-content: center;
}

.organize-grow-with-rosies {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
