﻿.home-root .home-image-container {
    height: calc(100vh - 48px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.home-root[data-logged-in="true"] .home-image-container {
    height: 300px;
}

.home-root .home-search-container {
    width: 700px;
    margin: 1rem;
}

.home-root .home-search-big-text {
    text-align: center;
    color: white;
    text-shadow: 0px 0px 10px black;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home-root .content-padding {
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-root .section-title-wrapper {
    margin-bottom: 1rem;
}

.home-root .section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #357a01;
    margin-right: 1rem;
    text-decoration: none;
}

    .home-root .section-title:hover {
        text-decoration: underline;
    }

.home-root .see-more {
    font-size: 1rem;
    color: #4a4a4a;
    text-decoration: none;
}

    .home-root .see-more:hover {
        text-decoration: underline;
    }

.home-root .list-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

.home-root .list-row-wrapper {
    width: 33%;
}

.home-root .list-row-link {
    text-decoration: none;
}

.home-root .list-row-border {
    border: 1px solid #d0d0d0;
    border-radius: 0.25rem;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    background-color: white;
    padding: 1rem;
    margin: 0 0.5rem 0.5rem 0;
}

    .home-root .list-row-border:hover {
        border: 1px solid #357a01;
    }

.home-root .text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-root .restaurant-name {
    font-size: 1rem;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.home-root .restaurant-cuisines {
    font-size: 0.9rem;
    color: #767676;
    margin-bottom: 0.5rem;
}

.home-root .restaurant-description {
    font-size: 0.9rem;
    color: #4a4a4a;
}

.home-root .past-order-restaurant-name {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.home-root .past-order-description {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.home-root .past-order-date {
    color: #767676;
    font-size: 0.8rem;
}

.home-root .home-getapp-container {
    display: block;
    padding-bottom: 2rem;
    text-align: center;
}

.home-root .home-getapp-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.home-root .home-getapp-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.home-root .home-getapp-textbox {
    width: 300px;
    margin: 1rem auto 0.5rem auto;
}

.home-root .home-getapp-button {
    width: 300px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .home-root .list-row-wrapper {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .home-root[data-logged-in="true"] .home-image-container {
        height: 500px;
    }

    .home-root .home-search-container {
        width: 100%;
    }

    .home-root .home-search-big-text {
        font-size: 2rem;
    }

    .home-root .list-row-wrapper {
        width: 100%;
    }

    .home-root .list-row-border {
        margin: 0 0 0.5rem 0;
    }

    .home-root .home-getapp-container-2 {
        width: 100%;
    }
}