/* Page Prestations - Design Entre-Deux Élégant */

/* ==========================================
   RÈGLES BREAKPOINTS (STRICT)
   ========================================== */
/* ✅ Styles généraux AVANT les breakpoints uniquement
   ✅ Ordre des breakpoints : du plus grand au plus petit (STRICT)
   ❌ INTERDICTION de rajouter des breakpoints non listés
   ❌ INTERDICTION de changer l'ordre des breakpoints
   ❌ INTERDICTION de mettre du CSS en dehors des breakpoints (sauf styles généraux) */

.prestations-page {
	padding: 8rem 5% 6rem;
	background: 
		radial-gradient(ellipse at 30% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 30%, rgba(26, 26, 26, 0.05) 0%, transparent 50%),
		linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	min-height: 100vh;
	position: relative;
}

/* Effet de texture subtile en overlay */
.prestations-page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.prestations-header {
	margin-bottom: 5rem;
	position: relative;
	z-index: 1;
}

.prestations-title {
	font-size: 3.5rem;
	font-weight: 400;
	color: #2a2a2a;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
	font-family: Georgia, 'Times New Roman', serif;
}

.gold-accent {
	background: var(--gold-shimmer);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 400;
}

.prestations-description {
	color: #555;
	font-size: 1.1rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
	font-weight: 300;
}

.prestations-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

/* Section de catégorie - Card élégante semi-transparente */
.category-section {
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	margin-bottom: 0;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(212, 175, 55, 0.25);
	backdrop-filter: blur(5px);
	border-radius: 12px;
	padding: 3rem;
	box-shadow: 
		0 8px 24px rgba(0, 0, 0, 0.08),
		0 2px 6px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* Ligne décorative en haut de la card */
.category-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(212, 175, 55, 0.5) 20%, 
		rgba(212, 175, 55, 0.8) 50%, 
		rgba(212, 175, 55, 0.5) 80%, 
		transparent 100%);
}

.category-section:hover {
	background: rgba(255, 255, 255, 0.85);
	border-color: rgba(212, 175, 55, 0.4);
	transform: translateY(-2px);
	box-shadow: 
		0 12px 32px rgba(0, 0, 0, 0.12),
		0 4px 12px rgba(212, 175, 55, 0.15);
}

.category-section:last-child {
	margin-bottom: 0;
}

.category-section:nth-child(1) { animation-delay: 0.1s; }
.category-section:nth-child(2) { animation-delay: 0.2s; }
.category-section:nth-child(3) { animation-delay: 0.3s; }
.category-section:nth-child(4) { animation-delay: 0.4s; }

/* Titre de catégorie */
.category-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 2.5rem;
	color: #2a2a2a;
	font-weight: 400;
	letter-spacing: -0.5px;
	text-transform: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(212, 175, 55, 0.25);
	gap: 1rem;
}

.category-icon {
	font-size: 2.5rem;
	line-height: 1;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-name {
	background: var(--gold-shimmer);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 400;
}

/* Conteneur des items d'une catégorie */
.category-items {
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.prestation-item {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	transition: all 0.3s ease;
}

.prestation-item:hover {
	padding-left: 0.5rem;
	border-bottom-color: rgba(212, 175, 55, 0.35);
}

.category-items .prestation-item:last-child {
	border-bottom: none;
}

.category-items .prestation-item:nth-child(1) { animation-delay: 0.2s; }
.category-items .prestation-item:nth-child(2) { animation-delay: 0.3s; }
.category-items .prestation-item:nth-child(3) { animation-delay: 0.4s; }
.category-items .prestation-item:nth-child(4) { animation-delay: 0.5s; }
.category-items .prestation-item:nth-child(5) { animation-delay: 0.6s; }
.category-items .prestation-item:nth-child(6) { animation-delay: 0.7s; }

.prestation-content {
	flex: 1;
	min-width: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	position: relative;
}

.prestation-info {
	width: 100%;
	position: relative;
}

.prestation-info h3 {
	margin: 0 0 0.5rem 0;
	transition: color 0.3s ease;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.prestation-icon {
	font-size: 1.3rem;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
	flex-shrink: 0;
}

.prestation-item:hover .prestation-info h3 {
	color: var(--gold-dark);
}

.prestation-description {
	color: #555;
	line-height: 1.6;
	font-size: 0.9rem;
	margin: 0 0 0.75rem 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
	font-weight: 300;
	padding-right: 140px;
}

.prestation-price {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--gold-dark);
	font-weight: 400;
	font-size: 1rem;
	white-space: nowrap;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
	margin: 0;
	letter-spacing: 0.3px;
	min-width: 120px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.prestations-loading {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--gold-light);
	font-size: 1.2rem;
	font-family: Georgia, 'Times New Roman', serif;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Ultra-large screens ≤2559px */
@media (max-width: 2559px) {
	/* Écrans ≤2559px */
}

/* Large desktop ≤1919px */
@media (max-width: 1919px) {
	/* Écrans ≤1919px */
}

/* Desktop ≤1439px */
@media (max-width: 1439px) {
	/* Écrans ≤1439px */
}

/* Laptop ≤1279px */
@media (max-width: 1279px) {
	.prestations-title {
		font-size: 3rem;
	}
	
	.category-section {
		padding: 2.5rem;
	}
}

/* Tablet large ≤1024px */
@media (max-width: 1024px) {
	/* Écrans ≤1024px */
}

/* Tablet landscape ≤899px */
@media (max-width: 899px) {
	@media (orientation: landscape) {
		/* Tablette landscape ≤899px */
	}
}

/* Tablet portrait ≤899px */
@media (max-width: 899px) {
	@media (orientation: portrait) {
		/* Tablette portrait ≤899px */
	}
}

/* Small tablet ≤714px */
@media (max-width: 714px) {
	/* Écrans ≤714px */
}

/* Mobile landscape ≤640px */
@media (max-width: 640px) {
	/* Écrans ≤640px */
}

/* Mobile portrait ≤480px */
@media (max-width: 480px) {
	.prestations-page {
		padding: 6rem 4% 3rem;
	}
	
	.prestations-title {
		font-size: 1.8rem;
		line-height: 1.2;
	}
	
	.prestations-description {
		font-size: 0.95rem;
		line-height: 1.6;
	}
	
	.prestations-grid {
		gap: 1.5rem;
	}
	
	.category-section {
		padding: 1.5rem 1rem;
	}
	
	.category-title {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
		padding-bottom: 0.8rem;
	}
	
	.category-items {
		padding: 0;
	}
	
	.prestation-item {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem 0;
	}
	
	.prestation-content {
		flex-direction: column;
		width: 100%;
		gap: 0.5rem;
	}
	
	.prestation-info {
		padding-right: 0;
	}
	
	.prestation-info h3 {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.prestation-description {
		font-size: 0.85rem;
		max-width: 100%;
		padding-right: 0;
	}
	
	.prestation-price {
		position: static;
		font-size: 1.1rem;
		text-align: right;
		margin-right: 10vw;
		min-width: auto;
		margin-top: 0.5rem;
	}
}
