body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-image: url("/Image/background/crystal.png");
	background-size: 100% auto;
}

header {
	background-image: url("/Image/background/crystal.png");
	background-size: 100% auto;
	color: white;
	text-align: center;
	padding: 25px 0;
	font-size: 28px;
}

.btn-container {
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
	gap: 20px;
}

button {
	background: linear-gradient(145deg, #3f1a4e, #6a4e77);
	color: #fff;
	padding: 10px 20px;
	border-radius: 20px;
	border: none;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), -4px -4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

button:hover {
	background: linear-gradient(145deg, #6a4e77, #3f1a4e); /* Inverser les couleurs du dégradé */
}

button:active {
	transform: translateY(20px);
}

#container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 0 20px;
	max-width: 1200px;
	margin: 50px auto 50px auto;
}

.card {
	background-size: cover;
	background-position: center;
	position: relative;
	color: white;
	text-align: center;
	border-radius: 10px;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: 0.5s;
}

.text-overlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	transition: 0.5s;
}

.card:hover {
	transform: scale(1.05);
	box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5);
}

.card:hover .text-overlay:hover {
	opacity: 0;
}

.card img {
	max-width: 100%;
	border-radius: 10px;
}

.card h2 {
	margin: 10px 0;
	font-size: 20px;
}

.card p {
	margin: 5px 0;
	font-size: 16px;
}

#map {
  height: calc(75vh - 120px);
  margin: 50px;
}
