/*------------------------*/
/*BASIC SETUP */
/*------------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*------------------------*/
/* HEADER */
/*------------------------*/

header {
    background-color: #b40404;
    background-color: #b40404;
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

.logo{
    height: 145px;
    width: auto;
    margin-left: 34%;
    margin-top: 15%;
    padding-left: 5%;
}

/*------------------------*/
/*REUSABLE COMPONENTS */
/*------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}


/*-----HEADINGS-----*/

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}



.box {
    padding: 1%;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #b40404;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3:after {
    display: block;
    height: 2px;
    background-color: #b40404;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*-----Paragraphs-----*/

.box p {
    font-size: 90%;
    line-height: 145%;
    font-weight: bold
}

/*Main Nav*/

.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
    padding-right: 5%;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
    padding: 8px 0;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #b40404;
}


/*Mobile Nav*/

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/*------------------------*/
/*TIME */
/*------------------------*/

.section-hours {
    background-color: #ffebeb;
    width: 100%;
    height: 100vh;
}

.section-hours h2 {
    margin-top: 15%;
}

.section-hours h3 {
    margin-top: 10%;
}

.mapouter {
    margin: 10% auto;
    position:relative;
    text-align:right;
    height:225px;
    width:250px;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:225px;
    width:250px;}

/*------------------------*/
/*FOOD MENU */
/*------------------------*/

.section-menu {
    background-color:#ffebeb;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

#menu .box p {
    font-size: 15px;
}

.menu-1 {
    height: 80%;
}

/*------------------------*/
/* FOOTER */
/*------------------------*/

footer {
    background-color: #333;
    padding: 50px;
    font-size: 80%;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;

}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 160%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    -webkit-transition: color 0.2s;
    transition: color 0.2s
}

.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-twitter:hover {
    color: #55acee;
}

.ion-social-googleplus:hover {
    color: #dd4b39;
}

.ion-social-instagram:hover {
    color: #517fa4;
}

footer p {
    color: #888;
    text-align: center;
    margin-top: 20px;
}

/*
 *  STYLE 13
 */

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);
    border-radius: 10px;
    background-color: #CCCCCC;
}

html::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D62929;
    background-image: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4) 50%, transparent, transparent)
}


