/* RESET CSS ////////////////////////////////////////// */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* GENERAL APP STYLES /////////////////////////////////// */
/* GENERAL APP STYLES /////////////////////////////////// */
/* GENERAL APP STYLES /////////////////////////////////// */
body {
    font-family: 'Mukta Mahee', sans-serif;
    font-size: 14px;
    /* overflow: hidden; */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phoneFrame {
    background-color: #000;
    width: 390px;
    height: 767px;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    border-radius: 20px;
}

.phoneScreen {
    position: relative;
    overflow: hidden;
    width: 375px;
    height: 667px;

}

main {
    position: absolute;
    width: 375px;
    height: 667px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
    display: none;
}



/* SPLASH SCREEN ////////////////////////////////////////// */
/* SPLASH SCREEN ////////////////////////////////////////// */
/* SPLASH SCREEN ////////////////////////////////////////// */

#splash {
    width: 375px;
    background-image: url(../images/intro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#splash header {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

#splash header img {
    width: 40%;
}

#splash footer {
    height: 45px;
    background: #d76100;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}


/* LANDING SCREEN ///////////////////////////////////////// */
/* LANDING SCREEN ///////////////////////////////////////// */
/* LANDING SCREEN ///////////////////////////////////////// */



#landing #logo1 {
    background-image: url(../images/landing1_2.jpg);
    background-size: 100%;
    height: 222px;
    background-repeat: no-repeat;

}

#landing #logo1:hover {
    background-image: url(../images/landing1.jpg);
    background-size: 100%;
    height: 222px;
    background-repeat: no-repeat;
}

#landing #logo2 {
    background-image: url(../images/landing2_2.jpg);
    background-size: 100%;
    height: 222px;
    background-repeat: no-repeat;
}

#landing #logo2:hover {
    background-image: url(../images/landing2.jpg);
    background-size: 100%;
    height: 222px;
    background-repeat: no-repeat;
}

#landing #logo3 {
    background-image: url(../images/landing3_2.jpg);
    background-size: 100%;
    height: 222px;
    background-repeat: no-repeat;
}

#landing #logo3:hover {
    background-image: url(../images/landing3.jpg);
    background-size: 100%;
    height: 222px;
    background-repeat: no-repeat;
}


#landing h1 {
    margin: 20px;
    padding: 0 10px;
    position: absolute;
    font-size: 35px;
    color: white;
}

#landing p {
    color: white;
    font-size: 18px;
    font-weight: 100;
    margin-left: 30px;
    padding-top: 70px;
}

#landing #logo1:hover h1 {
    background-color: rgba(255, 255, 255, 0.7);
    color: #186634;
}

#landing #logo1:hover p {
    display: none;
}

#landing #logo2:hover h1 {
    background-color: rgba(255, 255, 255, 0.5);
    color: #373737;
}

#landing #logo2:hover p {
    display: none;
}

#landing #logo3:hover h1 {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fb1807;
}

#landing #logo3:hover p {
    display: none;
}

#landing span {
    color: #808080;
}



/* MENU:hamburger ////////////////////////////////////////////// */
/* MENU:hamburger ////////////////////////////////////////////// */
/* MENU:hamburger ////////////////////////////////////////////// */
#menu {
    background: #d76100;
    padding-top: 80px;
    width: 400px;
}

#menu header {
    padding: 15px;
    border-bottom: solid 5px #000000;
    color: white;
    font-size: 25px;
    line-height: 100%;
    display: flex;
    margin-bottom: 30px;

}

.menuBtn {
    padding: 20px;
    background: #FFF;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 100%;
    cursor: pointer;
}

.menuBtn img {
    width: 25px;
    height: auto;
    float: left;
    margin-right: 7px;
    padding-bottom: 15px;
}

#menu p {
    padding-top: 5px;
}

.contactIcon {
    padding-top: 5px;
}


/* SHARED RESTAURANT /////////////////////////////////// */
/* SHARED RESTAURANT /////////////////////////////////// */
/* SHARED RESTAURANT /////////////////////////////////// */
header img {
    width: 25px;
    height: auto;
}

.rest header {
    width: 375px;
    height: 46px;
    position: absolute;
    top: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    place-content: center;
    justify-items: center;
}



