body {
	display: grid;
	margin: 0;
	padding: 0;
	height: auto;
	font-size:calc(9px + 0.3vw);
	font-family: 'Cantarell', Verdana, sans-serif;
	background: linear-gradient(to right, #444444 0%, #5e5f5e 80%);
	grid-gap: 0vw;
	grid-template-columns: 6vw 15vw 1fr 15vw 30vw;
	grid-template-rows: 4vh 15vh 8vh 1fr 10vh;
	grid-template-areas:
		"logo logo ... date rightcontent"
		"logo logo actus actus rightcontent"
		"leftliens menus titre lang rightcontent"
		"leftliens menus contenu contenu rightcontent"
		"leftliens menus footer footer rightcontent";
}

/*FORMATAGE DES LIENS*/

a {
	text-decoration: none;
	color: #f07302;
}

a:hover {
	color: gold;
}

a:disabled {
	color: #ED0515;
}

/*FIN DU FORMATAGE DES LIENS*/

/*FORMATAGE DES ÉLÉMENTS DE FORMULAIRE*/

	input {
		font-size: 0.9em;
		background-color: transparent;
		border-radius: 0px;
		border-style: none;
		border-bottom: 1px groove #f07302;
	}
	
	textarea {
		background-color: transparent;
		border-radius: 6px;
		border: 1px groove #f07302;
	}

	select {
		font-size: 0.9em;
		border-style: none;
		border-radius: 6px;
		background-color: transparent;
	}
	
/*Personnalisation des listes de selection*/
	
	.select-wrapper-small {
		display:block;
		overflow-x:hidden;
		max-width: 5vw;
		border:1px solid #f07302;
		border-radius:3px;
		padding:0.2vh;
		cursor:pointer;
	}

	.select-wrapper-small select {
		border:0;
		min-width:4vw;
		cursor:pointer;
		color:#000;
		color:rgba(0,0,0,0);
		text-shadow:0 0 0 #000;
		-webkit-appearance:none;
		outline:none;
		white-space:nowrap;
		}

		/* Pour Opera */
		noindex:-o-prefocus, .select-wrapper-small select {
			color:#000;
		}

/*Fin de personnalisation des listes de selection*/
	
/*Boutons de formulaires*/
input[type=submit],input[type=reset] {
	background-color: transparent;
	color: #f07302;
	border: none;
	padding: 1vh;
	font-size: 1em;
}

/*Boutons de formulaires survolés*/
input[type=submit]:hover,input[type=reset]:hover {
	color: gold;
	cursor: pointer;
}

/*Boutons de formulaires désactivés*/
input[type=submit]:disabled,input[type=reset]:disabled {
	color: #ED0515;
}

input[type=number] {
	font-size: 0.9em;
	height: 2.5vh;
	border: 1px solid #f07302;
	border-radius: 6px;
}

input[type=file] {
	width: 16vw;
	border-bottom: none; 
}

input.itemForm10 {
	width: 3vw;
	margin-bottom: 1vh;
}

input.itemForm20 {
	width: 10vw;
	margin-bottom: 0vh;
}

input.itemForm40 {
	width: 16vw;
	margin-bottom: 1vh;
}

select.itemForm20 {
	width: 13vw;
}

textarea.itemForm20 {
	width: 12.8vw;
	height: 2.5vh;
	resize: none;
	font-size: 0.9em;
}

textarea.itemForm40 {
	width: 16vw;
	height: 7vh;
	resize: none;
	font-size: 0.9em;
}

textarea.itemForm80 {
	width: 16vw;
	height: 10vh;
	resize: none;
	font-size: 0.9em;
}

.robotOnly {
	display: none;
}

/*FIN DE FORMATAGE DES ÉLÉMENTS DE FORMULAIRE*/


/*CONTENU DU VOLET DE GAUCHE (LIENS DE RÉSEAUX ET DE RÉFÉRENCES)*/
#leftliens {
	grid-area: leftliens;
	display: grid;
	width: 5vw;
	height: 80vh;
	grid-template-columns: 1fr;
  	grid-template-rows: auto;
  	grid-template-areas:
  		"link";
    background-color: transparent;
	align-items: center;
	z-index: 100;
}

