:root {
  --gris-clair: #f4f4f4;
  --gris-clair: #f4f4f4;
  --gris-fonce: #59595b;
  --orange-fonce: #b94129;
  --orange-clair: #d36a2c;
  --vert-fonce: #d6d694;
  --vert-clair: #efefa5;
  --vert-tres-clair: #fcfcae;
  --bleu: #6a78ba;
  --bleu-clair: #99a5e6;
}

* {
	margin: 0;
	padding: 0;
}

html, body, img, p, div, span, form, h1, h2, h3, h4, table, tr, td {
	border: 0;
}

section, article, aside, footer, header, nav, hgroup {
	display: block;
}

body {
	margin-left: auto;
	margin-right: auto;
	color: var(--gris-fonce);
	background-color: var(--gris-clair);
	font-size: 14px;
}

body, h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans", sans-serif;
}

img {
	vertical-align: middle;
}

.clear {
	clear: both;
}

.center {
	text-align: center;
}

input, textarea, select {
	font: inherit;
}

table {
	font: inherit;
}

.pad {
	padding: 0 10px;
}

.left {
	float: left;
}

.right {
	float: right;
}

a {
	text-decoration: none;
	color: inherit;
	transition: .5s;
}

a:hover {
	color: var(--orange-clair);
	transition: .5s;
}

.site_wrapper {
	margin: 0 auto;
	width: 1200px;
}

.chapo {
	text-align: center;
	padding: 30px 0;
	font-size: 2em;
}

.hidden {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.visible {
    opacity: 1;
}

@media screen and (max-width: 1199px) {
	.site_wrapper {
		width: 100%;
	}

	.chapo {
		font-size: 1.5em;
	}
}

@media screen and (max-width: 860px) {
	#telephoner .texte {
		display: none;
	}
}

@media screen and (max-width: 720px) {
	#zone_logo {
		flex-direction: column;
	}

	#telephoner .qtexte {
		display: inline;
	}
}


/****************************************************************************/
/***                                                                      ***/
/***  HEADER TOP                                                          ***/
/***                                                                      ***/
/****************************************************************************/

header {
	position: relative;
	width: 100%;
	background-color: var(--gris-clair);
}

header #nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1em;
	font-size: 1.3em;
	font-weight: bold;
	font-variant-caps: small-caps;
}

header #zone_logo  {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

header #logo  {
	display: flex;
	padding-top: 5px;
}

header #logo a {
	min-width: 90px;
}

header #logo img {
	height: 100px;
}

header #logo span {
	padding-left: 20px;
	color: #6a78ba;
}

header #logo h1 {
}

header #logo h2 {
	font-size: 20px;
}

header #telephoner {
	font-size: 24px;
	color: var(--vert-clair);
	background-color: var(--bleu);
	padding: 20px;
	border-radius: 10px;
}

header #telephoner:hover {
	text-decoration: none;
	color: var(--vert-tres-clair);
	background-color: var(--bleu-clair);
}

header #nav .navbar {
	padding: 0;
	padding-top: 5px;
}

header #nav .navbar-expand-md .navbar-nav .nav-link {
	padding: 1rem;
}

header #nav a {
	color: var(--gris);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

header #nav a.active {
	color: var(--bleu);
	background-color: var(--vert-clair);
}

header #nav a:hover {
	color: var(--bleu);
	background-color: var(--vert-tres-clair);
}

@media screen and (max-width: 1199px) {
	header #nav img {
		margin-left: 30px;
	}
}

@media screen and (max-width: 767px) {
	header #nav {
		justify-content: center;
	}
}

@media screen and (max-width: 575px) {
	header #nav img {
		width: 50%;
		height: auto;
		margin-left: 0;
	}

	header #nav {
		flex-direction: column;
		gap: 1em;
		padding-top: 30px;
	}

	header #nav .logo {
		text-align: center;
	}
}

.chapo_page {
	background-color: var(--vert-clair);
	background-image: url(../ressources/bourrache-nb.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 11%;
	background-origin: ;
	height: 100px;
	padding-left: .5rem;
	display: flex;
	align-items: center;
	border-bottom: 5px solid var(--vert-fonce);
}

.chapo_page h1 {
}

/****************************************************************************/
/***                                                                      ***/
/***  HOMEPAGE                                                            ***/
/***                                                                      ***/
/****************************************************************************/

.bxslider {
	padding-top: 10px;
}

#article  {
	width: 100%;
	background-image: url('../ressources/fond.jpg');
	background-size: cover;
	background-position-y: 10%;
}


#article #image {
	min-height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#article h1 {
	text-align: center;
	font-size: 70px;
	text-shadow: 2px 2px 2px #000, 5px 5px 10px #000;
	color: #fff;
}

.activite {
	display: flex;
	flex-direction: row;
	align-items: top;
	margin-top: 20px;
	font-size: 30px;
}

.activite cite {
	display: block;
	font-size: 20px;
	padding-top: 20px;
}

.activite img {
	max-height: 300px;
	margin-right: 20px;
	border-radius: 10px;
}

@media screen and (max-width: 1199px) {
	#article h1 {
		font-size: 50px;
	}
}

@media screen and (max-width: 767px) {
	article ul li {
		font-size: 1em;
		text-align: justify;
	}
	.site_wrapper {
		padding: 0 15px;
	}

	 .site_wrapper .site_wrapper {
		padding: 0;
	}
}




/****************************************************************************/
/***                                                                      ***/
/***  SOINS                                                               ***/
/***                                                                      ***/
/****************************************************************************/

.soin p {
	font-size: 16px;
	margin: 8px;
	text-align: justify;
}

.section h2 {
	display: inline;
	font-size: 24px;
	font-weight: bold;
	margin-top: 20px;
	color: var(--vert-clair);
}

.section.verte {
	background-color: var(--vert-fonce);
	color: var(--bleu);
}

.soin h2, .soin h3 {
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	color: var(--bleu);
}

article .section {
	font-size: 24px;
	font-weight: bold;
	color: var(--vert-clair);
	background-color: var(--bleu);
	margin-top: 20px;
	padding: 5px 0;
}

article .section img {
	padding: 0 20px;
}

article .prix {
	font-weight: normal;
	color: #000;
}

.float-right {
	float: right;
}

/****************************************************************************/
/***                                                                      ***/
/***  COIFFURE                                                            ***/
/***                                                                      ***/
/****************************************************************************/

#coiffure .soin li {
	list-style-type: none;
	color: var(--bleu);
	padding-left: 20px;
}

#coiffure .soin .tarif {
	color: #000;
}

/****************************************************************************/
/***                                                                      ***/
/***  CONTACT                                                             ***/
/***                                                                      ***/
/****************************************************************************/

#infos {
	display: flex;
	align-items: center;
	justify-content: center;
	align-items: flex-start;
	column-gap: 50px;
	margin: auto;
	margin-bottom: 30px;
}

#horaires th, #horaires td {
	padding: 3px 20px;
}

#horaires th {
	color: var(--bleu);
}

#map {
	width: 60%;
}

@media screen and (max-width: 720px) {
	#infos {
		flex-direction: column;
	}
}

@media screen and (max-width: 720px) {
	#map {
		width: 100%;
	}
}

/****************************************************************************/
/***                                                                      ***/
/***  PIED DE PAGE                                                        ***/
/***                                                                      ***/
/****************************************************************************/

footer {
	padding: 20px 0;
}

footer hr {
	color: var(--gris-fonce);
}

footer a:hover {
	color: var(--orange-clair);
}


