/* Section Les ALLOs */
.allos-section {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.allos-banner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px auto;
	background: url('banner-parchment.png') no-repeat center center;
	background-size: 100% 100%;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	color: #6b4a1b;
	padding: 18px 0 10px 0;
	letter-spacing: 1px;
	font-family: 'Georgia', serif;
	height: 70px;
}

.allos-fanion-container {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 20px;
	position: relative;
}

.allos-fanion {
	width: 100vw;
	max-width: 720px;
	height: auto;
	display: block;
}

.allos-liste {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	width: 100%;
	max-width: 600px;
	padding-bottom: 50px;
}

.allo-item {
	color: #ffffff;
	font-size: 1.8em;
	font-family: 'Georgia', serif;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* Section La liste */
.liste-section {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.liste-banner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px auto;
	background: url('banner-parchment.png') no-repeat center center;
	background-size: 100% 100%;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	color: #6b4a1b;
	padding: 18px 0 10px 0;
	letter-spacing: 1px;
	font-family: 'Georgia', serif;
	height: 70px;
}

.liste-blasons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.blason {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.blason:hover {
	transform: scale(1.1);
}

.blason-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	width: 100%;
	max-width: 1200px;
}

.blason-container.active .blason {
	transform: translateX(-50px);
}

.blason-container.active .blason:hover {
	transform: translateX(-50px) scale(1.1);
}

.video-container {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-container.active {
	display: block;
	opacity: 1;
}

.video-container iframe {
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Layout mobile : vidéo sous le blason */
@media (max-width: 768px) {
	.blason-container {
		flex-direction: column;
		gap: 20px;
	}

	.blason-container.active .blason {
		transform: translateX(0);
	}

	.blason-container.active .blason:hover {
		transform: scale(1.1);
	}

	.video-container iframe {
		width: 100%;
		max-width: 360px;
		height: 203px;
	}
}

.blason-img {
	width: 240px;
	height: auto;
	display: block;
}

.blason-label {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	color: #8f6429;
	font-size: 1.2em;
	font-family: 'Georgia', serif;
	font-weight: bold;
	pointer-events: none;
	transform: translateY(-50%);
}
body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: #cab885 url('parchment-bg.jpg') repeat-y center top;
	background-size: 100% auto;
	font-family: 'Georgia', serif;
}

main {
	flex-grow: 1;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.banner {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	background: url('banner-parchment.png') no-repeat center center;
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 100px;
	z-index: 100;
}

.banner-dragon {
	width: 120px;
	height: auto;
	position: absolute;
	top: -10px;
}
.banner-dragon.left {
	left: 10vw;
}
.banner-dragon.right {
	right: 10vw;
	transform: scaleX(-1);
}

.banner-menu {
	display: flex;
	gap: 60px;
	justify-content: center;
	width: 100%;
	z-index: 1;
}
.banner-link {
	color: #3e2200;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.3em;
	text-align: center;
	line-height: 1.2;
	padding: 0 10px;
	transition: color 0.2s;
}
.banner-link:hover {
	color: #7a4c13;
}

@media (max-width: 768px) {
	.banner {
		height: auto;
		padding: 20px 10px;
		flex-direction: column;
		gap: 6px;
	}

	.banner-menu {
		flex-direction: column;
		gap: 4px;
		align-items: center;
	}

	.banner-link {
		font-size: 1em;
		padding: 3px 6px;
	}
}

.nous-suivre-wrapper {
	position: relative;
}

.social-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	pointer-events: none;
	z-index: 99;
	margin-top: 10px;
}

.social-dropdown.active {
	transform: translateX(-50%) translateY(10px);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.social-parchment {
	width: 350px;
	height: auto;
	display: block;
}

.social-icons {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-top: 20px;
}

.social-link {
	display: block;
	transition: transform 0.2s;
}

.social-link:hover {
	transform: scale(1.1);
}

.social-icon {
	width: 40px;
	height: 40px;
	display: block;
}

.main-content {
	margin: 40px auto 0 auto;
	text-align: center;
}

.welcome {
	font-size: 1.5em;
	color: #6b4a1b;
	margin-bottom: 10px;
	font-family: 'Georgia', serif;
}

.main-title {
	font-size: 5em;
	color: #6b4a1b;
	font-family: 'Papyrus', 'Georgia', serif;
	font-weight: normal;
	margin: 0;
	letter-spacing: 2px;
	text-shadow: 1px 2px 2px #d2b48c;
}

.footer {
	margin-top: 60px;
	text-align: center;
	background: url('banner-parchment.png') no-repeat center center;
	background-size: 100% 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 110px;
}

.footer p {
	margin: 0;
	color: #6b4a1b;
	font-size: 1.1em;
	font-family: 'Georgia', serif;
	font-weight: bold;
}
