html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: sans-serif;
	color: white;
	background: url('../images/chalet_fond.jpg') no-repeat center center fixed;
	background-size: cover;
}

h1 {
	font-size: 4vh;
	/* ✅ Titre principal lisible et responsive */
	margin-bottom: 2vh;
}

.overlay p {
	font-size: 2.2vh;
	/* ✅ Texte sous le titre, confortable à lire */
	margin: 0 0 3vh 0;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2vh;
}

.social-links {
	margin-top: 3vh;
	display: flex;
	gap: 3vw;
}

.social-links a {
	width: 4vw;
	height: 4vw;
	max-width: 10vw;
	max-height: 10vw;
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.2);
	transition: transform 0.3s, background-color 0.3s;
}

.social-links a:hover {
	background-color: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}

.social-links img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.social-links a:hover img {
	opacity: 1;
}

/* ✅ Logo responsive */
#logo-chalet {
	position: absolute;
	top: 1%;
	left: 1%;
	width: 8vw;
	z-index: 10;
}

@media (max-width: 600px) {
	#logo-chalet {
		width: 16vw;
	}
}

/* Bloc SEO visible, discret */
.seo-bloc {
	margin-top: 10vh;
	max-width: 50vw;
	font-size: 2.2vh;
	/* ✅ Texte long lisible, mais discret */
	color: #dddddd;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 2vh 3vw;
	border-radius: 2vw;
	line-height: 1.5;
	text-align: left;
}