@font-face {
	font-family: "Oswald";
	src: url("../fonts/Oswald-Regular.woff2") format("woff2"),
		url("../fonts/Oswald-Regular.ttf") format("truetype");
}


html {
	scroll-behavior: smooth;
}

body
{
	margin: 0;  /*centre la page */
	background-color: #242424; 
	font-family: 'Oswald', sans-serif;
    animation: fadein 4s;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

a  
{
	font-family: 'Oswald', sans-serif;
	text-decoration:none;
	color : #242424;
}

a:hover 
{
	text-decoration:none;
	color :  #466041;
}

p
{
	margin-top: 0px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0px;
	text-indent: 0px;
	text-align: justify;
	
	font-family: 'Oswald', Arial;	
	font-size: 13px;
	line-height: 19.5px;
	letter-spacing: 0.5px;
	font-weight:400;
	color: #595959;
}

/* --- En-tete --- En-tete --- En-tete --- En-tete --- En-tete --- En-tete --- En-tete --- En-tete --- En-tete --- En-tete --- */

#header
{
	height: 80px;
	background-color: white; 
	font-family: "Oswald", sans-serif;
}

#headtop{
	position: fixed;
    top: 0;
    width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #fff;
    transition: top 0.2s ease-in-out;
	overscroll-behavior: none;
}

#headtop a {
	display: inline-block;
}

#headtop a.openicon {
	display: none;
}
#headtop a.closeicon {
	display: none;
}

#headtop a.logo{
	width : 60px;
	height : 60px;
	background-image: url("../images/lelongchamp2.png");
	background-repeat: no-repeat;
	background-size: 60px 60px;
}

#headtop a.resa{
	padding:10px;
	background-color: #d70926;
	color: white;
	transition-property: background-color;
    transition-duration: 0.5s;
}

#headtop a.resa:hover{
	background-color: #fdc82f;
	color: white;
}
@media screen and (max-width: 600px) {
	#headtop a.headlink{
		display: none;
	}
	#headtop a.openicon{
		width : 40px;
		height : 40px;
		display: block;
		font-size: 40px;
		font-family: sans-serif;
		background-repeat: no-repeat;
		background-size: 40px 40px;
	}	
}

.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 80px;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.8);
	overflow-x: hidden;
    transition-duration: 0.1s;
}

.overlay-content {
	position: relative;
	top: 0;
	width: 70%;
	background-color: #fff;
	text-align: center;
}

.overlay a {
	padding: 8px;
	display: block;
	text-decoration: none;
	font-size: 16px;
}

.overlay a.resa{
	min-width: 150px;
	background-color: #d70926;
	color: white;
	transition-property: background-color;
}

.overlay a.resa:hover{
	background-color: #fdc82f;
	color: white;
}

/* --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- Corps --- */
main{
}

/* --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- bandeau --- */
#bandeau{
	display: flex;
	align-items: center;
}
.pics{
	min-height: 600px;
	display: inline-block;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: contain;
}
.left{
	width: 34%;
	background-image: url('../images/vitrine_03.jpg');
	background-position: left;

}
.central{
	width: 33%;
	background-image: url('../images/burger_01_2.jpg');
	background-position: center;
}
.right{
	width: 33%;
	background-image: url('../images/bar_01_3.jpg');
	background-position: right;
}


@media screen and (max-width: 900px) {
	.pics{
		min-height: 600px;
	}
	.left{
		width: 50%;
	}
	.central{
		width: 50%;
		background-position: right;
	}
	.right{
		width: 0%;
	}
}

@media screen and (max-width: 600px) {
	.pics{
		min-height: 300px;
	}
	.left{
		width: 100%;
		height: 100%;
		background-attachment: fixed;
		background-position: top;
	}
	.central{
		width: 0%;
	}
	.right{
		width: 0%;
	}
}

/* --- Presentation --- Presentation --- Presentation --- Presentation --- Presentation --- Presentation --- Presentation --- Presentation --- */

.presentation{
	width: 100%;
	background-color: #FFF;
}
.presentation h2{
	margin: 0;
	padding : 30px 0 30px 0;
	font-size: 40px;
	text-align: center;
	line-height: 48px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight:400;
}
.presentation p{
	margin: 0;
	padding : 0 5% 20px 5%;
	text-align: center;
}

