
														/*logo page accueil*/

 .image1{
	width:80%;
	height: auto;
display: flex;
position: center;
margin-left:10%;
 }
 
	
															/* HEADER */

	


nav{
    width: 100%;
    margin: 0px auto 20px auto;
    background-color: rgba(200, 151, 33,0.4);
    position: sticky;
    top: 0px;
    font-size: 1.5em;
    font-family: "Bauer Bodoni";
}

nav ul{
    list-style-type: none;
}

nav li{
    float: left;
    width: 25%;/*100% divisé par le nombre d'éléments de menu*/
    text-align: center;/*Centre le texte dans les éléments de menu*/
}

/*Evite que le menu n'ait une hauteur nulle*/
nav ul::after{
    content: "";
    display: table;
    clear: both;
}

nav a{
    display: block; /*Toute la surface sera cliquable*/
    text-decoration: none;
    color: white;
    border-bottom: 3px solid transparent;/*Evite le décalage des éléments sous le menu à cause de la bordure en :hover*/
    padding: 20px 0px;/*Agrandit le menu et espace la bordure du texte*/
}

nav a:hover{
    color: orange;
    border-bottom: 2px solid gold;
}		



															/*restaurant*/

.parent {
    position: absolute;
    width: 400px;
    height: 530px;
    margin: 60px;
}

.child1 {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background: transparent;
}

.child2 {
    z-index: 1;
    margin: 30px;
    background: transparent;
    border: 2px solid rgba(200, 151, 33,0.5);

}

   .image2{
	width:100%;
	 display: block;
 }

.flex-container {
  display: flex;
  justify-content: space-around;
  background-color: black;
}

.flex-container > div {
  background-color:transparent;
  width: 400px;
  margin: 20px;
  color: white;
  text-align: left;
  line-height: 75px;
  font-size: 17px;
  line-height: normal;
}

   .image3{
	width:100%;
	 display: block;
 }

  .image4{
	width:20%;
	display: block;
 }
 

	 
 
 															/*carte*/

 
:root {
	/* Base font size */
	font-size: 10px;
	font-family: "Bauer Bodoni";
	margin: 4%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}


.container1 {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem 2rem;
}

.heading {
	font-family: "Bauer Bodoni";
	font-size: 3rem;
	text-align: center;
	padding: 3.5rem 0;
	color: rgba(200, 151, 33,1);
}

.heading span {
	display: block;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: -1rem -1rem;
}

.gallery0 {
	flex: 1 0 24rem;
	margin: 1rem;
	box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.gallery-image {
	display: block;
	width: 100%;

	object-fit: cover;
	transition: transform 400ms ease-out;
}

.gallery-image:hover {
	transform: scale(1.15);
}

figure{ 
  background-color:#001B00;
  padding:20px;
  display:inline-block;
  text-align:left;
}

figure figcaption{
  color:white;
  display:block;
  font-family: 'Bauer Bodoni';
  font-size: 1.7rem;
}


@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}


											/* navigation menu */

.section-menu {
    justify-content: center;
    transform: translateY(30px);
    display: flex;
    flex-direction: row;
}

nav.menu {
    width: calc(500px * 4);
}

nav.menu ul {
    display: flex;
    flex-direction: row;
}

nav.menu ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
}

nav.menu ul li:hover {
    transform: scale(0.90);
    transition: 0.3s all;
}

nav.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-item {
    flex: 1;
    height: 100px;
    font-family: "Bauer Bodoni";
}

.Nos entrées {
    background-repeat: no-repeat;
    background-size: cover;
    
}

.Menu enfant {
    background-repeat: no-repeat;
    background-size: cover;
}

.Nos plats {
    background-repeat: no-repeat;
    background-size: cover;
}

.Nos desserts {
    background-repeat: no-repeat;
    background-size: cover;
}



													/* restaurant */



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #fafafa;
  font-family: "Bauer Bodoni";
}

.image-gallery {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}

.image-gallery .image-box {
  position: relative;
  background-color: #d7d7d8;
  overflow: hidden;
}

.image-gallery .image-box:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

.image-gallery .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.image-gallery .image-box:hover img {
  transform: scale(1.1);
}

.image-gallery .image-box .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fafafaf2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.image-gallery .image-box:hover .overlay {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  opacity: 1;
}

.image-gallery .image-box .details {
  text-align: center;
}

.image-gallery .image-box .details .title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  top: -5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-gallery .image-box .details .category {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  bottom: -5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}


.image-gallery .image-box:hover .details .category {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s 0.2s ease;
  font-family: "Bauer Bodoni";

}

.image-gallery .image-box .details .title a,
.image-gallery .image-box .details .category a {
  color: #222222;
  text-decoration: none;
}

/* Let's make it responsive */
@media (max-width: 768px) {
  .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }

  .image-gallery .image-box:nth-child(7n + 1) {
    grid-column: unset;
    grid-row: unset;
  }
}


														/*Boissons */

.conteneur{

height:auto;
background:#001B00;
  padding:2%;
}


.gallerie {
  display: flex;
  margin: auto;
  width: 98%;
  z-index: 1;
  justify-content: center;
}

.image {
  	width: 98%;
  	object-fit: contain;
}

.colonne {
  width: 100%;
  justify-content: center;

}
.colonne img{
	  	width: 100%;
	  	height:100%;
	  }
	  
	  
	 
	  
	  
															/*Contact */  
p{
  font-size: 20px;
  color: white;
  padding: 20px;
  font-family: 'Bauer Bodoni';
}

 .image5{
 max-width: 100%;
  height: auto;
 }
 
 .click{
	width:100%;
	text-align:center;
	display:flex;
	justify-content:center;
	background-color:rgba(200, 151, 33,0.4);
	padding: 0% 2% 0% 2%;
}

.map-responsive {
overflow:hidden;
padding-bottom:56.25%;
position:relative;>
height:0;
}

.map-responsive iframe {
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}

																	/* Footer */




.footer-basic {
  padding:70px 0;
  background-color:transparent;
  color:white;
  position: bottom; bottom: 0; width: 100%; z-index: 10000;

}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:17px;
  line-height:1.6;
  margin-bottom:0;
        font-size: 1.1em;
}

.footer-basic li {
  padding:0 10px;
}

.footer-basic ul a {
  color:white;
  text-decoration:none;
  opacity:1;
}

.footer-basic ul a:hover {
  opacity:1;
}

.footer-basic .social {
  text-align:center;
  padding-bottom:5px;
}

.footer-basic .social > a {
  font-size:30px;
  width:40px;
  height:40px;
  line-height:40px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  border:1px solid white;
  margin:0 8px;
  color:white;
  opacity:0.75;
}

.footer-basic .social > a:hover {
  opacity:1;
}

.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:10px;
  color:white;
  margin-bottom:0;
}

p1{
  font-size: 18px;
  color: white;
  font-family: 'Bauer Bodoni';
 
}
