@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.eot');
	src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-Regular.woff2') format('woff2'),
		url('../fonts/Poppins-Regular.woff') format('woff'),
		url('../fonts/Poppins-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.eot');
	src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-Bold.woff2') format('woff2'),
		url('../fonts/Poppins-Bold.woff') format('woff'),
		url('../fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

:root{
	--font-primary: Poppins, Arial, Helvetica, sans-serif;
	--color-primary: #FBB460;
	--color-hover-primary : #FFA336;
	--color-font:#707070;

	--max-width:1100px;
	--gutter-mobile:1rem;
}

body{
	font-family: var(--font-primary);
	color: var(--color-font)
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

nav{
	background: #ffffff;
	height:80px;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
	display: flex;
	justify-content: center;
	align-items: center;	
	position: relative;
}

.logo{
	width: 190px;
}


section{
	display: flex;
	justify-content: center;
	align-items: center;
}
section:nth-child(odd){
	background-color: #F8F8F8;
}

.inner{
	width: 100%;
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline:var(--gutter-mobile);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 45px;	
}

.full-width-split{
	display: flex;
	flex-direction: column;
}

.full-width-split .text-content{
	grid-column: 2/3;
	padding-inline: var(--gutter-mobile);
}
.full-width-split .img-content{
	grid-column: 3/5;
	display: flex;
    align-items: center;
    justify-content: center;
}




.formulaire{
	padding: 3.125rem;
}

h1{
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

h2{
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

p{
	font-size: .875rem;
	line-height: 1.5;
}

.text-content{
	padding: 3rem 0;
}

.text-content .link{
	color: var(--color-font);
	text-decoration: underline;
}

.img-content{
	overflow: hidden;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.description .img-content{
	background-image: url(../images/hotel-solvay_indoor.jpg);
}
.confirm .img-content{
	background-image: url(../images/hotel-solvay_outdoor.jpg);
}
/* FORM  */


.formulaire-content{
	width: 100%;
    max-width: calc(var(--max-width) / 2);
}

.form-checkbox{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
}
.label-checkbox{
	font-size: .625rem;
	line-height: 1.6;
}

.label-checkbox a{
	font-weight: bold;
	text-decoration: underline;
	color: inherit;
}

.warning{
	font-size: 0.625rem;
	line-height: 1.6;
	font-weight: bold;
}

button,.cta{
	background-color: var(--color-primary);
	color: white;
	font-weight: bold;
	font-size: .875em;
	transition: background-color ease .3s;
	padding: 10px 30px;
	outline: 0;
	border: 0;
    display: inline-block;
	margin-bottom: 1rem;
}

button:hover,.cta:hover{
	background-color: var(--color-hover-primary);
	color: white;
	text-decoration: none;
}

/* FOOTER  */

footer{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-primary);
	color: white;
}

footer .inner{
	display: flex;
	align-items: center;
	justify-content: center;
}
footer p{
	font-size: .625rem;
	line-height: 1.5;
	margin: .3125rem;
}
footer a{
	color: white;
	text-decoration: underline;
}

/* STRIPE  */

#checkout-container{
	padding: 3rem 0;
}

#success{
	padding: 3rem 0;
	background: #fff;
}

#success .inner{
	justify-content: center;
}

#success .text-content{
	max-width: calc(var(--max-width) / 3 * 2);
	display: flex;
	justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

#checkout{
	width:100%;
}

.hidden{
	display: none;
}

@media only screen and (max-width: 650px) {
	.formulaire{
		padding: var(--gutter-mobile);
	}
	.full-width-split .img-content{
		width: 100%;
		aspect-ratio: 4/3;
	}
	#checkout-container {
		padding: 3rem var(--gutter-mobile);
	}
	#success {
		padding:0;
	}


}


@media (min-width:784px) {
	.full-width-split{
		display: grid;
		grid-template-columns: 
			minmax(var(--gutter-mobile),1fr) 
			minmax(0,calc(var(--max-width) / 3 * 2)) 
			minmax(0,calc(var(--max-width) / 3)) 
			minmax(var(--gutter-mobile),1fr);
	}

	.full-width-split .text-content{
		grid-column: 2/3;
		padding-inline: var(--gutter-mobile);
	}

	.img-content img{
		width: auto;
		max-height: 100%;
		max-width: initial;
	}
}

@media (min-width:2160px) {
	.full-width-split .img-content{
		grid-column: 3/5;
	}
}