.rest section {
    position: absolute;
    top: 46px;
    width: 375px;
    height: 576px;
    background: #FFF;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;

    /*hide scrollbar for IE, Edge, Firefox*/
    scrollbar-width: none;
    /*Firefox*/
    -ms-overflow-style: none;
    /*IE & Edge*/
}

footer {
    width: 375px;
    height: 60px;
    position: absolute;
    bottom: 0;
}


/*hide scrollbar on Chrome, Safari, Opera*/
.rest section::-webkit-scrollbar {
    display: none;
}



.homeIcon,
.specialsIcon,
.reservationsIcon,
.accountIcon {
    transition: all 1s;
}

/* general section */
.sectionContainer {
    overflow: auto;
    margin: 0;
}

/* SHARED RESTAURANT ///////////////////////////////// */
/* home ////////////////////////////////////////////// */
/* home ////////////////////////////////////////////// */


.logoAndExp {
    padding: 0 15px;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 1fr;
}

.bar {
    border-left: 1px solid #ccc;
    padding: 3px;
    font-size: 15px;
    margin-bottom: 15px;
}

.bar p {
    padding-left: 5px;
}

.bar span1 {
    font-weight: 100;
}

.bar span2 {
    color: #cccccc;
}

.homeImg {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: flex;
}

.photoText p {
    background-color: #d9d9d9;
    text-align: center;
    height: 125px;
    font-size: 12px;
    font-weight: 100;
    display: flex;
    justify-content: center;
    align-items: center;

}


.hours {
    margin-top: 20px;
    text-align: center;
}

.hours img {
    width: 13px;
    margin-right: 5px;
}

.hours .mapIcon {
    width: 10px;
    ;
}

.hours h2 {
    margin-left: 60px;
    border-bottom: solid 1px #000;
    width: 210px;
}

.hours p {
    margin-top: 5px;
}

.reviews {
    margin: 20px;
}

.profile {
    text-align: left;
    border-bottom: solid 1px #000;
    overflow: auto;
    padding-bottom: 15px;
}

.profile img {
    width: 50px;
    height: auto;
    float: left;
    margin-right: 15px;
}

.profile p:last-child {
    margin-top: 5px;
}

.reviews p:last-child {
    text-align: left;
    margin-top: 10px;
}

/* SHARED RESTAURANT ///////////////////////////////////// */
/* specials ////////////////////////////////////////////// */
/* specials ////////////////////////////////////////////// */

.sectionBanner {
    width: 359px;
    height: 50px;
    background-size: 359px auto;
    margin-left: -12px;
    text-align: center;
    line-height: 125%;
    padding-top: 10px;
}


.specials .sectionContainer {
    border-top: none;
}

.nightContainer {
    padding: 10px;
    margin: 10px 0;
    overflow: auto;
    display: flex;
}

.nightContainer:first-child {
    margin-top: 0;
}

.nightContainer:nth-of-type(2) {
    flex-direction: row-reverse;
}

.nightContainer:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sectionBanner h1 {
    font-size: 20px;
    font-weight: 100;
}



.altImg {
    float: right !important;
    margin: 0 !important;
    margin-left: 10px !important;
}

/* SHARED RESTAURANT ///////////////////////////////////////// */
/* reservations ////////////////////////////////////////////// */
/* reservations ////////////////////////////////////////////// */
.reservations .sectionContainer {
    text-align: left;
    padding: 0 5px;
}

.reservations img {
    width: 100%;
    height: auto;
}

form p {
    display: grid;
    grid-template-columns: 22% 1fr;
    grid-auto-flow: row;
}

label {
    text-align: right;
    padding-right: 10px;
    grid-row: auto;
    font-size: 12px;
    margin-bottom: 3px;
    margin-top: 10px;
}

#inputBox {
    margin: 3px;
    padding: 5px;
    border: solid 1px;
    width: 100%;
    font-size: 12px;
    border-radius: 5px;
    color: #ccc;
    background: #FFF;
    font-family: 'Mukta Mahee', sans-serif;
}


/* SHARED RESTAURANT /////////////////////////////////// */
/* footer ////////////////////////////////////////////// */
/* footer ////////////////////////////////////////////// */