#leftliens a {
	grid-area: link;
	margin: 0;
	padding: 0;
	display: block;
	margin: 1vw;
	text-align: center;
	}
	
#leftliens a img{
	grid-area: link;
	max-width: 3vw;
	display: block;
	border-radius: 0.3vw;
	opacity: 0.80;
}
/*FIN DE CONTENU DU VOLET DE GAUCHE*/

/*CONTENU DU VOLET LOGO*/
#logo {
	grid-area: logo;
	height: 15vh;
	margin-top: -3vh;
	margin-left: -3vw;
	opacity: 0.25;
	}
#logo img.logoheader {
	height: 50vh;
}
/*FIN DE CONTENU DU VOLET LOGO*/

/*MENU ACCORDÉON*/
	#menus {
		grid-area: menus;
		height: 80vh;
		font-size:calc(9px + 0.5vw);
		z-index: 100;
	}

	#menu-accordeon {
		padding:0;
		margin:0;
		padding-top: 18vh;
		list-style:none;
		text-align: center;
	}

	#menu-accordeon ul {
		padding:0;
		margin:0;
		list-style:none;
		text-align: center;
	}

	#menu-accordeon li {
		margin-bottom:2px;
	}

	#menu-accordeon li ul {
		position: absolute;
		left: 9vw;
		visibility: hidden;
  		opacity: 0;
  		transition: visibility 0s opacity 0.3s linear;
  		transition-delay: 0.4s;
	}
	
	#menu-accordeon li:hover ul {
		visibility: visible;
  		opacity: 1;
		left: 9vw;
		padding: 0 1vw;
		background-color: #535353;
		border-radius: 0.5vw;
	}

	#menu-accordeon a {
		display: block;
		text-decoration: none;
		color: #f07302;
		padding: 8px 0;
	}

	#menu-accordeon a.gras {
		font-weight: bold;
	}

	#menu-accordeon a:hover {
		color: gold;
	}

	#menu-accordeon ul li a {
		color: #f07302;
	}

	#menu-accordeon li:hover li a:hover {
		color: gold;
	}

	#menu-accordeon li.prive {
		
	}

/*FIN MENU ACCORDÉON*/

/*CONTENU DU VOLET PRINCIPAL (LANGUAGE, DATE TITRE ET CONTENU)*/

#contenu {
	grid-area: contenu;
	align-items: stretch;
	height: 63vh;
	overflow: auto;
	scrollbar-width: none;
	scrollbar-color: #898a88 #898a88;
	background-position: 0% 25%;
	background-image: url("../images/permanent/autumn.png");
	background-size: cover;
	display: grid;
	grid-template-columns: 1fr ;
	grid-gap: 5px;
	grid-template-rows: min-content min-content;
	grid-template-areas:
		"info"
		"action";
}

#actus {
	grid-area: actus;
	width: 92%;
	height: 13vh;
	justify-self: center;
	background-color: transparent;
	border: 1px solid #505958;
	border-radius: 1vh;
	box-shadow: 0.6vw 0.3vw 0.3vw #491C1C;
	font-size: calc(9px + 0.2vw);
}

#actionActus {
	width: 95%;
	margin: 2vh;
	justify-self: center;
	background-color: transparent;
	border: 1px solid #505958;
	border-radius: 1vh;
	box-shadow: 0.6vw 0.3vw 0.3vw #491C1C;
	font-size: calc(9px + 0.2vw);
}

.bloc_top {/*pour garder les coins supérieurs du cadre d'actu arrondis*/
	margin: 0;
	padding: 0;
	min-height: 1vh;
}

.bloc_main {
	height: 11vh;
	padding: 0 1vh 0 1vh;
	overflow: auto;
	scrollbar-width: thin;
}

.bloc_actu {
	min-height: 11vh;
	padding: 0 1vh 0 1vh;
}


.bloc_bottom {/*pour garder les coins inférieurs du cadre d'actu arrondis*/
	margin: 0;
	padding: 0;
	min-height: 1vh;
}

