/* ------------------------------------- */
/* Basic Setup */
/* ------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear:both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ------------------------------------- */
/* Reusable */
/* ------------------------------------- */

.row {
    max-width: 1140px;
    margin: 0 auto; 
}

.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;    
}

/* Headers */

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 200%;
    word-spacing: 4px;
    letter-spacing: 1px;
    
    padding-top: 150px;
}

h2 {
    margin-top: 0;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #555;
    font-size: 170%;
    font-weight: 300;
    word-spacing: 4px;
    letter-spacing: 1px;
    text-align: left;
}

h3 {
    color: #555;
    font-size: 130%;
    font-weight: 300;
    word-spacing: 4px;
    letter-spacing: 1px;    
    text-align: left;
    
}

/* Icons */

.icon-big {
    font-size: 150%;
    display: block;
    color: #a3a3a3;
    margin-bottom: 10px;
}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #ffffff;
    font-size: 120%;
    margin-right: 10px;
    
    /* secrets to align text and icons */
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}

/* Paragraphs */

p {
    font-size: 100%;
    font-weight: 300;
    color: #a3a3a3;
}

.long-copy {
    color: #555;
    line-height: 150%;
    letter-spacing: .5px; 
    width: 55%;
    margin-left: 22.5%;
    margin-right: 22.5%;
}

/* ------------------------------------- */
/* Nav */
/* ------------------------------------- */

.logo {
    height: 100%;
    width: auto;
    float: left;
    margin-top: 20px;
    padding-bottom: 25px;
}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 50px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
}

.main-nav li a:hover,
.main-nav li a:active {
    color: #a3a3a3;
}

/* ------------------------------------- */
/* Header */
/* ------------------------------------- */

header {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/gyros.jpg);
    background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/gyros.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/gyros.jpg);
    
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
    
    min-height: 400px;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    padding-bottom: 1px; /* fix for firefox button cutoff bug */
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ------------------------------------- */
/* About Us */
/* ------------------------------------- */

.section-aboutus {
    background-color: #f4f4f4;
    background-size: cover;
    background-position: center;
    //height: 70vh;
    background-attachment: fixed;    
}

.section-aboutus .long-copy {
    margin-top: 50px;
    color: #555;
}

.section-aboutus .long-copy::after {
    display: block;
    height: 2px;
    content: " ";
    width: 25%;
    margin: 0 auto;
    border-bottom: 2px solid #555;
    margin-top: 60px;
    margin-bottom: 100px;
}

/* ------------------------------------- */
/* Pictures */
/* ------------------------------------- */

.section-pictures {
    padding: 0;
    background-color: #f4f4f4;
}

.meals-showcase {
    list-style: none;
    width: 100%;
}

.meals-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.meal-photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color:  #000;
}

.meal-photo img {
    opacity: 0.7;
    width: 100%; 
    height: auto;
    
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    -ms-transition: opacity 0.5s, -ms-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -ms-transform 0.5s;
    
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s, -ms-transform 0.5s;
}

.meal-photo img:hover {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1.10);
    -ms-transform: translateZ(0) scale(1.10);
    transform: translateZ(0) scale(1.10);
}

/* ------------------------------------- */
/* Location */
/* ------------------------------------- */

.section-location {
    background-color: #f4f4f4;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;    
}

.location a:link,
.location a:visited {
    text-decoration: none;
}

.location a p:hover,
.location a p:active {
    color: #555;
}

.section-location li {
    display: inline-block;
    padding-bottom: 30px;
}

.section-location .location {
    float: right;
    text-align: right;
}

.section-location .hours {
    float: left;
}

.section-location iframe {
    width: 100%;
}

.section-location .map {
    margin: 0 auto;
    width: 100%;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ------------------------------------- */
/* Quote */
/* ------------------------------------- */

.section-quote {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/hummus.jpg);
    background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/hummus.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/hummus.jpg);    
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 40vh;
}

.section-quote h2 {
    color: #fff;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-top: 80px;
}

.section-quote p {
    color: #fff;
    margin: 0 auto;
    padding: 0;
    font-style: italic;
    text-align: center;
}

/* ------------------------------------- */
/* Menu */
/* ------------------------------------- */

.section-menu {
    background-color: #f4f4f4;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-menu .menu-items li {
    text-decoration: none;
    display: block;
    margin: 15px;
    margin-left: 0;
}

.section-menu .vegetarian {
    padding-bottom: 10px;
}

.section-menu b {
    font-size: 95%;
    color: #bcbcbc;
}

/* ------------------------------------- */
/* Footer */
/* ------------------------------------- */

footer {
    background-color: #555;
    min-height: 20vh;
}

footer p {
    font-size: 80%;
}

footer ul li {
    margin: 20px;
    padding-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

footer a:link,
footer a:visited {
    text-decoration: none;
}

footer a i:hover,
footer a i:active {
    color: #d6d6d6;
}

footer .disclaimer {
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 60%;
}

footer .disclaimer a:link,
footer .disclaimer a:visited {
    text-decoration: none;
    color: #a3a3a3;
}

footer .disclaimer a:hover,
footer .disclaimer a:active {
    text-decoration: none;
    color: #d6d6d6;
}