/**
 * Page: Présentation de l'école
 * Styles for video showcase, vision commune, and directors' message cards.
 *
 * @package ecole-du-bonheur
 */

/* ═══════════════════════════════════════════════════════════
   VIDEO SHOWCASE
   ═══════════════════════════════════════════════════════════ */

.video-showcase {
	max-width: 1050px;
	margin: 0 auto;
}

.video-frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(65, 105, 225, 0.15),
	            0 10px 20px rgba(0, 0, 0, 0.1);
	background: #000;
}

.video-frame::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: linear-gradient(135deg, #4169E1 0%, #8B5CF6 50%, #FF6B35 100%);
	border-radius: 24px;
	z-index: -1;
	opacity: 0.6;
}

.video-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.video-info-icon {
	color: #FF0000;
	font-size: 1.5rem;
}

.video-info-text {
	color: var(--text-light, #64748b);
	font-size: 0.95rem;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   VISION COMMUNE — Shared Directors' Block
   ═══════════════════════════════════════════════════════════ */

.philosophy-section {
	position: relative;
	padding: 2rem 0 5rem 0;
}

.vision-commune {
	position: relative;
	max-width: 1400px;
	margin: 0 auto 4rem;
	padding: 3rem;
	background: transparent;
	border-radius: 28px;
	display: flex;
	align-items: center;
	gap: 3rem;
}

.vision-commune-photo {
	flex-shrink: 0;
	width: 360px;
	height: 420px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.vision-commune-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.vision-commune-content {
	flex: 1;
}

.vision-commune-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #2F51AF;
	margin-bottom: 1rem;
}

.vision-commune-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 700;
	font-style: italic;
	color: #1a202c;
	margin: 0 0 1.5rem;
	line-height: 1.4;
}

.vision-commune-title .vc-green {
	color: var(--color-maternelle, #10B981);
}

.vision-commune-title .vc-purple {
	color: var(--color-primaire, #8B5CF6);
}

.vision-commune-title .vc-pink {
	color: #e84393;
}

.vision-commune-text p {
	font-family: 'Nunito', sans-serif;
	font-size: 1.02rem;
	line-height: 1.75;
	color: #4a5568;
	margin: 0 0 0.85rem;
}

.vision-commune-text p:last-child {
	margin-bottom: 0;
}

.vision-commune-credit {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px dashed #cbd5e1;
	font-family: 'Caveat', cursive;
	font-size: 1.15rem;
	color: #718096;
}

/* ═══════════════════════════════════════════════════════════
   DIRECTORS' MESSAGE CARDS
   ═══════════════════════════════════════════════════════════ */

.directions-section {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.direction-card {
	position: relative;
	padding: 2.5rem;
	background: white;
	border-radius: 24px;
	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.02),
		0 15px 40px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: var(--transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
	animation: card-rise 1s ease-out backwards;
}

.direction-card:nth-child(1) { animation-delay: 0.2s; }
.direction-card:nth-child(2) { animation-delay: 0.4s; }

.direction-card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 8px 12px rgba(0, 0, 0, 0.04),
		0 25px 60px rgba(0, 0, 0, 0.1);
}

/* Card header with avatar */
.direction-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.direction-avatar {
	width: 105px;
	height: 105px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	flex-shrink: 0;
	overflow: hidden;
}

.direction-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.maternelle .direction-avatar {
	background: linear-gradient(135deg, #10B981, #059669);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.primaire .direction-avatar {
	background: linear-gradient(135deg, #8B5CF6, #7C3AED);
	box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.direction-title-group h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 0.25rem;
}

.direction-title-group span {
	font-size: 0.85rem;
	color: #718096;
	font-weight: 500;
}

/* Quote content */
.direction-quote {
	position: relative;
	margin-bottom: 1.5rem;
}

.direction-quote .direction-tagline {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 600;
	font-style: italic;
	color: #2d3748;
	line-height: 1.5;
	margin: 0 0 1rem;
}

.maternelle .direction-tagline {
	color: #059669;
}

.primaire .direction-tagline {
	color: #7C3AED;
}

.direction-quote p {
	font-family: 'Nunito', sans-serif;
	font-size: 0.97rem;
	line-height: 1.7;
	color: #4a5568;
	margin: 0 0 0.7rem;
}

.direction-quote p:last-child {
	margin-bottom: 0;
}

/* Signature line */
.direction-signature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px dashed #e2e8f0;
}

.signature-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, #e2e8f0, transparent);
}

.signature-name {
	font-family: 'Caveat', cursive;
	font-size: 1.2rem;
	color: #718096;
}

/* Decorative corner flourish */
.direction-flourish {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 3rem;
	opacity: 0.06;
	transform: rotate(-15deg);
}

.maternelle .direction-flourish { color: #10B981; }
.primaire .direction-flourish { color: #8B5CF6; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
	.video-frame {
		border-radius: 16px;
	}

	.video-frame::before {
		border-radius: 20px;
	}

	.video-info {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.philosophy-section {
		padding: 3rem 0;
	}

	.vision-commune {
		flex-direction: column;
		margin: 0 1rem 3rem;
		padding: 2rem 1.5rem;
		border-radius: 24px;
		gap: 1.5rem;
	}

	.vision-commune-photo {
		width: 100%;
		height: 240px;
		border-radius: 16px;
	}

	.directions-section {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}

	.direction-card {
		padding: 2rem 1.5rem;
	}
}
