@charset "utf-8";

/* IMPORT OPEN SANS GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* IMPORT OPEN SANS GOOGLE FONT ITALIC */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,300;1,400;1,600;1,700;1,800&display=swap');



/* IMPORT OPEN SANS PLAYFAIR DISPLAY*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* IMPORT OPEN SANS PLAYFAIR DISPLAY*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500;1,700;1,800;1,900&display=swap');



html {
	font-size: 1px;
}




/* ----------------------------------- */


/* Composants génériques */


/* ----------------------------------- */





/* ADD CALENDAR TOGGLE */

.add-calendar {
	position: absolute;
	bottom: 0;
	right: 10%;
	background-color: #941604;
	min-width: 250rem;
	min-height: 45rem;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.add-or-remove-calendar {
	font-family: Open Sans, sans-serif;
	font-weight: 300;
	font-size: 16rem;
	color: white;
	margin: 0rem 15rem;
}

.btn-toggle-all {
	border-radius:100rem;
	background-color: white;
	width: 55rem;
	height: 25rem;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	margin: 0rem 15rem;
}

.btn-toggle {
	width: 15rem;
	height: 15rem;
	background-color: #941604;
	border-radius:50%;
	margin-left: 5rem;
	transition: all 0.2s;
}

.btn-toggle.active {
	transform: translate(30rem);
	background-color: white;
}

.btn-toggle-all.active {
	background-color: #941604;
	border: 1rem solid white;
}







/* CALENDRIER */

.overlay {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.95);
	opacity: 0;
	position: fixed;
	z-index: -1; /* Valeur négative pour que le hover fonctionne */
	top: 0; 
	left: 0;
	transition: all 0.3s; 
}


.overlay.active {
	z-index: 30;
	opacity: 1;
}

.site-all {
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: -1; /* Valeur négative pour que le hover fonctionne */
	top: 0; 
	left: 0;
	transition: all 0.3s; 
}

.site-all.active {
	z-index: 30;
}


.site-section {
	height: 165rem;
	width: 100%;
	background-color: white;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s;
}

.site-all.active .site-section:nth-child(1) {
	position: absolute;
	top: 135rem;
	left: 0;
	z-index: 30;
	opacity: 1;
	transform: scale(1);
	display: flex;
}

.site-all.active .site-section:nth-child(2) {
	position: absolute;
	top: 356rem;
	left: 0;
	z-index: 30;
	opacity: 1;
	transform: scale(1);
	display: flex;
	transition-delay: 0.2s;
}

.site-all.active .site-section:nth-child(3) {
	position: absolute;
	top: 573rem;
	left: 0;
	z-index: 30;
	opacity: 1;
	transform: scale(1);
	display: flex;
	transition-delay: 0.4s;
}

.site-all.active .site-section:nth-child(4) {
	position: absolute;
	top: 791rem;
	left: 0;
	z-index: 30;
	opacity: 1;
	transform: scale(1);
	display: flex;
	transition-delay: 0.6s;
}

.site-section {
	background-color: white;
	height: 165rem;
	width: 100%;
	position: absolute;
	top: 135rem;
	left: 0;
	z-index: 1;
	display: flex;
}

.site-section a {
	text-decoration: none;
}

