/*
Theme Name: La Kebaberie
Theme URI: http://underscores.me/
Author: Aline Keller
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kebaberie
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

La Kebaberie is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
*** TABLE OF CONTENTS:
----------------------------------------------------------------

01 # Site structure + global elements
02 # WP resets (underscores.me)
03 # Header
04 # Global content
05 # Articles & pages
06 # Homepage
   # Footer
   
--------------------------------------------------------------*/


/* 01 SITE STRUCTURE + GLOBAL ELEMENTS
-------------------------------------------------------------- */

body {
  background: #f5f4f3;
  color: #232525;
  font-family: 'Noto Sans', Arial, sans-serif;
  margin: 0;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f1111;
}
h1,
h2 {
  font-family: 'Roboto Slab', 'Cambria', serif;
}

h1 {
  font-size: 1.75em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.125em;
}

a {
  color: #54973a;
/*   font-weight: 600; */
  transition: color .2s ease-in-out, background-color .3s ease-in-out, opacity .3s ease-in-out;
}
a:focus,
a:hover {
  color: #417a2c;
}
a:focus {
  outline: 1px dotted #54973a;
}

a .title,
.entry-title a {
  color: #161514;
}
a:hover .title,
.entry-title a:hover {
  color: #54973a;
}
.btn {
  font-size: 1em;
}
.small {
  color: #5a5c5d;
  font-size: 87.5%;
}
th .small {
  font-size: 80%;
  font-weight: 400;
}

.btn.link-imp {
  display: inline-block;
  height: auto;
  line-height: 1.4em;
  margin: 20px auto;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
}

hr.sep {
  border: 0;
  height: 1px;
  margin: 30px 0;
  position: relative;
}
hr.sep:before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  content: "";
  background: #54973a;
  height: 10px;
  margin-left: -5px;
  opacity: .4;
  position: absolute;
  top: auto; right: auto; bottom: -4px; left: 50%;
  transform: rotate(45deg);
  width: 10px;
}

/* Images */

.img img {
  width: 100%:
}

/* Forms */

button,
input,
label,
select,
textarea {
  font-size: 1em;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
  border-radius: 1px;
  height: 36px;
}

.form-checkbox-inline label,
.form-checkbox label,
.form-radio-inline label,
.form-radio label {
  font-size: 1em;
}

.btn,
button,
input[type="button"],
input[type="submit"] {
  background: transparent;
  border-radius: 0;
  border: 1px solid #54973a;
  color: #54973a;
  height: 36px;
  line-height: 32px;
}
.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: #54973a;
  color: #fff;
}

/* Tables */




/* 02 WP RESETS
-------------------------------------------------------------- */

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/


/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* 03 HEADER
-------------------------------------------------------------- */

.site-header {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
  padding-top: 10px;
  padding-bottom: 5px;
  position: fixed;
  right: 0;
  transition: right 0.2s ease;
  width: 100%;
  z-index: 99;
}
.site-header .contentcenter {
  position: static;
}

/* Logo */

.site-branding {
  float: left;
  height: 27px;
  margin-top: 3px;
  width: 190px;
}
.site-branding .title-link {
  background: transparent url(img/logo-kebaberie-new.png) no-repeat;
  background-size: auto 100%;
  display: block;
  height: inherit;
  width: 100%;
}
.svg .site-branding .title-link {
  background-image: url(img/logo-kebaberie-new.svg);
}

.site-title {
  margin: 0;
}

/* Off-canvas menu */

#menu-toggle {
  background-image: url(img/offcanvas-controls.png);
  background-position: right 0;
  background-repeat: no-repeat;
  float: right;
  display: block;
  height: 40px;
  margin-top: -3px;
  text-indent: -3333em;
  width: 40px;
}
#menu-toggle:hover {
  background-position: right -38px;
}
#menu-toggle.close {
  background-position: right -76px;
}
#menu-toggle.close:hover {
  background-position: right -114px;
}
.svg #menu-toggle {
  background-image: url(img/offcanvas-controls.svg);
}