.bloc_main img, .bloc_actu img {
	float: left;
	border-radius: 1vh;
	max-height: 11vh;
	margin-right: 2vh;
}

.bloc_main a, .bloc_actu a {
	text-decoration: none;
	color: #f07302;
}

.bloc_main a:hover, .bloc_actu a:hover {
	color: gold;
}

.lang {
	grid-area: lang;
	padding: 0vh 2vw;
	justify-self: end;
	align-self: center;
	margin-right: 3vh;
	background-color: transparent;
	border: 1px solid #f07302;
	border-radius: 1vh;
}

.lang input {
	font-weight: bold;
}

.lang:hover {
	border: 1px solid gold;
}

.date {
	grid-area: date;
	padding: 0.5vh 1vw;
	justify-self: end;
	align-self: end;
	background-color: none;
}

.call {
	grid-area: date;
	display: none;
	
}

#titrePage {
	grid-area: titre;
	justify-self: end;
	align-self: center;
	font-size:calc(12px + 0.5vw);
	font-weight: bold;
}

#info {
	display:grid;
	grid-template-rows: minmax(max-content, max-content);
}

#rustine {
	margin-bottom: 2vh;
	margin-top: 1vh;
}

#rustine img {
	margin: 0;
	float: left;
	margin-right: 1vw;
	max-width: 18vw;
	max-height: 20vh;
	border-radius: 1vw;
}

#footer {
	grid-area: footer;
	margin-top: 0vh;
	padding: 1vh 1vh 0vh 1vh;
	height: 7vh;
	background-color: #898a88;
	border-radius: 1vw;
	border: 1px solid #505958;
	justify-items: center;
}

footer {
	justify-self: start;
	align-self: center;
	text-align: center;
	font-size: 0.7vw;
	}
	
footer a {
	text-decoration: none;
	color: #505958;
}

/*FIN DE CONTENU DU VOLET PRINCIPAL*/

/*CONTENU DU VOLET DE DROITE (IMAGES À SCROLLER)*/

#rightContent {
	grid-area: rightcontent;
	display: grid;
	height: 100vh;
	overflow: auto;
	background: linear-gradient(to right, #5e5f5e, #626362);
	background-image: linear-gradient(to right, #5b5c5b, transparent), url("../images/permanent/oignon_alpha.png");
}

/*images du rightcontent*/

figure {
	margin: 0;
	margin: 1vh 0;
	grid-row: auto;
	text-align: center;
}

figcaption.legendeImage {
	margin: 0;
	margin-left: 4vw;
	text-align: left;
	font-size: 0.8em;
	color: #ffffff;
}

.imageVoletDroite {
	max-width: 25vw;
	border-radius: 1vw;
	box-shadow: 0.6vw 0.3vw 0.3vw #491C1C;
}

/* FIN DE CONTENU DU VOLET DE DROITE*/

/*SECTION "ACTION" DES PAGES DU SITE*/

/*section des menus*/
#actionMenus {
	grid-area: action;
	display: grid;
	grid-template-columns: 1fr 25vw 1fr;
	grid-gap: 1.2vh 1.2vh;
	grid-template-rows: 1fr repeat(3, 4vh) 1fr;
	grid-template-areas:
	". . ."
	"li1 li1 li1"
	"li2 li2 li2"
	"li3 li3 li3"
	". . .";	
}

#li1 {grid-area: li1; justify-self: center; color: #f07302;}
#li1:hover {color: #edd127;}

#li2 {grid-area: li2; justify-self: center; color: #f07302;}
#li2:hover {color: #edd127;}

#li3 {grid-area: li3; justify-self: center; color: #f07302;}
#li3:hover {color: #edd127;}

/*grille du formulaire de  réservations*/
#actionResas {
	grid-area: action;
	display: grid;
	grid-template-columns: 1.3fr 2fr;
	grid-gap: 1vh;
 	grid-template-rows: repeat(9, 3vh) 6vh repeat(2, 3.2vh);
 	grid-template-areas:
 	"lb1 in1"
	"lb2 in2"
	"lb3 in3"
 	"lb4 in4"
 	"lb5 in5" 
 	"lb6 in6"
 	"lb7 in7" 
 	"lb8 in8"
 	"lb9 in9"
 	"lb10 in10"
 	"sbm1 sbm2"
 	"msg msg";
}

