@font-face {
    font-family: 'Lucida Calligraphy';
    src: url('../fontface/Lucida_Calligraphy.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', sans-serif;
}
em {
    font-family: 'Lucida Calligraphy', cursive;
}
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
}
.navbar img {
    height: 40px;
    margin-top: -7px;
}
.navbar a {
    color: #FFF;
}
.navbar-collapse {
    text-align: center;
}
.hero {
    position: relative;
    background-image: url('../images/hero-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    color: #FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero h1 {
    font-size: 9em;
    font-weight: bolder;
}
.hero h2 {
    font-size: 4em;
    font-weight: lighter;
}
.reviews {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}
.reviews p {
    font-weight: bold;
    font-size: 1em;
    margin: 3px 5px 0 0;
}
.reviews em {
    font-weight: 300;
    color: rgb(90, 156, 255);
}
.star {
    vertical-align: middle; 
}
.gold {
    color: rgb(225, 215, 0);
}
.gray {
    color: rgb(199, 199, 199);
}
.btn-dark {
    padding: 10px 15px;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    background-color: transparent;
    border: 4px solid #FFF;
    border-radius: 0;
    transition: border 0.5s, color 0.5s;
    color: #FFF;
}
.btn-dark:hover, .btn-dark:focus {
    border: 4px solid #C3852D;
    background-color: transparent;
    color: #C3852D;
    text-decoration: none;
}
.recommended-food, .customer-review {
    padding: 110px 0;
    text-align: center;
}
.recommended-food h2 {
    font-weight: bolder;
    font-size: 6.62em;
    margin-bottom: 30px;
    color: #C3852D;
}
.recommended-food p {
    font-size: 1.95em;
}
.recommended-food .btn-view {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 160px;
    font-weight: bold;
    text-decoration: none;
    background-color: transparent;
    border: 4px solid #C3852D;
    border-radius: 0;
    transition: border 0.5s, background-color 0.5s;
    color: #000;
}
.btn-view:hover, .btn-view:focus {
    border: 4px solid #B17829;
    background-color: #B17829;
    color: #FFF;
    text-decoration: none;
}
.recommended-food hr {
    margin-top: 60px;
    width: 100%;
    border: 3px solid #C3852D;
}
.recommended-food-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.food-item {
    position: relative;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
    max-width: 300px;
    color: #FFF;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    margin: 0 auto;
    flex: 1 1 25%;
    transition: transform 0.3s ease-in-out, border 0.3s;
}
.food-item:hover {
    transform: scale(1.05);
    border: 1px solid #707070;
}
.food-item h3, .food-item p {
    margin: 0;
    z-index: 2;
}
.food-item p {
    font-size: 1.2em;
    font-weight: bold;
}
.food-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 78px; 
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}
.food-item-1 {
    background-image: url('../images/food-item-1.jpg');
}
.food-item-2 {
    background-image: url('../images/food-item-2.jpg');
}
.food-item-3 {
    background-image: url('../images/food-item-3.jpg');
}
.food-item-4 {
    background-image: url('../images/food-item-4.jpg');
}
.customer-review {
    margin-top: -70px;
    padding-bottom: 140px;
    background-color: #C3852D;
}
.customer-review h2 {
    font-size: 4em;
    color: #FFF;
    font-weight: bolder;
}
.customer-review .row {
    display: flex;
    flex-wrap: wrap;
}
.review-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background-color: #FFF;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-radius: 4px;
}
.review-box p {
    text-align: left;
}
.review-box-content {
    margin-bottom: 40px;
} 
.review-box-content hr {
    width: 40%;
    border: 1px solid #dedede;
}
.review-box-name {
    display: flex;
    margin: -21px;
    padding: 20px;
    border-top: 1px solid rgba(112, 112, 112, 0.5);
    border-radius: 4px;
}
.review-box-name div {
    display: flex;
    flex-direction: column;
}
.review-box-name div p {
    margin: 2px 0 1px 4px;
}
.review-box-name div .star-rating {
    display: flex;
    flex-direction: row;
}
.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.aboutus-main {
    position: relative;
    background-image: url('../images/about-us-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aboutus-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.aboutus-main-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.aboutus-main-content h2 {
    font-size: 4em;
    font-weight: bolder;
    margin-bottom: 40px;
}
.location-main {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 120px 0;
}
.location-main .container {
    background-color: #FFF;
    padding: 30px;
}
.location-main-content {
    height: 350px;
    overflow-y: auto;
}
.location-main-content h2 {
    font-size: 2.3em;
    color: #C3852D;
    font-weight: bolder;
    margin-bottom: 20px;
}
.location-main-content p,
.location-main-content span {
    color: #8E8E8E;
}
.location-main-content p {
    font-size: 1.2em;
}
.location-main-content span {
    font-size: 0.9em;
}
.footer-main {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
}
.footer-main p {
    color: #7E7E7E;
    margin-bottom: 20px;
}
.footer-main a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
}
.footer-main a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .reviews {
        flex-direction: column;
        align-items: center;
    }
    .reviews p {
        font-size: 0.9em;
    }
    .reviews em {
        font-size: 0.8em;
    }
    .hero h1 {
        font-size: 4.5em;
    }
    .hero h2 {
        font-size: 1.7em;
        margin-bottom: 10px;
    }
    .recommended-food p {
        font-size: 1.1em;
    }
    .recommended-food h2 {
        font-size: 1.9em;
        margin-bottom: 30px;
    }
    .recommended-food .btn-view {
        width: 300px;
        height: 30px;
        margin: 0 auto;
        margin-top: -15px;
        margin-bottom: 20px;
        flex-direction: row;
        text-align: center;
    }
    .food-item {
        height: 200px; 
        margin-bottom: 20px;
    }
    .customer-review h2 {
        font-size: 2.2em;
    }
    .aboutus-main-content h2 {
        font-size: 2.3em;
        font-weight: bolder;
        margin-bottom: 40px;
    }
    .email-main-content h2 {
        font-size: 1.3em;
    }
    .email-main-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
}