#page {
  position: relative;
  right: 0;
  transition: right 0.2s ease;
  
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
#page:after {
  content: "";
  background: #313131;
  bottom: 0;
  position: fixed;
  right: -82%;
  top: 0;
  transition: right 0.2s ease;
  width: 82%;
  z-index: 98;
}
.offcanvas #page:after {
  right: 0;
}
.site-nav {
  bottom: auto;
  overflow: auto;
  padding: 30px 0;
  position: absolute;
  right: -82%;
  text-align: center;
  top: 0;
  transition: right 0.2s ease;
  width: 82%;
  z-index: 99;
}
.site-nav li {
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.site-nav a {
  color: #fff;
  display: block;
  padding: .5em 0;
}
.site-nav a:hover {
  color: #739513;
}

.offcanvas #page,
.offcanvas .site-header {
  right: 82%;
}

@media screen and (min-width: 1020px) {
  
  /* Off-canvas menu */
 
  #menu-toggle {
    display: none;
  }
  .site-nav {
    position: static;
    width: auto;
  }
  
  .offcanvas #page { right: 0; }
 
}

/* 04 GLOBAL CONTENT
-------------------------------------------------------------- */

.site-content {
  flex: 1;
}

.site-header + .site-content {
  padding-top: 55px;
}

/* Tables */

.table-menu {
  margin-bottom: 30px;
}
.table-menu:last-child {
  margin-bottom: 0;
}
.table-menu td,
.table-menu th {
  border-top: 0;
  padding: .5em 10px .5em 0;
  text-align: right;
}
.table-menu td:first-child,
.table-menu th:first-child {
  text-align: left;
}
.table-menu td:last-child,
.table-menu th:last-child {
  padding-right: 0;
}

.table-menu thead th {
  font-weight: 600;
}
.table-menu thead td {
  opacity: .6;
}
.table-menu thead td .small {
  color: #232525;
  font-weight: 400;
  text-transform: none;
}

.table-menu thead td,
.table-menu th {
  border-bottom: 2px solid #dddcdc;
  vertical-align: bottom;
}
.table-menu td {
  border-bottom: 1px dotted #cfcdcd;
}
.table-menu tbody tr:last-child td {
  border: 0;
}

.table-hours {
  margin-top: 0;
}
.table-hours td {
  border: 0;
  padding: 0 0 5px;
}
.table-hours tr td:first-child {
  color: rgba(15,17,17,.6);
  font-weight: 600;
}

/* 05 ARTICLES & PAGES
-------------------------------------------------------------- */

.page-header {
  margin-bottom: 30px;
  text-align: center;
}

.page-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-img {
  background-color: #fdfdfc;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 200px;
  max-height: 30vh;
}

.entry-content img {
  margin-bottom: 30px;
}

.entry-content .col + .col {
  margin-top: 30px;
}

.entry-content .bg-grey {
  background: #ebeae9;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.entry-content .bg-grey:before {
  content: "";
  background: #ebeae9;
  position: absolute;
  top: 0; right: -3333em; bottom: 0; left: -3333em;
  z-index: 0;
}
.entry-content .bg-grey * {
  position: relative;
}

/* 06 HOMEPAGE
-------------------------------------------------------------- */

/* Intro */

.home-content.home-intro {
  margin-bottom: 0;
  padding: 0;
}
.home-intro .page-img {
  height: 300px;
  max-height: 30vh;
}
.home-intro-content {
  margin: -10vh auto auto;
}
.home-intro-content > .inner {
  background: #fff;
  padding: 20px;
  position: relative;
}
.home-intro-content table {
  margin-top: 0;
}

.home-intro-content .col {
  margin-bottom: 30px;
}
.home-intro-content .widget {
  margin-bottom: 30px;
}
.home-intro-content .col:last-child,
.home-intro-content .widget:last-child {
  margin-bottom: 0;
}

/* Pages */