/*grille du formulaire de drive*/
#actionDrive {
	grid-area: action;
	display: grid;
	grid-template-columns: 1.3fr 2fr;
	grid-gap: 1.2vh;
	grid-template-rows: repeat(7, 3vh) 9vh 3vh 1fr;
	grid-template-areas:
	"ln1 ln1"
	"lb1 in1"
	"lb2 in2"
	"lb3 in3"
	"lb4 in4"
	"lb5 in5"
	"lb6 in6"
	"lb7 in7"
	"sbm1 sbm2"
	"msg msg";	
	}
	
/*grille du formulaire de contact*/
#actionContact {
	grid-area: action;
	display: grid;
	grid-template-columns: 1.3fr 2fr;
	grid-row-gap: 2vh;
 	grid-template-rows: repeat(3, 3vh) 7vh 3vh 3vh;
 	grid-template-areas:
 	"lb1 in1"
	"lb2 in2"
 	"lb3 in3"
 	"lb4 in4"
 	"sbm1 sbm2"
 	"msg msg";
}

/*section des chambres d'hôtes*/
#actionChambres {
	grid-area: action;
	display: grid;
	grid-template-columns: 1fr 25vw 1fr;
	grid-gap: 1.2vh 1.2vh;
	grid-template-rows: repeat(2, 1fr);
	grid-template-areas:
	". . ."
	"li1 li1 li1";	
}

#lb1 {grid-area: lb1; justify-self: end;}
#lb2 {grid-area: lb2; justify-self: end;}
#lb3 {grid-area: lb3; justify-self: end;}
#lb4 {grid-area: lb4; justify-self: end;}
#lb5 {grid-area: lb5; justify-self: end;}
#lb6 {grid-area: lb6; justify-self: end;}
#lb7 {grid-area: lb7; justify-self: end;}
#lb7s {grid-area: lb7; justify-self: start;}
#lb8 {grid-area: lb8; justify-self: end;}
#lb9 {grid-area: lb9; justify-self: end;}
#lb10 {grid-area: lb10; justify-self: end;}

#ln1 {grid-area: ln1; justify-self: center; color: #f07302;}/*lien interne*/
#ln1:hover {color: #edd127;}

#datepickerResa {grid-area: in1; justify-self: start;}
#datepickerDrive {grid-area: in1; justify-self: start;}

#in1 {grid-area: in1; justify-self: start;}
#in2 {grid-area: in2; justify-self: start; width: 100%;}
#in2s {grid-area: in2; justify-self: start;}
#in3 {grid-area: in3; justify-self: start;}
#in4 {grid-area: in4; justify-self: start;}
#in5 {grid-area: in5; justify-self: start;}
#in6 {grid-area: in6; justify-self: start;}
#in7 {grid-area: in7; justify-self: start;}
#in8 {grid-area: in8; justify-self: start; width: 100%;}
#in9 {grid-area: in9; justify-self: stretch;}
#in10 {grid-area: in10; justify-self: stretch;}

#sbm1 {grid-area: sbm1; justify-self: end;}
#sbm1s {grid-area: sbm1; justify-self: start;}
#sbm2 {grid-area: sbm2; justify-self: start;}

#msg {grid-area: msg; justify-self: center; color: red; font-weight: bold; text-align: center;}

/*section des liens*/
#actionLiens {
	grid-area: action;
	display: grid;
	grid-gap: 1.2vh;
	grid-template-columns: 1fr;
 	grid-template-rows: auto;
 	grid-template-areas:
 		"block";
}

#blockLien {
	grid-area: block;
	border-radius: 1vw;
	border: 1px solid #505958;
	padding: 0.5vh 0.5vw;
}

#blockLien img {
	margin: 0;
	padding: 0.5vh;
	max-height: 10vh;
	border-radius: 1vw;
	float: left;
}

/*section galerie photo*/

#actionGalerie {
	padding-top: 2vh;
	grid-area: action;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1vw 2vh;
	grid-template-rows: 4vh 1fr;
	grid-template-areas:
		"lien"
		"thumbs";
}
	
