@font-face {
	font-family: 'Abel-Regular';
	src: url('/assets/fonts/Abel-Regular.ttf')
}

body{
	background-color: #171717;
	margin: 0;
	display: flex;
	flex-direction: column;
	color: #ffffff;
	min-height: 100vh;
	font-family: Abel-Regular;
}

h2{
	margin: 12px 0;
}

main{
	background-color: #2E1515;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	flex: 1;
	margin-top: 80px;
}

a{
	text-decoration: none;
	color: white;
}

.logo{
	max-width: 180px;
	max-height: 60px;
}

/*#region dropdown */

.dropdown{ /* liste déroulante version mobile */
	display:none;
}

.dropdown-menu {
	background-color: #171717;
	width: 100vw;
	border:none;	
}

.dropdown-item {
	color: white;
}

.dropdown-item > img {
	width: 30px;
	height: 30px;
	margin-right: 5px;
}

.dropdown-item:hover {
	background-color: inherit;
	color: #fff;
}

/*#endregion dropdown */

/*#region header */
header{
	background-color: #69181A;
	color: white;
	padding: 10px 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	min-width: 100vw;
	z-index: 10;
	border-bottom: solid 1px black;
	height: 80px;
}

header a{
	font-size: 24px;
}
/*#endregion header */

/*#region footer */

footer{
	background-color: #171717;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	line-height: 1.4;
	font-size: 18px;
}

footer > *{
	margin: 10px;
}

footer a img{ /* icones reseaux sociaux */
	width: 25px;
	height: 25px;
	margin: 5px 0 5px;
}

footer .logo{
	max-width: 300px;
	max-height: 120px;
}

/*#endregion footer */

/*#region responsive */

	@media screen and (max-width: 1000px) {

		header > a{
			font-size: 18px;
		} 

		.logo{
			max-width: 120px;
			max-height: 40px;
		}
	}

	@media screen and (max-width: 750px) {

		footer .logo{
			max-width: 200px;
			max-height: 80px;
		}

		header > a{
			font-size: 14px;
		} 

		.logo{
			max-width: 80px;
			max-height: 40px;
		}
	}

	@media screen and (max-width: 600px) {

		.logo{
			max-width: 120px;
			max-height: 40px;
		}

		footer .logo{
			max-width: 100px;
			max-height: 40px;
		}

		/*#region header responsive */

		.dropdown{
			display:block;
		}

		header{
			justify-content: space-between;
			padding-left: 20px;
			padding-right: 20px;
		}

		header > a{
			display:none;
		}

		header > a:nth-child(2){
			display:block;
		}

		header > div > img{
			width: 40px;
			height: 40px;
		}

		/*#endregion header responsive */

	}

	@media screen and (max-width: 500px) {

		footer{
			flex-direction: column;
			align-items: flex-start;
		}

		footer .logo{
			display: none;
		}
	}

/*#endregion responsive */

/*#region modal */

#modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.616);
	z-index: 11;
	display: none;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.modal-show{
	display: flex !important;
	flex-direction: column;
}

#modal-close{
		position: absolute;
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
		background-color: #69181A;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
	}

#modal-close > button{
	background: none;
	border: none;
	color: white;
}

/*#endregion modal */