@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

body{
	font-family: 'Lora', serif;
	margin:0;
    padding:0;
    height:100%;
	background: linear-gradient(135deg, #FAF8F5 0%, #F5F0EB 100%);
	color: #4A4A4A;
	line-height: 1.7;
	font-size: 16px;
}


/* HEADER */

#header{
	margin-top:30px;
	margin-bottom:20px;
	margin-left:auto;
	margin-right:auto;
	width:700px;
	color: #AD8B8B;
	font-family: 'Montserrat', sans-serif;
}

#header_text_1{
	margin-left:0;
	font-size:42px;
	font-weight:500;
	letter-spacing: 0.5px;
}

#header_text_2{
	margin-left:150px;
	font-size:20px;
	font-weight:400;
	letter-spacing: 0.3px;
}

#header_text_3{
	margin-left:50px;
	font-size:15px;
	font-weight:400;
	letter-spacing: 0.2px;
	color: #8B7B7B;
}

/* MENU */

#menu{
	margin-top:40px;
	margin-bottom:40px;
	text-align:center;
	font-size:15px;
	box-shadow: 0px 1px 10px rgba(173, 139, 139, 0.15);
	width:100%;
	font-family: 'Montserrat', sans-serif;
}

#menu_table{
	width:100%;
	height: 55px;
}

.menu_td, .menu_td_empty{
	border-top:none;
	border-bottom:none;
	color:#8B7B7B;
	background-color:#FFF;
	width:12.5%;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.menu_td_selected{
	color:#FFFFFF;
	background-color: #C9ADA7;
	width:12.5%;
	font-weight:500;
	cursor:pointer;
	border-radius: 0;
}

.menu_td:hover{
	color:#FFFFFF;
	background-color: #D4B5AF;
	width:12.5%;
	font-weight:500;
	cursor:pointer;
	transition: all 0.3s ease;
}

/* FOOTER */

#footer{
	visibility:hidden;
	margin-top:50px;
	margin-left:auto;
	margin-right:auto;
	padding-top:15px;
	padding-bottom:15px;
	width:70%;
	color:#8B7B7B;
	font-size:13px;
	text-align:center;
	border-top:1px solid #E8DDD3;
	background-color:transparent;
	font-family: 'Montserrat', sans-serif;
}

/* CONTENT */

.fieldset_content{	
	border:1px solid #E8DDD3;
	margin-bottom:25px;
	background-color:#FFFFFF;
	padding:25px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(173, 139, 139, 0.08);
}

.fieldset_content legend{
	color: #AD8B8B;
	font-size:20px;
	margin-left:15px;
	margin-right:15px;
	font-family: 'Montserrat', sans-serif;
	font-weight:500;
	letter-spacing: 0.3px;
}

#content{
	width:70%;
	margin-left:auto;
    margin-right:auto;
	margin-top:30px;
	color: #4A4A4A;
	text-align:left;
}

.info_div{
	border: 1px solid #E8DDD3;
	padding:20px;
	margin-top:25px;
	margin-bottom:25px;
	background-color: #FFF9F5;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(173, 139, 139, 0.06);
}

.enhanced_text{
	color:#B08080;
	font-weight:600;
}

legend{
	color:#AD8B8B;
	font-family: 'Montserrat', sans-serif;
}

/* BOUTONS */

.button{
	background-color:#C9ADA7;
	color: white;
	font-size:15px;
	padding:10px 25px;
	font-family: 'Montserrat', sans-serif;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(173, 139, 139, 0.2);
	font-weight:500;
	letter-spacing: 0.5px;
}

.button:hover{
	background-color:#B09B95;
	box-shadow: 0 3px 10px rgba(173, 139, 139, 0.3);
	transform: translateY(-1px);
}

/* IMAGE */

.mj_img{
	border: 1px solid #E8DDD3;
	box-shadow: 0 3px 12px rgba(173, 139, 139, 0.12);
}

/* INPUT */

textarea, input{
	font-family: 'Lora', serif;
	font-size:15px;
	padding:10px;
	border: 1px solid #E8DDD3;
	border-radius: 8px;
	background-color:#FFFFFF;
	color: #4A4A4A;
	transition: border 0.3s ease;
}

textarea:focus, input:focus{
	border-color: #C9ADA7;
	outline: none;
	box-shadow: 0 0 0 3px rgba(201, 173, 167, 0.1);
}

/* MESSAGE */

.error{
	color: #C85A54;
	font-weight: 500;
	background-color: #FAE5E3;
	padding:12px 18px;
	border-radius: 8px;
	border-left: 3px solid #C85A54;
}

.success{
	color: #5A9E6F;
	font-weight: 500;
	background-color: #E8F5EC;
	padding:12px 18px;
	border-radius: 8px;
	border-left: 3px solid #5A9E6F;
}

/* LIENS */

a{
	color: #B08080;
	text-decoration: none;
	transition: color 0.3s ease;
	border-bottom: 1px solid transparent;
}

a:hover{
	color: #C9ADA7;
	border-bottom: 1px solid #C9ADA7;
}

/* PARAGRAPHES */

p{
	margin-bottom: 18px;
	line-height: 1.8;
}

.border_2{
	border: 1px solid #E8DDD3;
	border-radius: 8px;
}

.marginLeft10 {
	margin-left: 10px;
}
