html{height:100%}
body
{
	background-color: #000000;
	background-image: url("Background2WDColor.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	font-family: Calibri;
}

#Ribbon
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	border-color: red;
	border: 3px;
	border-style: solid;
	color: white;
	text-align: center;
	font-size: 25px;
	z-index: 9999;
}

#languages
{
	margin-top: 20px;
	margin-left: 50px;
	display: flex;
	justify-content: space-around;
}

nav ul
{
	list-style-type: none; /* ce qui apparait devant chaque option : circle, decimal, ...none=rien */
	display: flex;
}

nav li
{
	margin-right: 100px;
	margin-top: -20px;
	font-size: 18px;
	font-weight: normal;
	/*background-color: #b3b2a2;*/
}

nav a
{
	padding-bottom: 0px;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
	color: #fff9f0;
	text-shadow: 2px 2px 3px #5e4f31;
	background-color: #78715E;
	border-style: solid;
	border: 2px solid #fff9f0;
	border-radius: 10px;
}

nav a:hover /* ce qui se passe quand on passe sur les éléments a du menu*/
{
	color: #78715E;
	background-color: #fff9f0;
	font-weight: bold;
	border-bottom: 2px solid #4c4c49;
	border-style: solid;
	border-color: #78715E;
	text-shadow: none;
}

.li_selected_lang
{
	background-color: #fff9f0;
	color: #78715E;
	font-weight: bold;
	border-bottom: 2px solid #4c4c49;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 10px;
	border: 2px #78715E solid;
}

#mainpage
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
	width: 100vw;
}

#mainpage img
{
	max-height: 65vh;
	max-width: 75vw;
	width: auto;
	height: auto;
	object-fit: contain;
}

#Title
{
	margin-top: -75px;
	text-align: center;
	color: #471B1A;
	font-size: 5em;
	font-weight: normal;
	font-style: italic;
	list-style-type: none;
}

#SubTitle
{
	margin-top: -75px;
	margin-bottom: 40px;
	margin-right: 50;
	margin-left: 50;
	font-size: 2.5em;
	color:#fbac00;
	text-align: center;
	text-shadow: 2px 2px 3px #471B1A;
}

#options
{
	margin-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: row;
	max-width: 1100px;
	border-style: solid;
	border-color: #5e4f31;
	border-radius: 20px;
	background-color: #CDB57B;
	background-image: url("black-paper.png");
}

#optionsimage
{
	margin-left: 25px;
	margin-top: auto;	
	margin-bottom: auto;
	vertical-align: middle;

}

#optionstext
{
	padding-left: 20px;
	padding-right: 20px;
	text-align: left;
	font-size: 2.0em;
	line-height: 40px;
	color: #fff9f0;
}

#link_normal
{
	color: #ffae03;
	font-style: italic;
	text-shadow: 3px 3px 3px #471B1A;
	text-decoration: none;
}

#link_normal:hover
{
	color: #ffae03;
	font-style: italic;
	font-weight: bolder;
	border-bottom: solid #5e4f31;
}

#SectionTitle
{
	margin-top: -35px;
	text-align: center;
	font-size: 60px;
	color:#fbac00;
	text-shadow: 2px 2px 3px #471B1A;
	font-weight: semi_bold;
	font-style: normal;
	letter-spacing: 1px;
}

#menu
{
	display: flex;
	justify-content: space-around;
	margin-bottom: 25px;
	width: 920px;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid #5e4f31;
	background-color:  #f5e0ab;
	border-radius: 8px;
	padding-top: 20px;
	line-height: 20px;
	background-image: url("black-paper.png");
}

#menu ul
{
	list-style-type: none; /* ce qui apparait devant chaque option : circle, decimal, ...none=rien */
	display: flex;
}

#menu li
{
	margin-right: 50px;
	margin-top: -20px;
	font-size: 1.6em;
	font-weight: bold;
}

#menu a
{
	padding-bottom: 0px;
	text-decoration: none;
	font-weight: normal;
	color: #fff9f0;
}

#menu a:hover /* ce qui se passe quand on passe sur les éléments a du menu*/
{
	color: #fff9f0;
	font-weight: bold;
	border-bottom: 2px solid #5e4f31;
}

.li_menu_selected
{
	color: #fff9f0;
	font-weight: bold;
	border-bottom: 2px solid #5e4f31;
}

#sub-menu
{
	display: flex;
	justify-content: space-around;
	margin-bottom: 0px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	line-height: 20px;
}

#sub-menu ul
{
	list-style-type: none; /* ce qui apparait devant chaque option : circle, decimal, ...none=rien */
	display: flex;
}

#sub-menu li
{
	margin-right: 50px;
	margin-top: -20px;
	font-size: 25px;
	font-weight: bold;
}

#sub-menu a
{
	text-decoration: none;
	font-weight: normal;
	color: #471B1A;
}

#sub-menu a:hover /* ce qui se passe quand on passe sur les éléments a du menu*/
{
	color: #fff9f0;
	font-weight: bold;
	border-bottom: 2px solid #5e4f31;
	text-shadow: 2px 2px 1px #5e4f31;
}

.li_sub-menu_selected
{
	color: #fff9f0;
	font-weight: bold;
	border-bottom: 2px solid #5e4f31;
	text-shadow: 2px 2px 1px #5e4f31;

}