.site-section-picture {
	width: 1146rem;
	height: 100%;
	background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-section-picture.one {
	background-image: url(../img/Img_header_3.jpg);
}

.site-section-picture.two {
	background-image: url(../img/Img_header_2.jpg);
} 

.site-section-picture.three {
	background-image: url(../img/Img_header_1.jpg);
}

.site-section-picture.four {
	background-image: url(../img/Img_header_4.jpg);
} 

.site-section-picture h1 {
	margin-bottom: 0;
	text-align: center;
}

.site-section-picture h3 {
	margin-bottom: 0;
}

.site-section-control {
	width: 994rem;
	height: 164rem;
	/*background-color: red;*/
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.site-section-control-left {
	width: 50%;
	height: 100%;
	height: auto;
	/*background-color: gold;*/
}

.site-section-control div:nth-child(1) {
	position: initial;
	margin: auto;
}

.site-section-control-right {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-around;
	/*background-color: green;*/
}

.site-section-control-right a {
	width: 30rem;
	margin: auto;
}

.site-section-control a img {
	width: 100%;
}









/* HEADER */

.site-header {
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 30;

	/*background-color: red;*/
}

	.site-header-wrapper {
		width: 1155rem;
		min-height: 100rem;

		/* AFFICHAGE / POSITION */
		display: flex;
		justify-content: space-between;

		/* CENTRAGE */
		align-items: center;
		margin-left: auto;
		margin-right: auto;


		/*background-color: orange;*/
	}

		.site-header-logo {
			width: 150rem;
			height: auto;
			/*background-color: blue;*/
		}

			.site-header-logo img {
				width: 100%;
			}

		/* TOUTE LA NAVIGATION */

		.nav {
			height: 50rem;

			display: flex;
			align-items: center;
			/*background-color: lightgreen;*/

		}

			.nav-top {
				
				display: flex;
				justify-content: flex-end;

				/*background-color: white;*/
			}

			.nav-bottom {

				display: flex;
				align-items: center;
				background-color: red;
			}

			/* ITEM NAVIGATION */

				.nav-item {
					margin-right: 25rem;
					text-decoration: none;
					color: white;
					font-size: 16rem;
					font-family: Open Sans, sans-serif;
					font-weight: 600;
					transition: 0.3s;
				}

				.nav-item:hover {
					color: #941604;
				}

				.nav-item:nth-child(1) {
					display: none;
				}


				button.nav-picto {
					background: transparent;
	    			border: transparent;
	   				width: 40rem;
				}

				/* PICTO NAVIGATION */

				.nav-picto-content {
					display: flex;
					align-items: center;
					width: 215rem;
				}

				.nav-picto {
					margin-left: 20rem;
					width: 25rem;
					transition: 0.3s;
				}

				.nav-picto:hover, button.nav-picto:hover {
					filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
				}

				/* REMPLISSAGE LOGO DE SA BALISE PARENT */

					.nav-picto img {
						width: 100%;
					}









/* SLIDER HEADER */

.site-main {
	width: 100%;
	margin: auto;
	min-height: 600rem;
}

#slide-1 {
	background-position: center;
	width: 100%;
	background-image: url(../img/Img_header_1.jpg);
	background-repeat: no-repeat;
}

#slide-2 {
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	background-image: url(../img/Img_header_2.jpg);
}

#slide-3 {
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	background-image: url(../img/Img_header_3.jpg);
}


	.site-main-wrapper {
		width: 1300rem;
		/*background-color: grey;*/
		min-height: 600rem;
		margin-right: auto;
		margin-left: auto;
		display: flex;
		align-items: center;
		position: relative;
		text-decoration: none;
	}

	.site-main-text {
		margin: auto;
		width: 585rem;
		min-height: 200rem;
		/*background-color: pink;*/
		text-align: center;
	}

	/* Rendre le programme du header cliquable*/

	.site-main-text a {
		text-decoration: none;
	}

		.site-kind {
			margin-bottom: 10rem;
			font-family: OpenSans, sans-serif;
			font-size: 16rem;
			font-weight: 400;
			color: white;
		}

		.site-kind::before, .site-kind::after {
			content: "_______";
			color: white;
			margin: 5rem;
		}

		.site-title {
			margin-bottom: 50rem;
			font-family: 'Playfair Display', serif;
			font-size: 64rem;
			color: white;
			font-weight: 700;
		}


	.site-main-dates {
		width: 12%;
		height: 80rem;
		background-color: white;
		position: absolute;
		bottom: 0;
		left: 44%;
		display: flex;
		justify-content: space-between;
	}

	.content-date {
		width: 38rem;
		/*background-color: orange;*/
		text-align: center;
		margin: auto;
	}

	.content-date-text {
		font-family: Open Sans, sans-serif;
		font-weight: 400;
		font-size: 16rem;
		color: #941604;
	}

		.date-day {
			font-size: 24rem;
			font-weight: 600;
		}

		.date-month {
			text-transform: uppercase;
			font-size: 16rem;
			font-weight: 600;
		}

		.arrow-header {
			width: 20rem;
			height: auto;
			position: absolute;
			top: 44%;
			left: 44%;
		}

			.arrow-header img {
				width: 100%;
			}










