.tarifs {
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

.tarif-fond {
	width: 100%;
}

.tarif-fond img {
	width: auto;
	max-width: none;
	height: auto;
	margin-left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	object-position: center;
}


.tarifs-contenu {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow-y: auto;
}

.tarifs-contenu-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 5px 15px;
}

.tarifs-titre {
	font-family: 'AlienEncountersSolid', sans-serif;
	text-align: center;
	font-size: 22px;
	margin-bottom: 0px;
	z-index: 2;
}

.tarifs-intro {
	font-family: 'Rachana', sans-serif;
	text-align: center;
	font-size: 12px;
	margin: 8px auto 5px auto;
	line-height: 1;
	z-index: 2;
	max-width: 75%;
}

.tarifs-liste {
	background: rgba(50, 34, 34, 0.92); /* marron semi-transparent */
	border-radius: 14px;
	padding: 25px;
	z-index: 2;
	font-size: 14px;
	margin-bottom: 5px;
}

.tarifs-liste h2 {
	color: #9fb475;
}

.tarif-ligne {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5px;
	padding: 12px 5px 5px;
	border-bottom: 1px solid rgba(255, 241, 222, 0.25);
	z-index: 2;
	flex-direction: column;
}

.tarif-ligne:last-child {
	border-bottom: none;
	z-index: 2;
}

.tarif-prestation {
	font-size: 14px;
	line-height: 1.4;
	z-index: 2;
}

.tarif-prestation-precision {
	font-size: 11px;
	line-height: 1.4;
	z-index: 2;
}

.tarif-prix {
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
	z-index: 2;
	margin-left: auto;
}

.tarifs-details {
	margin-top: 20px;
	z-index: 2;
}

.tarifs-details summary {
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0px;
	z-index: 2;
	color: orange;
}

.tarifs-note {
	margin-top: 25px;
	text-align: center;
	font-size: 16px;
	opacity: 0.85;
	z-index: 2;
}

@media (min-width: 768px) {

	.tarifs-titre {
		font-size: 36px;
	}

	.tarifs-intro {
		font-size: 18px;
	}

	.tarifs-liste h2 {
		font-size: 24px;
	}

	.tarif-ligne {
		flex-direction: row;
		gap: 15px;
		align-items: flex-start;
	}
	
	.tarif-prestation {
		font-size: 18px;
		align-self: center;
	}
	
	.tarif-prestation-precision {
		font-size: 14px;
		align-self: flex-end;
	}
	
	.tarif-prix {
		font-size: 20px;
		align-self: center;
	}
}

@media (min-width: 1200px) {

	.tarifs-titre {
		font-size: 42px;
	}

	.tarifs-liste h2 {
		font-size: 26px;
	}

	.tarif-prestation {
		font-size: 20px;
	}
	
	.tarif-prestation-precision {
		font-size: 15px;
		align-self: flex-end;
	}

	.tarif-prix {
		font-size: 22px;
	}
}

