/*showroom*/

#showroom{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: calc(100vh - 4rem);
    max-height: 60vw;
    background: linear-gradient(var(--main-color), var(--variant-color));

    & img{
        max-height: 100%;
        object-fit: contain;
        width: 50%;
    }
    
    & div{
        display: flex;
        flex-direction: column;
        width: 30%;
    }
    
    & h2{
        font-family: Winco;
        font-size: 3.5rem;
        font-weight: 800;
    }
    
    & p{
        font-size: 1.5rem;
    }

    & a{
        margin-top: 2rem;
    }
}

@media screen and (max-width: 900px) {
    #showroom {
        flex-direction: column-reverse;
        height: fit-content;
        min-height: 100vh;
        max-height: unset;
        justify-content: space-around;
        padding-bottom: 1.5rem;

        & div {
            width: 90%;
        }

        & img {
            width: 90%;
        }
    }
}



/*suggestions*/

#suggestions{
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: calc(100vh - 4rem);
    max-height: 70vw;
    min-height: fit-content;

    & h1{
        font-family: Winco;
        font-size: 3.5rem;
        font-weight: 800;
        padding-bottom: 1.5rem;
        text-align: center;
    }

    > div{
        
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 80%;
        min-height: fit-content;

        > a{
            width: 25%;
            text-align: center;
            background-color: var(--variant-color);
            border: 3px splid var(--variant-color);
            border-radius: 3rem;
            height: 90%;
            min-height: fit-content;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            transition: 0.25s ease-in-out;
            border: 5px solid rgba(255, 255, 255, 0);

            & img{
                height: 40%;
                width: 90%;
                margin-top: 2rem;
                margin-bottom: 0.5rem;
                object-fit: contain;
            }

            & div{
                width: 80%;
                height: fit-content;
                display: flex;
                flex-direction: column;
                text-align: left;
                margin: auto;
                position: relative;
                min-height: fit-content;

                & .tag{
                    margin-bottom: 1rem;
                }

                & h3{
                    font-size: 1.5rem;
                }

                & .productdiscription{
                    width: 100%;
                    height: 3rem;
                    overflow: hidden;
                    overflow: hidden;
                    padding: 1px;
                }


                & .price{
                    font-size: 2rem;
                    font-weight: 2000;
                }
            }
        }

        > a:hover {
            border: 5px solid var(--accent-color);
        }
        
        & .highlighted{
            width: 30%;
            height: 100%;

            & .price{
                font-size: 3rem;
            }

        }
    } 
}

@media screen and (max-width: 900px) {
    #suggestions {
        height: fit-content;
        max-height: unset;

        & h1 {
            font-size: 3rem;
        }

        > div {
            flex-direction: column;

            > a {
                width: 90%;
                height: fit-content;
                min-height: 85vh;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                margin-bottom: 2rem;

                & img {
                    width: 100%;
                }
                
                & div {
                    display: flex;
                    justify-content: space-around;
                    flex-direction: column;
                    margin: 0 2rem;

                    & .productdiscription {
                        height: fit-content;
                    }
                }
                }
            
            & .highlighted {
                width: 90%;
                height: fit-content;
    
                & .price{
                    font-size: 2rem;
                }
            }    
        }
    }
}

/*banner*/

#banner_to_shop{
    background-color: var(--contrast-color);
    height: fit-content;
    padding-top: 2rem;
    padding-bottom: 2.8rem;
    text-align: center;

    & h2{
        font-family: Winco;
        font-size: 3rem;
        font-weight: 800;
        padding-bottom: 2rem;
        color: var(--main-color);
    }

    & a{
        margin-top: 2rem;
    }

}