.home-content .page-title {
  margin-bottom: 45px;
  position: relative;
  text-align: center;
}
.home-content .page-title:before {
  content: "";
  border-top: 2px solid rgba(0,0,0,.1);
  height: auto;
  margin-left: -50px;
  position: absolute;
  top: auto; right: auto; bottom: -15px; left: 50%;
  width: 100px;
}
.home-content {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.home-content .page-img {
  margin-top: 30px;
  margin-bottom: -30px;
}
.home-content.home-intro .page-img {
  margin: 0;
}
.page-home {
  background: #fff;
  padding-top: 30px;
}
.page-home .page-content {
  padding-top: 0;
  padding-bottom: 0;
}
.page-home .page-content .inner {
  margin-left: auto;
  margin-right: auto;
}

#a-propos {
  background: #ebeae9;
}
#contact {
  background: transparent;
}

/* Monthly specials */

#menu {
/*
  margin-top: -30px;
  padding-top: 30px;
*/
}

.monthly-specials {
  margin-left: auto;
  margin-right: auto;
}
.monthly-specials .content {
/*
  background: #54973a;
  border: 2px solid rgba(255,255,255,.22);
  color: #fff;
  outline: 4px solid #54973a;
*/
  padding: 0;
  text-align: center;
}
.monthly-specials .content img {
  display: block;
  height: auto;
  margin: 0 auto;
}
.monthly-specials h3 {
  color: #fff;
  margin-bottom: 50px;
  position: relative;
}
.monthly-specials h3:before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  content: "";
  background: #fff;
  height: 10px;
  margin-left: -5px;
  opacity: .4;
  position: absolute;
  top: auto; right: auto; bottom: -30px; left: 50%;
  transform: rotate(45deg);
  width: 10px;
}
.monthly-specials ul {
  list-style: none;
  padding: 0;
}

/* Contact */

.map {
  border: 4px solid #fff;
  margin-bottom: 30px;
}
.map iframe {
  width: 100%;
  vertical-align: top;
}

/* Newsletter */

.banner-footer {
  background: #54973a;
  color: #fff;
}
.banner-footer .widget {
  margin-left: auto;
  margin-right: auto;
}
.banner-footer .page-title {
  color: #fff;
}
.banner-footer label {
  font-weight: 500;
}
.banner-footer input {
  border: 0;
}
.banner-footer input[type="submit"] {
  background: #40732c;
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
}

.banner-footer .newsletter:not(:last-child) {
  margin-bottom: 20px;
}


/* FOOTER
-------------------------------------------------------------- */

.site-footer {
  background: #fff;
  padding: 20px 0;
  text-align: center;
}
.site-footer p {
  font-size: .875em;
}

.site-footer .social {
  margin-top: 20px;
}
.site-footer .sfmsb-follow-social-buttons a {
  display: inline-block;
  float: none;
  margin: 0 6px 6px;
}

/*  -----------------------------------------------------------

	Media Queries - Mobile phones (> 480px)

------------------------------------------------------------ */


@media screen and (min-width: 480px) {
  
  .monthly-specials .content img {
    max-width: 380px !important;
  }
  
}

/*  -----------------------------------------------------------

	Media Queries - Small desktop & vertical tablets (> 760px)

------------------------------------------------------------ */