/* SLIDER A VENIR */

.site-slider {
	width: 100%;
	min-height: 600rem;
	/*background-color: blue;*/
	margin-top: 125rem;
	display: flex;
	justify-content: center;
}

	.site-slider-wrapper {
		width: 1155rem;
		/*background-color: pink;*/
		height: auto;
	}

		.site-subtitle {
			font-family: 'Playfair Display', serif;
			font-size: 35rem;
			font-weight: 700;
			margin-bottom: 15rem;
		}

		.site-link {
			font-family: Open Sans, sans-serif;
			font-size: 17rem;
			font-weight: 300;
			text-decoration: none;
			color: black;
			transition: all 0.3s;
		}

		.site-link:hover, .site-link:hover::after {
			color: #941604;
		}

		.site-link::after {
			font-family: "icomoon";
			content: "\e902";
			color: black;
			font-size: 10rem;
			margin-left: 5rem;
		}

		.site-slider-contents {
			width: 1155rem;
			min-height: 395rem;
			display: flex;
			justify-content: space-between;
		}

			.site-slider-program {
				margin-top: 55rem;
				width: 270rem;
				min-height: 390rem;
				/*background-color: gold;*/
			}

				.site-slider-program-picture {
					width: 270rem;
					height: 305rem;
					/*background-color: red;*/
					position: relative;
				}

					.site-slider-program-picture img {
						width: 100%;
						height: 100%;
					}

				.content-date-program {
					position: absolute;
					bottom: 0;
					left: 0;
					background-color: white;
					width: 65rem;
					height: 75rem;
					display: flex;
					align-items: center;
					justify-content: center;
					text-align: center;
				}

				.content-buy-program {
					position: absolute;
					bottom: 0;
					right: 0;
					background-color: white;
					width: 35rem;
					height: 45rem;
					display: flex;
					align-items: center;
					justify-content: center;
				}

					.content-buy-program img {
						width: 40%;
						height: auto;
					}

				.subtitle-slide {
					margin-top: 20rem;
					font-family: Open Sans, sans-serif;
					font-size: 16rem;
					font-weight: 300;
				}

				.title-slide {
					margin-top: 5rem;
					font-family: Open Sans, sans-serif;
					font-size: 24rem;
					font-weight: 700;
					color: #941604;
					margin-bottom: 40rem;
				}












/* ABONNEMENT */

.site-subscription {
	margin-top: 125rem;
	width: 100%;
	height: 320rem;
	background-image: url(../img/Img_subs.jpg);
	background-size: 110% auto;
	display: flex;
	align-items: center;
}

	.site-subscription-wrapper {
		margin: auto;
		width: 500rem;
		height: auto;
		/*background-color: grey;*/
		text-align: center;
		align-items: center;
	}

	.site-subscription-wrapper h2, .site-subscription-wrapper p {
		color: white;
	}

	.btn-white {
		font-family: Open Sans, sans-serif;
		font-size: 16rem;
		text-decoration: none;
		background-color: white;
		padding: 10rem 40rem;
		color: #941604;
		transition: 0.3s;
	}

	.btn-white:hover {
		border: 1rem solid white;
		background-color: transparent;
		color: white;
	}








/* ABOUT US */

