/*  GLOBAL  */
body{
	background-color: #fdfbf7;
	color: #333;
}
:root{
	--primaryColor: Maroon


	;
}

/* HEADER */
.titre{
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 200px;
	margin-bottom: 30px;
}
.titre img{
	width: 300px;
}
.titre h3 i{
	color: var(--primaryColor);
}

/* SECTION CAROUSEL */
.carrousel{
	position: relative;
	overflow: hidden;
}
.carrousel .images{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 600px;
	transition: transform 0.7s ease-in-out;	
}
.slider-item{
    width: 100%;
	object-fit: cover;
	flex-shrink: 0;
}
.fleches{
	position: absolute;
	width: 100%;
	padding-left: 10px;
	top: 300px;
	color: var(--primaryColor);
	cursor: pointer;
}
#droite{	
	float: right;
	padding-right: 20px;	
}

/* NAVIGATION */
#toggle-btn{
	display: none;
	position: absolute;
	top: 180px;
	right: 20px;
	cursor: pointer;
}
nav ul{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	position: absolute;
	top: 200px;
	left: -40px;
	width: 100%;
	list-style-type: none;
	opacity: 1;
	transition: opacity 0.5s;
}
nav ul li{
	margin: 0 20px;
    background-color: rgba(112,112,128,0.8);
    font-size: 16px;
    min-width: 110px;
    height: 45px;
    line-height: 45px;
    color: white;
    text-align: center;
    box-shadow: 2px 2px 5px #444;
    cursor: pointer;
}
nav ul li:hover{
	background-color: rgb(96,96,96);
}



/* ARTICLES */
.articles{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	font-size: small;
}
.articles h4, h5{
	font-size: 16px;
}
.un p{
	padding-right: 10px;
}
.deux{
	margin-top: 10px;
	padding: 20px;
	background-color: rgba(34, 63, 40, 0.5);
	border-radius: 0 20px 20px 0;
	height: 500px;
}
.bouton{
	background-color: var(--primaryColor);
	color: green;
	padding: 10px 15px;
	font-size: 14px;
	border-radius: 5px;
	margin: 30px 5px;
	cursor: pointer;
}

/* AVIS */
.temoignages h2{
	font-size: 24px;
	font-weight: bold;
	margin: 20px 0 40px 0;
}
.temoignage_card{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: auto;
	gap: 15px 20px;
	padding: 20px;
}
.card{
	grid-column: span 2;
	box-shadow: 2px 2px 5px green;
	padding: 0 15px;
}
.name{
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
}
.card p{
	font-size: 14px;
}
.temoignages button{
	background-color: var(--primaryColor);
	color: green;
	font-size: 14px;
	width: 300px;
	height: 40px;
	display: block;
	margin: 40px auto;
	border-radius: 5px;
	cursor: pointer;
}

/* FOOTER */
footer{
	height: 50px;
	background-color: black;
	color: #ccc;
	font-size: 12px;
	text-align: center;
	padding: 20px 100px;
}


/* NAVIGATION */
.menu-navigation ul{
	display: flex;
	list-style: none;
	background-color: #333;
	padding: 0;
	margin: 20px 0;
	border-radius: 5px;
	overflow: hidden;
}
.menu-navigation li{
	flex: 1;
	text-align: center;
}
.menu-navigation a{
	display: block;
	padding: 12px 15px;
	color: white;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
}

.menu-navigation ul li a.hover,
.menu-navigation ul a.active {
	background-color: #e0f3ee;
}

/* ENTREES */
.page-menu h1{
	text-align: center;
	color:#e09f3e;
	margin-top: 80px;
	font-size: 2em;
}
.page-menu .intro{
	text-align: center;
	margin-bottom: 30px;
	color: #555;
}
.grille-plats{
	display: grid;
	grid-template-columns: repeat(2, 350px);
	justify-content: center;
	gap: 25px;
	margin: 30px auto;
	padding: 0 15px;
}
.carte-plat{
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0,0,0,0,1);
	text-align: center;
	width: 100%;
	transition: transform o,2s;
}
.carte-plat:hover{
	transform: translateY(-4px);
}
.carte-plat img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.carte-plat .info{
	padding: 15px;
}
.carte-plat h3{
	font-size: 1.1em;
	margin-bottom: 6px;
	color: #222;
}
.carte-plat p{
	font-size: 0.9em;
	color: #666;
	margin-bottom: 8px;
}
.carte-plat .prix{
	display: block;
	font-weight: bold;
	color: #e09f3e;
	margin-top: 10px;
	font-size: 1em;
}


/*FORMULAIRE DE RESERVATION */
.form-reservation{
	max-width: 500px;
	margin: 30px auto;
	background-color: #f9f9f9;
	padding: 25px;
	border-radius: 10px;
	box-shadow: o 4px 10px rgba(0,0,0,0,1);
}
.form-reservation.champ{
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;

}
.form-reservation label{
	font-weight: bold;
	margin-bottom: 5px;
	color: maroon;
}
.form-reservation,
.form-reservation textarea{
   padding: 10px;
   border: 10px solid green;
   border-radius: 5px;
   font-size: 1em;
}
.btn-reservation{
	width: 100%;
	padding: 12px;
	background-color: #e09f3e;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}
.btn-reservation:hover{
	background-color: #c7862b;
}
.coordonnees-contact{
	text-align: center;
	margin-bottom: 25px;
	font-size: 1.1em;
	color: #333;

}
.coordonnees-contact p{
	margin: 5px 0;
}
#ulref.active{
	display: flex;
	opacity: 1;
}

/* RESPONSIVE MOBILE */

@media (max-width:750px) {
	.grille-plats{
		grid-template-columns: 1fr;
		gap: 15px;
		max-width: 380px;
	}
}

/* RESPONSIVE */
@media screen and (max-width: 900px){
	#toggle-btn{ display: block }
    nav ul{
        opacity: 0;
        flex-direction: column;
        width: 250px;
        padding: 0;
        top: 225px;
        left: calc(50% - 125px);
    }
    .un, .deux{ grid-column: span 2; }
}

@media screen and (min-width: 901px){
    nav ul{ opacity: 1 !important; }
}

@media screen and (max-width: 580px){
	.titre { justify-content: space-between; }
    .titre h3{ font-size:  14px; }
    .titre img{ width: 220px; }
    .card{ grid-column: span 3;}	
}