@charset "UTF-8";

/**************************/
/**************************/
/********** VARS **********/
/**************************/
/**************************/

:root {
	/* standard */
	--dark-rgb: 26, 10, 8;
	--light-rgb: 234, 232, 227;
	--bright-rgb: 255, 255, 255;
	/* theme */
	--primary-rgb: 192, 134, 1; /* gold */
	--secondary-rgb: 27, 11, 8; /* chocolate */
	/*  accent */
	--accent-rgb: 255, 129, 178;
	--alert-rgb: 255, 0, 0;
	--dark-color: rgb(var(--dark-rgb));
	--light-color: rgb(var(--light-rgb));
	--bright-color: rgb(var(--bright-rgb));
	--primary-color: rgb(var(--primary-rgb));
	--secondary-color: rgb(var(--secondary-rgb));
	--accent-color: rgb(var(--accent-rgb));
	--alert-color: rgb(var(--alert-rgb));

	--font-family: 'Lato', sans-serif;
	--font-family-manuscript: 'GFS Didot', serif;
	--font-family-handwritten: 'Corinthia', cursive;
	--font-weight-normal: 300;
	--font-weight-medium: 500;
	--font-weight-bold: 600;
	
}
/****************************/
/********** @MEDIA **********/
/****************************/

@media (max-width:760px) {
	:root {
		--font-size: .875rem;
	}
}
@media (min-width:760px) {
	:root {
		--font-size: 1rem;
	}
}

/***************************/
/***************************/
/********** STYLE **********/
/***************************/
/***************************/

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
html {
	font-size: 100%;
}
html,
input,
textarea,
select,
button {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6,
ul, ol,
p, a, span,
blockquote, label, div, table,
input, textarea, button, select {
	margin: 0;
	padding: 0;
	font-weight: inherit;
}
p {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-shadow: inherit;
}
b, strong, del,
i, em {
	font-size: inherit;
	line-height: inherit;
}
sup {
	line-height: 0;
}
.hidden {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}

/*******************************/
/*******************************/
/********** STRUCTURE **********/
/*******************************/
/*******************************/

/*****************************/
/********** DEFAULT **********/
/*****************************/

html,
body {
	margin: 0;
	padding: 0;
	border: 0;
	height: 100%;
	width: 100%;
}

/**************************/
/********** BODY **********/
/**************************/

body {
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	color: var(--bright-color);
	text-shadow: 0 0 0;
	font-family: var(--font-family);
	font-size: var(--font-size);
	font-weight: var(--font-weight-normal);
	line-height: 1.25;
}

/**************************/
/********** MAIN **********/
/**************************/

main {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0;
	margin: 0;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	overflow-x: clip;
	overflow-y: visible;
	min-height: 100svh;
}

/*****************************/
/********** SECTION **********/
/*****************************/

section {
	position: relative;
	z-index: 10;
	clear: both;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	overflow: initial;
	width: 100%;
	max-width: none;
	padding: 0 !important;
	margin-left: 0;
	margin-right: 0;
	overflow: clip;
}
section.maintenance {
	min-height: 100svh;
}
section.maintenance .section-content {
	margin: auto;
}

/*************************/
/*************************/
/********** NAV **********/
/*************************/
/*************************/

/*****************************/
/********** DEFAULT **********/
/*****************************/

nav {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1em;
	line-height: 1;
}
nav a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	line-height: 1;
	margin: 0;
	text-decoration: none;
}

/*****************************/
/********** BUTTONS **********/
/*****************************/

nav.buttons a,
.button,
button,
input[type=submit] {
	position: relative;
	z-index: 10;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 1em;
	text-decoration: none;
	white-space: nowrap;
	padding: 1em 1.5em;
	color: var(--bright-color);
	background:var(--secondary-color);
}
nav.buttons a:hover,
.button:hover,
button:hover,
input[type=submit]:hover,
nav.buttons a.active,
.button.active,
button.active,
input[type=submit].active {
	color: var(--secondary-color);
	background:var(--bright-color);
}
nav.buttons a > *,
nav.buttons > .button,
.button > *,
button > * {
	margin: 0;
}

/****************************/
/****************************/
/********** MEDIAS **********/
/****************************/
/****************************/

/**
img
svg
<picture> TODO !!!
**/

/*****************************/
/********** DEFAULT **********/
/*****************************/

figure,
img {
	display: block;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	border: 0;
}
figure img {
	width: 100%;
}
/**************************/
/********** LOGO **********/
/**************************/

.logo {
	max-width: 15em;
}

/********************************/
/********** BACKGROUND **********/
/********************************/

figure.background {
	position: absolute;
	z-index: -1;
	inset: 0;
	margin: 0 !important;
	padding: 0 !important;
	max-width: none;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	pointer-events: none;
}
figure.background:before {
	content: '';
	position: absolute;
	z-index: 10;
	inset: 0;
	pointer-events: none;
	background: rgba(27, 11, 8, .66);
}
figure.background img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

/***************************/
/***************************/
/********** INFOS **********/
/***************************/
/***************************/

#infos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin: auto;
	text-align: center;
	font-weight: 500;
	padding: 1.25rem;
}
#infos > * + * {
	margin-top: 2rem;
}
#infos .title + .baseline {
	margin-top: .25em;
}
#infos .title {
	font-size: 2.5em;
	text-transform: uppercase;
}
#infos nav.buttons {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: .875em;
}