.site-about {
	margin-top: 125rem;
	width: 100%;
	min-height: 385rem;
	/*background-color: yellow;*/
}

	.site-about-wrapper {
		margin-left: auto;
		margin-right: auto;
		width: 1155rem;
		min-height: 385rem;
		/*background-color: lightblue;*/
		display: flex;
		justify-content: space-between;
	}

		.site-about-picture {
			width: 660rem;
			min-height: 375rem;
			/*background-color: darkblue;*/
		}

			.site-about-picture img {
				width: 100%;
			}

		.site-about-text {
			width: 460rem;
			height: 380rem;	
		}

		.site-info {
			font-family: Open Sans, sans-serif;
			font-size: 18rem;
			margin-bottom: 40rem;
		}

		.btn-red {
			font-family: Open Sans, sans-serif;
			font-size: 16rem;
			text-decoration: none;
			background-color: #941604;
			padding: 10rem 40rem;
			color: white;
			transition: 0.3s;
		}

		.btn-red:hover {
			border: 1rem solid #941604;
			background-color: transparent;
			color: #941604;
		}





/* LES ACTUS */

.site-slider-actus {
	margin-top: 55rem;
	width: 365rem;
	min-height: 325rem;
	/*background-color: lightgreen;*/
}

	.site-slider-actus-picture {
		width: 365rem;
		height: 175rem;
		/*background-color: red;*/
	}

	.site-slider-actus-picture img {
		width: 100%;
		height: 100%;
	}


/* FOOTER */
	
.site-footer {
	margin-top: 135rem;
	background-color: #941604;
}

	.site-footer-wrapper-top {
		margin: auto;
		width: 1155rem;
		min-height: 210rem;
		padding-top: 60rem;
		padding-bottom: 30rem;
		display: flex;
		justify-content: space-around;
		border-bottom: 1rem solid white;
	}


		.site-newsletter-form {
			text-align: center;
			width: 240rem;
			min-height: 100rem;
			display: flex;
			flex-direction: column;
			justify-content: space-around;
		}

			.site-newsletter-form-label {
				font-size: 35rem;
				font-weight: 700;
				color: white;
			}

			.newsletter-form-wrapper {
				display: flex;
				flex-direction: column;
			}

				.newsletter-form-input {
					background-color: transparent;
					border: 1rem solid white;
					height: 40rem;
				}

				.newsletter-form-submit {
					font-family: OpenSans, sans-serif;
					font-size: 16rem;
					background-color: white;
					border: 1rem solid white;
					height: 40rem;
				}

				input::placeholder {
				  color: rgba(255, 255, 255, 0.3);
				  font-family: Open Sans, sans-serif;
				  font-style: italic;
				  font-size: 16rem;
				  text-align: center;
				}

		.footeritem {
			width: 180rem;
			min-height: 185px;
			/*background-color: red;*/
		}

			.footeritem-title {
				font-family: Open Sans, sans-serif;
				font-weight: 700;
				font-size: 20rem;
				color: white;
				margin-bottom: 35rem;
			}

			.footeritem-list a {
				font-family: OpenSans, sans-serif;
				font-size: 17rem;
				font-weight: 300;
				color: white;
				text-decoration: none;
			}

			.footeritem-list li {
				margin-bottom: 20rem;
			}

			.site-footer-wrapper-bottom {
				width: 100%;
				min-height: 90rem;
				text-align: center;
				display: flex;
				align-items: center;
				/*background-color: red;*/
			}

			.site-footer-wrapper-bottom .footeritem-list {
				margin-left: auto;
				margin-right: auto;
				/*background-color: orange;*/
			}

			.site-footer-wrapper-bottom .footeritem-list a {
				margin: 30rem;
			}






/* Tools slider */

button.slick-prev.slick-arrow::before {
	font-family: "icomoon";
	content: "\e901";
	color: white;
	font-weight: 700;
}

button.slick-next.slick-arrow::before {
	font-family: "icomoon";
	content: "\e902";
	color: white;
	font-weight: 700;
}