.presentation a.resa{
	margin : 15px;
	padding:10px 20px 10px 20px;
	background-color: #d70926;
	color: white;
	transition-property: background-color;
    transition-duration: 0.5s;
}

.presentation a.resa:hover{
	background-color: #fdc82f;
	color: white;
}

/* --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- Carte --- */

#carte {
	display: flex;
	background-color: #FFF;
	flex-wrap: wrap;
	justify-content: space-around;
}

.cardbloc{
	max-width: 47%;
	min-width: 400px;
	background-color: #F6F0EE;
	padding: 0 15px 15px 15px;
	flex-grow :1;
}

@media screen and (max-width: 1024px) {
	.cardbloc{
		flex-direction: column;
		max-width: 94%;
	}
}

@media screen and (max-width: 500px) {
	.cardbloc{
		flex-direction: column;
		min-width: 300px;
		max-width: 94%;
	}
}
#carte h2.itemTitle{
	margin: 15px 0px 0px 0px;
	
	font-size: 28px;
	line-height: 34px;
	letter-spacing: 1px;
	font-weight:400;
}

.inline{
	margin-top:10px;
	
	display: flex;
	align-items: center;
}

.nom{
	margin:0px;
	flex-shrink :1;
	flex-grow :1;
	
	white-space: nowrap;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 1px;
	font-weight:400;
	text-transform: uppercase;
}

.dot{
	margin:0px;
	padding: 5px;
	max-height: 30px;
	flex-shrink :2;
	flex-grow :2;
	
	overflow: hidden;
	white-space: nowrap;
	text-overflow: "";
	
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 1px;
	font-weight:400;
	color: #595959;
}

.prix{
	margin:0px;
	padding: 5px;
	flex-shrink :1;
	flex-grow :1;
	
	white-space: nowrap;
	font-size: 13px;
	line-height: 19.5px;
	letter-spacing: 0.5px;
	font-weight:400;
	color: #595959;
}

.accompagnement{
	margin:0px;
	padding:0px;
}

/* --- Informations --- Informations --- Informations --- Informations --- Informations --- Informations --- Informations --- Informations --- */
#informations{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.infos {
	text-align:center;
	max-width: 47%;
	min-width: 400px;
}

@media screen and (max-width: 1024px) {
	.infos{
		flex-direction: column;
		max-width: 94%;
	}
}

@media screen and (max-width: 500px) {
	.infos{
		flex-direction: column;
		min-width: 300px;
		max-width: 94%;
	}
}
.infos h3{
	margin-top: 0px;
}

.infos p{
	padding: 0px;
	text-align:center;
}

.infos table{
	margin: auto;
}

.horaires{
	width: 15%;
	min-width: 270px;
	margin-bottom: 5%;
	border-style: solid;
	border-width: 50px;
	border-image-source: url("../images/border.png");
	border-image-slice: 142 142 142 142; /* haut | droit | bas | gauche */
	border-image-width: 50px;
}
@media screen and (max-width: 1024px) {
	.horaires{
		flex-direction: column;
		max-width: 94%;
	}
}

.localisation{
	min-width: 600px;
	min-height: 400px;
	padding-bottom: 5%;
}
.localisation iframe{
	display: block;
	height: 100%;
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.localisation{
		flex-direction: column;
		min-width: 400px;
		max-width: 94%;
	}
}

@media screen and (max-width: 500px) {
	.localisation{
		flex-direction: column;
		min-width: 300px;
		max-width: 94%;
	}
}
/* --- Pied De Page --- Pied De Page --- Pied De Page --- Pied De Page --- Pied De Page --- Pied De Page --- Pied De Page --- Pied De Page --- */

footer{
	width: 100%;
	background-color: #507065;
	
	display: flex;
	align-items: top;
	flex-wrap: wrap;
}
footer h2{
	color: #FFF;
	
	font-size: 28px;
	line-height: 34px;
	letter-spacing: 1px;
	font-weight:400;
}

footer h3{
	color: #FFF;
	
	font-size: 20px;
	line-height: 34px;
	font-weight:400;
}
footer p{
	color: #FFF;
	margin: 0;
	font-size: 14px;
}

footer a{
	color: #FFF;
	text-decoration: underline;
}
footer a:hover{
	color: #FFF;
	text-decoration: underline;
}

.foot{
	padding: 5% 10% 5% 10%;
	width: 30%;
}
@media screen and (max-width: 600px) {
	.foot{
		width: 80%;
	}
}