@media screen and (min-width: 760px) {
  
  /* --- 01 Site structure + global elements --- */
  
  
  
  /* --- 03 Header --- */
  
  .site-header {
    padding-bottom: 10px;
  }
  
  /* Logo */
  
  .site-branding {
    height: 34px;
    width: 240px;
  }
  
  /* Nav */
  
  #page:after,
  .site-nav {
    width: 44%;
  }
  .offcanvas #page,
  .offcanvas .site-header {
    right: 44%;
  }
  .offcanvas .site-nav {
    right: -44%;
  }
  
  /* --- 04 Global content --- */
  
  .site-header + .site-content {
    padding-top: 65px;
  }
  
  /* Tables */
  
  .table-menu thead th {
    font-size: 1.125em;
    font-weight: 600;
  }
  .table-menu thead td {
    font-weight: 600;
    text-transform: uppercase;
  }
  .table-menu thead td .small {
    font-size: 1em;
    font-weight: 400;
  }
  
  /* --- 06 Homepage --- */
  
  .home-intro-content > .inner {
    padding: 30px;
  }
  .home-intro-content .col {
    margin-bottom: 0;
    position: static;
  }
  .home-intro-content .col-right:before {
    content: "";
    border-left: 2px solid rgba(0,0,0,.1);
    height: auto;
    position: absolute;
    top: 0; right: auto; left: 54%; bottom: 0;
    width: 0;
  }
  
  .monthly-specials .content img {
    max-width: 540px !important;
  }
  
  /* Newsletter */
  
  .banner-footer .newsletter .mailpoet_paragraph {
    float: left;
  }
  
  .banner-footer .newsletter .mailpoet_hp_email_label + .mailpoet_paragraph {
    width: calc(100% - 160px);
  }
  .site-footer .newsletter .mailpoet_hp_email_label + .mailpoet_paragraph + .mailpoet_paragraph {
    float: right;
  }
  .banner-footer .newsletter input {
    height: 42px;
  }
  .banner-footer .newsletter input[type="text"] {
    padding-left: 15px;
    width: 100%;
  }
  .banner-footer .newsletter input[type="submit"] {
    float: right;
    line-height: 38px;
    margin-top: 29px;
    padding: 0;
    text-align: center;
    width: 160px;
  }
  
  .banner-footer .mailpoet_message .mailpoet_validate_success,
  .banner-footer .mailpoet_message .mailpoet_validate_error {
    color: #fff;
    font-style: italic;
    opacity: .8;
  }
  
}

/*  -----------------------------------------------------------

	Media Queries - Desktop from 1020px to 1200px

------------------------------------------------------------ */

@media screen and (min-width: 1020px) {
  
  /* --- 01 Site structure + global elements --- */
  
  /* Typography */
  
  h1 {
    font-size: 1.875em;
  }
  h2 {
    font-size: 1.75em;
  }
  h3 {
    font-size: 1.25em;
  }
  
  .btn.link-imp {
    font-size: 1.125em;
    padding: 12px 30px;
  }
  
  /* --- 03 Header --- */
  
  .site-header {
    box-shadow: none;
    height: 70px;
    padding-top: 20px;
    transition: all .3s ease-in-out;
  }
  .cssgradients .home .site-header {
    background: transparent;
  }
  
  .small-header .site-header {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.12);
    height: 60px;
    padding: 10px 0 5px;
  }
  .small-header.home .site-header {
    background: #fff;
  }
   
  /* Logo */
  
  .site-branding {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    height: 41px;
    transform: scale(1);
    transform-origin: top left;
    transition: transform .3s ease-in-out;
    width: 290px;
  }
  
  .small-header .site-branding {
    height: 34px;
  }
  .csstransforms .small-header .site-branding {
    -webkit-transform: scale(.83333);
    -ms-transform: scale(.83333);
    -o-transform: scale(.83333);
    height: 41px;
    transform: scale(.83333);
  }
  
  /* Nav */
  
  .site-nav {
    float: right;
    margin-top: 20px;
    overflow: visible;
    padding: 0;
    text-align: left;
    transition: all .3s ease-in-out;
    width: auto;
  }
  .small-header .site-nav {
    margin-top: 14px;
  }
  .site-nav li {
    display: inline-block;
    margin: 0 15px;
  }
  .site-nav li:last-child {
    margin-right: 0;
  }
  .site-nav a {
    color: #0f1111;
    padding: 0;
  }
  .site-nav a:hover {
    color: #417a2c;
  }
  
  /* --- 04 Global content --- */
  
  .site-header + .site-content {
    padding-top: 100px;
  }
  
  /* Tables */
  
  .table-menu {
    margin-bottom: 40px;
  }
  .table-menu td:not(:first-child) {
    width: 130px;
  }
  
  /* --- 05 Pages & articles --- */
  
  .page-img {
    height: 400px;
    max-height: 70vh;
  }
  
  .entry-content img {
    margin-bottom: 40px;
  }
  
  .entry-content .bg-grey {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .entry-content .col-l-6 + .col-l-6 {
    margin-top: 0;
  }
  
  /* --- 06 Homepage --- */
  
  .home-content.home-intro {
    margin-top: -80px;
    margin-bottom: 0;
    position: relative;
  }
  .cssgradients .home-intro:before {
    content: "";
        
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 28%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(28%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 28%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 28%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 28%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 28%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
    
    height: 260px;
    position: absolute;
    top: -20px; right: 0; bottom: auto; left: 0;
    width: 100%;
  }
  .home-intro .page-img {
    height: 680px;
    max-height: 80vh;
  }
  
  .home-intro-content {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -40px;
    margin-top: 0;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
  }
  .home-intro-content:before {
    content: "";
    background: rgba(0,0,0,.1);
    position: absolute;
    top: 5px; right: -5px; bottom: -5px; left: 5px;
  }
  
  /* Pages */
  
  #menu {
/*
    margin-top: -40px;
    padding-top: 40px;
*/
  }
  
  #carte .col-l-6 {
    width: 100%;
  }
  
  .home-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-content .page-img {
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .home-intro + .home-content {
    padding-top: 80px;
  }
  .home-content .page-title {
    margin-bottom: 55px;
  }
  
  /* Monthly specials */
  
  .monthly-specials .content {
/*     padding: 30px; */
  }
  .monthly-specials li {
    font-size: 1.125em;
  }
  
  /* Newsletter */
  
  
  
  /* --- Footer --- */
  
  .site-footer {
    padding: 30px 0;
    text-align: left;
  }
  .site-footer .site-info {
    float: left;
    max-width: 48%;
  }
  
  .site-footer .social {
    float: right;
    margin: 0;
    max-width: 48%;
  }
  
}

