@font-face {
    font-family: 'BonVivant Bold';
    src: url(./assets/fonts/BonVivantSerif-Bold.otf);
}
@font-face {
    font-family: 'BonVivant';
    src: url(./assets/fonts/BonVivantSerif.otf);
}

/* 
    font-family: 'BonVivant', sans-serif';
    font-family: 'Montserrat', sans-serif;
    font-family: 'Playfair Display', serif;
*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    background-color: #F9F6F3;
    color: #212220;
    margin: 0;
}

/* Lance's Styles */
/* landing page */
.landingSection {
    padding: 20px 0 45px 100px;
    display: flex;
    height: 90vh;
}

.contentContainer {
    padding-top: 120px;
    width: 45%;
}

.contentContainer h1 {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 65px;
    letter-spacing: -3px;
    margin: 0;
    margin-bottom: 27px;
}

.contentContainer h1 span {
    color: #98956A;
}

.contentContainer p {
    margin: 0;
}

.landingSection img {
    position: absolute;
    right: 0;
}

.buttonContainer {
    display: flex;
    margin-top: 35px;
}

.buttonContainer button,
.buttonContainer a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    background: #292E1E;
    border: 1px solid #292E1E;
    border-radius: 20px;
    padding: 17px 30px;
    color: #F9F6F3;
    cursor: pointer;
    transition: background-color .5s;
    text-decoration: none;
}

.buttonContainer button:last-child {
    background: transparent;
    border: 1px solid #85877C;
    border-radius: 20px;
    color: #212220;
    margin-left: 30px;
}

.buttonContainer button:hover,
.buttonContainer a:hover {
    background-color: #C8CD49;
    border-color: #C8CD49;
    color: #212220;
}

/* mission vision section */
.missionVision {
    padding: 0 100px 40px;
    display: flex;
}

.missionVision h1 {
    font-family: 'Playfair Display';
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: #212220;
}

.leftContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.leftContent h1 {
    margin: 0 0 30px;
    position: absolute;
    bottom: -325px;
    margin-left: 45px;
    z-index: 1;
}

.leftContent h1 span {
    margin-left: 120px;
}

.statementBg {
    position: absolute;
    width: 469px;
    height: 38px;
    margin-left: 150px;
    bottom: -300px;
    background: #C8CD49;
}

.restaurantImgs {
    display: flex;
    flex-direction: column;
    margin: 0 30px 0 20px;
}

.restaurantImgs img:first-child {
    margin-bottom: 20px;
}

.rightContent {
    padding-top: 20px;
}

.rightContent p {
    margin: 0;
}

.visionContent h1 {
    margin: 90px 0 30px;
}
/* Lance's Styles End */

/* Hedieh's Styles Start */
.navBar {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 30px 0 20px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    justify-content: space-around;
}

.navBar a {
    text-decoration: none;
    color: #212220;
    padding: 3px 4px;
    transition: color .3s;
    border-bottom: 5px solid transparent;
}

.navBar a:hover {
    color: #a6ac3b;
}

.homeLink {
    border-bottom: 5px solid #C8CD49 !important;
}
/* Hedieh's Styles End */ 

/* Alex's Styles Start */
.imageHolder {
    display: flex;
    justify-content: center;
}

.imageHolder img {
    width: 33.33%;
}

/* footer */
.footerContent {
    background-color: #79450B;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0 85px;
    color: #F9F6F3;
}

.footerContent img:first-child {
    cursor: pointer;
}

.linkContainer {
    display: flex;
    flex-direction: column;
}

.linkContainer a {
    text-decoration: none;
    color: #F9F6F3;
    cursor: pointer;
    transition: color .3s;
    padding-bottom: 20px;
}

.linkContainer a:hover {
    color: #a6ac3b;
}

.linkContainer a:last-child {
    padding: 0;
}

.socialIcons {
    display: flex;
    justify-content: center;
}

.socialIcons img {
    cursor: pointer;
}

.socialIcons img:nth-child(2) {
    padding: 0 25px;
}
/* Alex's Styles End */