#Content1
{
	margin-top: -35px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: flex;
	flex-direction: column;
	text-align: left;
	min-width: 700px;
	max-width: 1200px;
}

#Content1 pt
{
	padding: 0px 40px 25px 50px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	line-height: 35px;
	color: #fff9f0;
	text-shadow: 2px 2px 1px #5e4f31;
	margin-bottom: 20px;
}

#Content1 pt2
{
	padding: 0px 40px 25px 50px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	line-height: 35px;
	color: #fff9f0;
	text-shadow: 3px 3px 2px #5e4f31;
	margin-bottom: 20px;
}

#ContentSubTitle
{
	font-size: 27px;
/*	text-shadow: 3px 3px 3px #fff9f0;
*/	font-weight: bold;
	font-style: italic;
	color: #471B1A;
	letter-spacing: 1px;
}

#Content1 p
{
	margin-top: 00px;
	text-shadow: 0px 0px 0px;
	padding: 30px 50px 30px 50px;
	font-size: 22px;
	font-weight: normal;
	text-align: justify;
	line-height: 30px;
	color: #fff9f0;
	border-radius: 20px;
	border-style: solid;
	border-color: #5e4f31;
/*	box-shadow: 10px 10px 15px #5e4f31;
*/	background-color: #CDB57B;
	background-image: url("black-paper.png");

}

#Content1 img
{
	float: right;
	padding-top: 40px;
	padding-bottom: 30px;
	padding-left: 50px;
	margin-left: auto;
	margin-right: auto;
	display:flex-end;
}

#Content2
{
	display: flex;
	justify-content: center;
	flex: 1;
	gap: 50px;
	margin-top: 00px;
	text-shadow: 0px 0px 0px;
	padding: 30px 50px 30px 50px;
}

#Content2Box
{
	width: 100%; /* Adjust based on preference */
    background: #000;
    color: white;
    max-width: 700px;
    min-width: 400px;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
	font-size: 22px;
	font-weight: normal;
	text-align: justify;
	line-height: 35px;
	color: #fff9f0;
	border-radius: 20px;
	border-style: solid;
	border-color: #5e4f31;
/*	box-shadow: 10px 10px 15px #5e4f31;
*/	background-color: #CDB57B;
	background-image: url("https://www.transparenttextures.com/patterns/black-felt.png");
	margin-bottom: 50px;
}

#Content3
{
	margin-top: -25px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: flex;
	flex-direction: column;
	text-align: left;
	min-width: 400px;
	max-width: 400px;
}

#Content3 p
{
	width: 100%; /* Adjust based on preference */
    background: #000;
    color: #5e4f31;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	line-height: 25px;
	border-radius: 20px;
	border-style: solid;
	border-color: #5e4f31;
/*	box-shadow: 10px 10px 15px #5e4f31;
*/	background-color: #CDB57B;
	background-image: url("https://www.transparenttextures.com/patterns/black-felt.png");
	margin-bottom: 50px;
}

#Content4
{
	display: flex;
	justify-content: center;
	flex: 1;
	gap: 50px;
	margin-top: 00px;
	text-shadow: 0px 0px 0px;
	padding: 0px 50px 50px 50px;
}

.map-container
{
	margin-top: 0px;
	position: relative;
	width: 90vw; /* 90% of viewport width */
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin-bottom: 50px;
}

.map-image
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.region-container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.region
{
  position: absolute;
  background: rgba(255, 255, 255, 0.3); /* Slight highlight */
  border-radius: 5px;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  color: #471B1A;
  transition: background 0.3s ease;
}

.region:hover
{
	cursor: pointer;
	color: #fbac00;
	font-weight: bold;
	border: 2px solid #5e4f31;

}

.catalonia
{
	top: 70%;
	left: 46%;
	transform: translate(-50%, -50%);
}

.paca
{
	top: 60%;
	left: 57%;
	transform: translate(-50%, -50%);
}

.alps
{
	top: 47%;
	left: 63%;
	transform: translate(-50%, -50%);
}

.pyrenees
{
	top: 64%;
	left: 44%;
	transform: translate(-50%, -50%);
}

.Maps
{
	margin-top: -50px;
	max-height: 70vh;
	max-width: 70vw;
	width: auto;
	height: auto;
	object-fit: contain;
}

.Download
{
	color: #fff9f0;
	font-size: 25px;
	font-style: italic;
	text-shadow: 3px 3px 3px #471B1A;
	text-decoration: none;
}

.Download:hover
{
	color: #fff9f0;
	font-style: italic;
	font-weight: bolder;
	border-bottom: solid #5e4f31;

}

.Link_Region
{
	color: #fbac00;
	font-size: 30px;
	font-style: italic;
	text-shadow: 2px 2px 2px #471B1A;
	text-decoration: none;
}

.Link_Region:hover
{
	color: #fff9f0;
	font-style: italic;
	font-weight: bolder;
	border-bottom: solid #5e4f31;

}

.Names
{
	font-weight: bold;
}

#photos
{
	padding: 0px 50px 100px 50px;
	display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 2px;
}

#photos img
{
	border: 1px solid #181818;
	margin-right: 2px;
	width: 162px;
	height: auto;
}