/*  -----------------------------------------------------------

	Media Queries - Desktop from 1260px to 1440px

------------------------------------------------------------ */

@media screen and (min-width: 1260px) {
  
  /* --- 01 Site structure + global elements --- */
  
  /* Typography */
  
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.875em;
  }
  h3 {
    font-size: 1.375em;
  }
  
  .btn.link-imp {
    font-size: 1.25em;
    padding: 20px 40px;
  }
  
  /* --- 03 Header --- */
    
  /* Logo */
  
  .site-branding {
    height: 47px;
    width: 330px;
  }
  
  /* Nav */
  
  .site-nav li {
    margin: 0 20px;
  }
  
  /* --- 04 Global content --- */
  
  .entry-content .content-narrow {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  
  /* --- 06 Homepage --- */
  
  /* Pages */
  
  #menu {
/*
    margin-top: -60px;
    padding-top: 60px;
*/
  }
  
  #carte .col-l-6 {
    width: 50%;
  }
  #carte .col-l-6:nth-child(2n+1) {
    padding-right: 60px;
  }
  #carte .col-l-6:nth-child(2n) {
    padding-left: 60px;
  }
  
  .home-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-content .page-img {
    margin-top: 60px;
    margin-bottom: -60px;
  }
  .home-intro + .home-content {
    padding-top: 100px;
  }
  .home-content .page-title {
    margin-bottom: 75px;
  }
  
  /* Monthly specials */
  
  .monthly-specials li {
    font-size: 1.25em;
  }
  
  /* Newsletter */
  
  .banner-footer .page-title {
    margin-bottom: 55px;
  }
  
  .banner-footer .newsletter input {
    height: 54px;
  }
  .banner-footer .newsletter input[type="text"] {
    padding-left: 30px;
  }
  .banner-footer .newsletter input[type="submit"] {
    float: right;
    line-height: 50px;
    margin-top: 29px;
    padding: 0;
    text-align: center;
    width: 160px;
  }
  
  
}

/*  -----------------------------------------------------------

	Media Queries - Desktop > 1340px

------------------------------------------------------------ */

@media screen and (min-width: 1440px) {}