.rest footer {
    display: grid;
    grid-template-columns: 12.5% 25% 25% 25% 12.5%;
    grid-template-rows: 1fr;
    background: #d9d9d9;
    height: 45px;
}

.rest footer div {
    text-align: center;
    overflow: auto;
    color: #FFF;
}

.rest footer img {
    width: 25px;
    height: auto;
    margin-top: 10px;
}

.homeIcon {
    grid-column: 2 / 3;
}

.specialsIcon {
    grid-column: 3 / 4;
}

.reservationsIcon {
    grid-column: 4 / 5;
}

.accountIcon {
    grid-column: 5 / 6;
}





/* RESTAURANT 1 ////////////////////////////////////// */
/* RESTAURANT 1 ////////////////////////////////////// */
/* RESTAURANT 1 ////////////////////////////////////// */

/* home */

#rest1 header {
    background: #186634;
}

#rest1 .logo {
    width: 60%;
    height: auto;
    margin: 13px 30px;
}

#rest1 .sectionBanner h1 span {
    font-weight: 600;
    color: #186634;
}

/* specials */

#rest1 .nightContainer {
    border: solid 1px #cccccc;
}

#rest1 .nightContainer img {
    width: 312px;
    height: auto;
}

#rest1 h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    color: #cccccc;
}

#rest1 .nightContainer p {
    font-weight: 600;
    margin-top: 10px;
    margin: 0 !important;
    text-align: left;
}

#rest1 .nightContainer p span {
    font-weight: 100;
}


/* reservations */

#rest1 .reserve {
    border-color: #FFF !important;
    color: #FFF;
    background: #999;
}

#rest1 .reserve:hover {
    border-color: #186634 !important;
    color: #186634;
    background: #FFF;
}





/* RESTAURANT 2 ////////////////////////////////////// */
/* RESTAURANT 2 ////////////////////////////////////// */
/* RESTAURANT 2 ////////////////////////////////////// */
/* home */

#rest2 header {
    background: #373737;
}

#rest2 .logo {
    width: 75%;
    height: auto;
    margin: 19px 15px;
}

#rest2 .sectionBanner h1 span {
    font-weight: 600;
    color: #000;
}

/* specials */

#rest2 .nightContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    border: solid 1px #cccccc;
    border-radius: 13px;
}

#rest2 .nightContainer img {
    width: 100%;
    grid-column: 1 / 2;
    height: auto;
}

#rest2 h2 {
    position: absolute;
    margin-left: 10px;
    font-size: 15px;
    text-align: left;
    color: #fff;
}

#rest2 .nightContainer p {
    grid-column: 2 / 3;
    font-weight: 600;
    margin-top: 0;
    margin-left: 10px;
    font-size: 13px;
}

#rest2 .nightContainer p span {
    font-weight: 100;
}


/* reservations */

#rest2 .reserve {
    border-color: #FFF !important;
    color: #FFF;
    background: #999;
}

#rest2 .reserve:hover {
    border-color: #000 !important;
    color: #000;
    background: #FFF;
}





/* RESTAURANT 3 ////////////////////////////////////// */
/* RESTAURANT 3 ////////////////////////////////////// */
/* RESTAURANT 3 ////////////////////////////////////// */
/* home */

#rest3 header {
    background: #fb1807;
}

#rest3 .logo {
    width: 50%;
    height: auto;
    margin: 0 35px;
}

#rest3 .sectionBanner h1 span {
    font-weight: 600;
    color: #fb1807;
}

/* specials */

#rest3 .nightContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 50px;
    border-bottom: solid 1px #cccccc;
}

#rest3 .nightContainer img {
    width: 100%;
    grid-column: 1 / 2;
    height: auto;
}

#rest3 h2 {
    font-size: 15px;
    text-align: center;
    color: #000;
}

#rest3 .nightContainer p {
    grid-column: 2 / 3;
    font-weight: 100;
    margin-top: 0;
    text-align: center;
    font-size: 13px;
}




/* reservations */

#rest3 .reserve {
    border-color: #FFF;
    color: #FFF;
    background: #999;
}

#rest3 .reserve:hover {
    border-color: #fb1807;
    color: #fb1807;
    background: #FFF;
}