#actionGalerieImages {
	grid-area: thumbs;
	text-align: center;
	background-color: transparent;
	grid-template-columns: auto;
}

#lienGalerie {
	grid-area: lien;
	min-width: 100%;
	text-align: center;
}
	
#lien {
	font-weight: bold;
	padding: 2vh;
	text-decoration: none;
	color: #f07302;
}
	
#lienGalerie a:hover {
	color: gold;
}
	
#actionGalerieImages img {
	max-height: 15vh;
	margin: 0.5vh;
	border-radius: 0.5vh;
}

/* MEDIA QUERIES*/
/**************************************/
/* Format mobile */
@media screen and (max-width: 460px) {

	body {
		width: 100%;
		margin: 0;
	}

	#actus {
		display: none;
	}

	#rightContent {
		display: none;
	}

	#leftliens {
		display: none;
	}

	.date {
		display: none;
	}

	#menus .prive {
		display: none;
	}

	#menus .actus {
		display: none;
	}

	#menus .gras  {
		display: none;
	}

	body {
		display: grid;
		margin: 0;
		padding: 0.5vh;
		height: auto;
		width: auto;
		background: linear-gradient(to right, #626362, #898A88);
		grid-template-columns: 1fr;
		grid-template-rows: auto ;
		grid-template-areas:
			"logo"
			"lang"
			"menus"
			"titre"
			"contenu"
			"footer";
	}

	#logo {
		grid-area: logo;
		height: 5vh;
		opacity: 0.25;
		}
	
	#menus {
		grid-area: menus;
		height: auto;
		width: 100%;
		align-items: end;
		font-size:calc(15px + 0.7vw);
		z-index: 101;
	}

	#menu-accordeon {
		padding-top: 2vh;;
	}

	#menu-accordeon a {
		display: inline-block;
	}

	#menu-accordeon ul li{
		display: inline;
		padding: 0 0.5em;
		margin: 0;
	}

	#menu-accordeon li {
		display: inline-block;
		padding: 0 0.5em;
		margin: 0;
	}

	#titrePage {
		grid-area: titre;
		justify-self: center;
		align-self: center;
		font-size:calc(15px + 0.5vw);
		font-weight: bold;
	}

	#contenu {
		grid-area: contenu;
		align-items: center;
		width: 100%;
		height: auto;
		min-height: 45vh;
		overflow: auto;
		scrollbar-width: thin;
	}

	#rustine img {
		max-width: 28vw;
		max-height: 30vh;
		border-radius: 1vw;
	}
	
	#info {
		font-size:calc(13px + 1vw);
	}
	
	#footer {
		height: auto;
	}

	footer {
		justify-self: center;
		width: 90vw;
		font-size: calc(7px + 0.5vw);
	}

	.lang {
		z-index: 101;
		padding: 0;
		margin: 0;
	}

	.call {
		grid-area: lang;
		display: inline-block;
		justify-self: end;
		align-self: center;
		padding: 1vh 2vw;
		margin-right: 10vh;
		background-color: transparent;
		border: 1px solid #f07302;
		border-radius: 1vh;
		z-index: 101;
	}

	.call a {
		padding: 1vh 2vw;
		font-weight: bold;
	}

	.call:hover {
		border: 1px solid gold;
		color: gold;
	}

	input.itemForm10 {
		width: 10vw;
		margin-bottom: 1vh;
	}

	input.itemForm20 {
		width: 25vw;
		margin-bottom: 0vh;
	}

	input.itemForm40 {
		width: 40vw;
		margin-bottom: 1vh;
	}

	select.itemForm20 {
		width: 13vw;
	}

	.select-wrapper-small {
		min-width: 10vw;
	}

	textarea.itemForm20 {
		width: 25vw;
		height: 2.5vh;
		resize: none;
		font-size: 1em;
	}

	textarea.itemForm40 {
		width: 40vw;
		height: 7vh;
		resize: none;
		font-size: 1em;
	}

	textarea.itemForm80 {
		width: 40vw;
		height: 10vh;
		resize: none;
		font-size: 1em;
	}
}

