/**
 * Giulio Création — page-a-propos.css
 * Styles spécifiques à la page À propos
 * (chargé uniquement par page-a-propos.php)
 */

/* ============================================================
   HISTOIRE — text + photo
   ============================================================ */
.apropos-histoire { background: var(--white); padding: 7rem 4rem; }
.histoire-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 5rem; align-items: start;
	max-width: 1200px; margin: 0 auto;
}
.histoire-text p {
	color: var(--gray); margin-bottom: 1.4rem;
	line-height: 1.8; font-size: 1.02rem;
}
.histoire-text p strong { color: var(--black); font-weight: 500; }
.histoire-lead {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem; font-style: italic;
	color: var(--sage-dark); line-height: 1.5;
	margin-bottom: 2.5rem;
	padding-left: 1.5rem; border-left: 2px solid var(--sage);
}
.histoire-photo {
	aspect-ratio: 4/5; border-radius: 4px;
	position: relative; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
}
.histoire-photo.no-image {
	background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-dark) 100%);
}
.histoire-photo.no-image::after {
	content: 'Photo Alexandra';
	position: absolute;
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem; letter-spacing: 0.15em;
	text-transform: uppercase; font-weight: 500;
}
.histoire-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.histoire-photo-glow {
	position: absolute; inset: 0;
	background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
	pointer-events: none;
}

/* ============================================================
   PILIERS (3 cards on dark background)
   ============================================================ */
.apropos-piliers {
	background: var(--black); color: var(--white);
	padding: 8rem 4rem;
	position: relative; overflow: hidden;
}
.apropos-piliers::before {
	content: ''; position: absolute;
	top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 800px; height: 800px;
	background: radial-gradient(circle, rgba(138,158,138,0.08) 0%, transparent 70%);
	pointer-events: none;
}
.piliers-inner {
	max-width: 1300px; margin: 0 auto;
	position: relative; z-index: 1;
}
.piliers-header {
	text-align: center; margin-bottom: 5rem;
	max-width: 700px; margin-left: auto; margin-right: auto;
}
.piliers-header .section-label { color: var(--sage-light); justify-content: center; }
.piliers-header .section-label::before { background: var(--sage); }
.piliers-header .section-title { color: var(--white); }
.piliers-header .section-title em { color: var(--sage-light); }
.piliers-header p {
	color: rgba(255,255,255,0.65);
	margin-top: 1rem; line-height: 1.7;
}
.piliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.pilier {
	padding: 2.5rem;
	border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
	transition: all 0.4s ease;
	position: relative; overflow: hidden;
}
.pilier:hover {
	border-color: var(--sage);
	background: rgba(138,158,138,0.05);
	transform: translateY(-6px);
}
.pilier::before {
	content: ''; position: absolute;
	top: 0; left: 0; right: 0; height: 2px;
	background: var(--sage);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.5s ease;
}
.pilier:hover::before { transform: scaleX(1); }
.pilier-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem; color: var(--sage-light);
	opacity: 0.45; line-height: 1;
	margin-bottom: 1rem; font-weight: 300;
	letter-spacing: -0.02em;
}
.pilier h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.7rem; font-weight: 500;
	color: var(--white); margin-bottom: 1rem;
}
.pilier h3 em { font-style: italic; color: var(--sage-light); font-weight: 400; }
.pilier p {
	color: rgba(255,255,255,0.65);
	font-size: 0.95rem; line-height: 1.7;
}

/* ============================================================
   VALEURS (4 cards on sage-pale)
   ============================================================ */
.apropos-valeurs {
	background: var(--sage-pale);
	border-bottom: 1px solid var(--border-soft);
	padding: 7rem 4rem;
}
.valeurs-header { max-width: 800px; margin-bottom: 4rem; }
.valeurs-grid {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 2rem; max-width: 1100px;
}
.valeur {
	background: var(--white); border: 1px solid var(--border-soft);
	padding: 2.5rem; border-radius: 4px;
	transition: all 0.4s ease;
	position: relative; overflow: hidden;
}
.valeur::before {
	content: ''; position: absolute;
	left: 0; top: 0; bottom: 0; width: 3px;
	background: var(--sage-dark);
	transform: scaleY(0); transform-origin: top;
	transition: transform 0.5s ease;
}
.valeur:hover {
	transform: translateY(-4px);
	border-color: var(--sage);
	box-shadow: 0 12px 32px rgba(74,99,80,0.08);
}
.valeur:hover::before { transform: scaleY(1); }
.valeur-icon {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--sage-pale);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}
.valeur:hover .valeur-icon { background: var(--sage-dark); }
.valeur-icon svg {
	width: 22px; height: 22px;
	stroke: var(--sage-dark); fill: none; stroke-width: 1.5;
	transition: stroke 0.3s ease;
}
.valeur:hover .valeur-icon svg { stroke: var(--white); }
.valeur h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.55rem; font-weight: 500;
	margin-bottom: 0.8rem;
}
.valeur p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   PARCOURS / TIMELINE (5 steps vertical)
   ============================================================ */
.apropos-parcours { background: var(--white); padding: 7rem 4rem; }
.parcours-header { max-width: 800px; margin-bottom: 4rem; }
.timeline {
	max-width: 900px; margin: 0 auto;
	position: relative;
}
.timeline::before {
	content: ''; position: absolute;
	left: 1rem; top: 0; bottom: 0;
	width: 1px; background: var(--border);
}
.timeline-item {
	position: relative;
	padding-left: 3.5rem;
	padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
	content: ''; position: absolute;
	left: 0.65rem; top: 0.4rem;
	width: 11px; height: 11px;
	border-radius: 50%;
	background: var(--sage-dark);
	border: 2px solid var(--white);
	box-shadow: 0 0 0 1px var(--sage-dark);
}
.timeline-year {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem; font-style: italic;
	color: var(--sage-dark);
	margin-bottom: 0.5rem; font-weight: 500;
}
.timeline-item h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem; font-weight: 500;
	margin-bottom: 0.6rem;
}
.timeline-item p {
	color: var(--gray);
	font-size: 0.95rem; line-height: 1.7;
}
.timeline-item p em {
	font-style: italic; color: var(--sage-dark);
}

/* ============================================================
   STATS (réutilise .stat-box du style.css principal)
   ============================================================ */
.apropos-stats {
	background: var(--sage-pale);
	border-top: 1px solid var(--border-soft);
	padding: 7rem 4rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
	.apropos-histoire,
	.apropos-piliers,
	.apropos-valeurs,
	.apropos-parcours,
	.apropos-stats { padding: 5rem 1.5rem; }

	.histoire-grid,
	.piliers-grid,
	.valeurs-grid { grid-template-columns: 1fr; gap: 2rem; }
}
