#hero {
    height: 35rem;
    margin-bottom: 5rem;
}

#hero .wrapper {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
}

#hero .container {
    position: relative;
}

#hero .container .bg {
    position: absolute;
    z-index: -1;
    height: 40rem;
    width: 100%;
}

#hero .container .bg img {
    display: block;
    height: inherit;
    width: inherit;
    object-fit: cover;
}

#hero .container .content {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 3rem;
    background: linear-gradient(90deg, #810614dd 40%, #0000 100%);
    width: 100%;
    height: 40rem;
    max-width: 40rem;
}

#hero .container .content h1 {
    font-size: 2.5rem;
    font-size: clamp(2rem, 10vw, 3.5rem);
    max-width: 11em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'HeidanRound', 'Lato', sans-serif;
    font-weight: 400;
}

#hero .container .content p {
    max-width: 20em;
    margin: 2rem 0 1rem 0;
}

#hero .flex {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 650px) {
    #hero .container .content {
        padding: 1rem;
    }
}

#cakes h2,
#customcakes h2 {
    text-align: center;
    margin: 0px;
}


.products .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 2rem;
    padding: 2rem 0;
}

@media screen and (max-width: 1000px) {
    .products .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 750px) {
    .products .grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media screen and (max-width: 450px) {
    .products .grid {
        grid-template-columns: 1fr;
    }
}

.product-card img {
    display: block;
    width: 100%;
    transition: all 300ms ease-in-out;
}

.product-card:hover img {
    transform: scale(1.15);
}

.product-card .top {
    position: relative;
    overflow: hidden;
}

.product-card .order {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    bottom: -8rem;
    transition: all 300ms ease-in-out;
}

.product-card .order-btn {
    display: block;
    color: #fff;
    background-color: var(--dark-red-bg);
    text-decoration: none;
    font-weight: 700;
    padding: 1rem;
    margin: 0 2rem 1rem 2rem;
    transition: all 300ms ease-in-out;
}

.product-card .order-btn:hover {
    background-color: var(--red);
}

.product-card:hover .order {
    bottom: 0;
}

.product-card h4 {
    margin-top: .75rem;
    margin-bottom: .45rem;
    font-size: 1.25rem;
}


.product-card.hide {
    display: none;
}

.product-card.hide.active {
    display: block;
}


#about .flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

#about h2 {
    margin-top: 0px;
}

#about p {
    line-height: 1.8em;
}


#about .right img {
    display: block;
    width: 100%;
    box-shadow: 1rem 1rem 0px 0px var(--dark-red-bg);
    max-width: 30rem;
    margin-right: 1rem;
}

#about .right img:hover {
    box-shadow: none;
}

#about .left {
    flex-grow: 1;
    max-width: 45em;
    width: 100%;
}

#about .bg {
    background-image: url('/assets/landing/about-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20rem 30rem;
}

@media screen and (max-width: 1200px) {
    #about .left {
        max-width: 30rem;
    }
}

@media screen and (max-width: 900px) {
    #about .flex {
        flex-direction: column-reverse;
    }

    #about .right img {
        max-width: unset;
    }

    #about .left {
        max-width: unset;
    }
}


@media screen and (max-width: 650px) {

    #about .bg {
        background-size: 70vw 80vw;
    }
}