/* -------------------------------------------------------------------------- */
/*                                 1. SETUP                                   */
/* -------------------------------------------------------------------------- */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* Variables */
:root {
	/* Palette */
	--color-black: #000000;
	--color-white: #ffffff;
	--color-blue-night: #0a1628;
	--color-red-dark: #8b0000;

	/* Spacing */
	--spacing-section: clamp(4rem, 8vw, 8rem);
	--spacing-container: 2rem;

	/* Typography */
	--font-serif: 'Instrument Serif', serif;
	--font-sans: 'Instrument Sans', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	background-color: var(--color-white);
	color: var(--color-black);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* Utilities */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--spacing-container);
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* -------------------------------------------------------------------------- */
/*                                 2. HEADER                                  */
/* -------------------------------------------------------------------------- */
.site-header {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--spacing-container);
}

.logo-text {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.main-navigation ul {
	display: flex;
	gap: 2rem;
}

.main-navigation a {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 4px;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--color-white);
	transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
	width: 100%;
}

/* -------------------------------------------------------------------------- */
/*                                  3. HERO                                   */
/* -------------------------------------------------------------------------- */
/* Bannière Hero - Utilisation unique de l'image */
.hero-banner-section {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: var(--color-black);
	margin-bottom: 0;
}

.hero-banner-container {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 85vh;
	max-height: 90vh;
}

.hero-banner-image {
	width: 100%;
	height: 100%;
	min-height: 85vh;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: grayscale(100%) brightness(0.7);
}

.hero-date-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	text-align: center;
	pointer-events: none;
}

.hero-section {
	width: 100%;
	min-height: 90vh;
	/* Grand espace percutant */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: var(--spacing-section) 0;
}

/* Date énorme */
.hero-date-container {
	position: relative;
	line-height: 0.8;
	text-align: center;
	margin-bottom: 4rem;
}

.hero-date {
	font-family: var(--font-serif);
	font-size: clamp(60px, 15vw, 250px);
	font-weight: 400;
	color: var(--color-black);
	/* Animation unique : noir → flou → blanc */
	animation: date-pulse 4s ease-in-out forwards;
	line-height: 0.85;
	filter: blur(0px);
	will-change: color, filter;
	transform: translateZ(0);
}

/* Le Zéro avec effet spécial */
.hero-zero {
	position: relative;
	display: inline-block;
	/* Hérite de l'animation du parent .hero-date */
}

/* Frise de portraits (Band under hero) */
.hero-frieze {
	width: 100%;
	overflow: hidden;
	margin-top: auto;
	padding: 2rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.frieze-track {
	display: flex;
	gap: 1rem;
	/* Animation de défilement ou juste statique centré ? */
	justify-content: center;
	flex-wrap: wrap;
}

.frieze-img {
	height: 100px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: opacity 0.3s;
}

.frieze-img:hover {
	opacity: 1;
}

/* -------------------------------------------------------------------------- */
/*                                4. NARRATIVE                                */
/* -------------------------------------------------------------------------- */
.narrative-section {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: var(--spacing-section) 2rem;
	position: relative;
	z-index: 10;
}

/* Effet Overlap avec marge négative */
.narrative-section+.narrative-section {
	padding-top: calc(var(--spacing-section) + 4rem);
	margin-top: -4rem;
	/* Overlap */
}

.narrative-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.narrative-slogan {
	font-family: var(--font-sans);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 2rem;
	color: #888;
}

.narrative-content h2,
.section-title {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 400;
	margin-bottom: 3rem;
	line-height: 1.1;
}

.narrative-content p {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	line-height: 1.8;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* -------------------------------------------------------------------------- */
/*                                 5. MEDIA                                   */
/* -------------------------------------------------------------------------- */

/* Video */
.video-section {
	position: relative;
	width: 100%;
	background-color: var(--color-black);
	padding: 0;
}

.video-wrapper {
	width: 100%;
	height: 80vh;
	position: relative;
	overflow: hidden;
}

.video-wrapper video,
.video-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
	/* Sombre */
}

.video-caption {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	color: var(--color-white);
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	z-index: 2;
}

/* Gallery Grid */
.gallery-section {
	padding: var(--spacing-section) 0;
	background-color: var(--color-white);
}

.gallery-grid {
	display: grid;
	/* Desktop: 9 images in 1 row (scrollable) OR 3x3 ? 
	   "Une rangée sur desktop" imply horizontal rhythm. Let's try 3x3 for balanced grid if 9 images.
	   Or flex row with wrap?
	   Prompt says: "alignées en une rangée". Maybe a horizontal strip.
	   Let's do a scrolling strip for "one row" feel */
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 2rem;
	scrollbar-width: thin;
}

.gallery-item {
	flex: 0 0 300px;
	/* Fixed width for strip */
	aspect-ratio: 1;
	/* Square */
	background-color: #eee;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	filter: grayscale(100%);
}

.gallery-item:hover img {
	transform: scale(1.05);
	filter: grayscale(0%);
}

/* -------------------------------------------------------------------------- */
/*                              6. QUOTES & DATA                              */
/* -------------------------------------------------------------------------- */

/* Quotes Wall */
.quotes-section {
	background-color: var(--color-black);
	padding: var(--spacing-section) 0;
}

/* Si quotes-section contient des fact-check-boxes, fond noir */
.quotes-section .fact-check-box {
	background-color: transparent;
}

.quotes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* 4 cols desktop */
	gap: 2rem;
}

/* Dans quotes-grid avec fact-check-box, prendre toute la largeur */
.quotes-grid .fact-check-box {
	grid-column: 1 / -1;
}

.quote-card {
	background-color: var(--color-white);
	border-left: 4px solid var(--color-black);
	padding: 2rem;
	position: relative;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quote-mark {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-family: var(--font-serif);
	font-size: 6rem;
	color: rgba(0, 0, 0, 0.05);
	/* Filigrane */
	line-height: 1;
}

.quote-text {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	color: var(--color-black);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.quote-author {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-black);
}

/* Crawl Text - Bandeau d'information défilant */
.crawl-container {
	width: 100%;
	height: 60px;
	overflow: hidden;
	background: var(--color-black);
	color: var(--color-white);
	position: relative;
	display: flex;
	align-items: center;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.crawl-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.crawl-content {
	display: flex;
	width: fit-content;
	white-space: nowrap;
	animation: crawl-scroll-horizontal 40s linear infinite;
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 0.95rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	will-change: transform;
	transform: translateZ(0);
}

.crawl-text {
	display: inline-block;
	padding-right: 80px; /* Espacement entre les répétitions */
	color: var(--color-white);
	opacity: 0.95;
}

@keyframes crawl-scroll-horizontal {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Effet de fondu sur les bords pour un rendu plus professionnel */
.crawl-container::before,
.crawl-container::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 10;
	pointer-events: none;
}

.crawl-container::before {
	left: 0;
	background: linear-gradient(to right, var(--color-black), transparent);
}

.crawl-container::after {
	right: 0;
	background: linear-gradient(to left, var(--color-black), transparent);
}

/* -------------------------------------------------------------------------- */
/*                                 7. FOOTER                                  */
/* -------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--color-blue-night);
	color: var(--color-white);
	padding: 4rem 2rem;
	text-align: center;
}

.footer-logo {
	margin-bottom: 2rem;
	/* Placeholder for White House style logo */
	font-family: var(--font-serif);
	font-size: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
	padding: 1rem 2rem;
}

.footer-nav ul {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-nav a:hover {
	color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/*                                8. ANIMATIONS                               */
/* -------------------------------------------------------------------------- */

@keyframes date-pulse {
	0% {
		color: rgba(0, 0, 0, 1);
		opacity: 1;
		filter: blur(0px);
		text-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
	/* Reste noir pendant 1 seconde (25% de 4s) */
	25% {
		color: rgba(0, 0, 0, 1);
		opacity: 1;
		filter: blur(0px);
		text-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
	/* Début du flou (1.5s - 37.5%) */
	37.5% {
		color: rgba(0, 0, 0, 1);
		opacity: 1;
		filter: blur(5px);
		text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	}
	/* Transition vers blanc avec flou (2s - 50%) */
	50% {
		color: rgba(128, 128, 128, 0.8);
		opacity: 1;
		filter: blur(8px);
		text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
	}
	/* Continue la transition (2.5s - 62.5%) */
	62.5% {
		color: rgba(200, 200, 200, 0.9);
		opacity: 1;
		filter: blur(5px);
		text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
	}
	/* Blanc presque atteint (3s - 75%) */
	75% {
		color: rgba(255, 255, 255, 0.95);
		opacity: 1;
		filter: blur(2px);
		text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
	}
	/* Blanc final net (4s - 100%) */
	100% {
		color: rgba(255, 255, 255, 1);
		opacity: 1;
		filter: blur(0px);
		text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	}
}

@keyframes glitch-appear {
	0% {
		opacity: 0;
		transform: scale(0.9) skew(10deg);
		filter: blur(10px);
	}

	20% {
		transform: scale(1.1) skew(-10deg);
		filter: blur(0);
	}

	40% {
		transform: scale(0.95) skew(5deg);
	}

	60% {
		transform: scale(1.02) skew(-5deg);
	}

	80% {
		transform: scale(0.98);
	}

	100% {
		opacity: 1;
		transform: scale(1) skew(0);
		filter: blur(0);
	}
}

/* -------------------------------------------------------------------------- */
/*                               9. RESPONSIVE                                */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {

	/* Mobile Hero */
	.hero-date {
		font-size: 18vw;
	}

	/* Quotes Carousel on Mobile */
	.quotes-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		padding-bottom: 1rem;
	}

	.quote-card {
		flex: 0 0 85vw;
		/* Almost full width */
		scroll-snap-align: center;
	}

	/* Grid mobile -> 3 columns requested for gallery?
       Prompt: "trois colonnes sur mobile" for gallery 
       But current gallery is a strip. Let's make it a grid of 3 cols. */
	.gallery-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		overflow: visible;
		gap: 0.5rem;
	}

	.gallery-item {
		flex: none;
		aspect-ratio: 1;
	}

	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}

	.main-navigation ul {
		gap: 1rem;
		font-size: 0.8rem;
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Typographie */
/* Utilisation de polices web-safe proches d'Instrument Serif et Sans */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-black);
	background-color: var(--color-white);
	overflow-x: hidden;
}

/* En-tête sombre */
.site-header {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-navigation ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.main-navigation a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: opacity 0.3s ease;
}

.main-navigation a:hover {
	opacity: 0.7;
}

.main-navigation a.active {
	border-bottom: 2px solid var(--color-white);
	padding-bottom: 0.3rem;
}

/* Section Hero */
.hero-section {
	background-color: var(--color-white);
	padding: 8rem 2rem;
	text-align: center;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero-date {
	font-family: 'Playfair Display', 'Times New Roman', serif;
	font-size: clamp(120px, 25vw, 400px);
	font-weight: 900;
	color: var(--color-white);
	line-height: 0.9;
	margin-bottom: 2rem;
	/* animation: glitch-effect 0.3s ease-in-out; */
	animation: blur-in 1.5s ease-out forwards;
	position: relative;
	opacity: 0;
	/* Part of fade in */
}

@keyframes blur-in {
	0% {
		filter: blur(20px);
		opacity: 0;
		transform: scale(0.95);
	}

	100% {
		filter: blur(0);
		opacity: 1;
		transform: scale(1);
	}
}

/* 
@keyframes glitch-effect {
	0%, 100% {
		transform: translate(0);
	}
	20% {
		transform: translate(-2px, 2px);
	}
	40% {
		transform: translate(-2px, -2px);
	}
	60% {
		transform: translate(2px, 2px);
	}
	80% {
		transform: translate(2px, -2px);
	}
}
*/

.hero-title {
	font-family: 'Inter', sans-serif;
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: fade-in-up 1s ease-out 0.3s forwards;
}

.hero-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 400;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0;
	animation: fade-in-up 1s ease-out 0.6s forwards;
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px) translateZ(0);
	}

	to {
		opacity: 1;
		transform: translateY(0) translateZ(0);
	}
}

/* Section image hero */
.hero-image-section {
	background-color: var(--color-white);
	padding: 0;
	position: relative;
	margin-top: -5rem;
	z-index: 10;
}

.hero-main-image {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%) contrast(1.2);
	object-fit: cover;
	max-height: 70vh;
}

/* Sections narratives sombres */
.narrative-section {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 6rem 2rem;
	position: relative;
	margin-top: -3rem;
}

.narrative-section:nth-child(even) {
	margin-top: -2rem;
}

.section-heading {
	font-family: 'Inter', sans-serif;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	text-align: center;
	margin-bottom: 4rem;
	text-transform: uppercase;
	letter-spacing: 4px;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
}

.narrative-content {
	max-width: 900px;
	margin: 0 auto;
	opacity: 0;
	animation: fade-in-up 1s ease-out 0.3s forwards;
}

.narrative-content h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	margin-bottom: 2rem;
	margin-top: 3rem;
	color: var(--color-white);
}

.narrative-content p {
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: justify;
}

/* Section citations */
.quotes-section {
	background-color: var(--color-white);
	padding: 6rem 2rem;
	position: relative;
	margin-top: -3rem;
}

.quotes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.quote-card {
	background-color: var(--color-white);
	border: 3px solid var(--color-black);
	padding: 2.5rem;
	position: relative;
	margin: 0;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:nth-child(1) {
	animation-delay: 0.1s;
}

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

.quote-card:nth-child(3) {
	animation-delay: 0.3s;
}

.quote-card:nth-child(4) {
	animation-delay: 0.4s;
}

.quote-card:nth-child(5) {
	animation-delay: 0.5s;
}

.quote-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-card::before {
	content: '"';
	font-family: 'Playfair Display', serif;
	font-size: 120px;
	font-weight: 900;
	color: var(--color-black);
	opacity: 0.1;
	position: absolute;
	top: -20px;
	left: 20px;
	line-height: 1;
}

.quote-text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--color-black);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.quote-source {
	font-size: 14px;
	color: #666;
	font-style: italic;
	text-align: right;
	position: relative;
	z-index: 1;
}

/* Section documents */
.documents-section {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 6rem 2rem;
	position: relative;
	margin-top: -3rem;
}

.documents-section .section-heading {
	color: var(--color-white);
}

.documents-section article {
	max-width: 900px;
	margin: 0 auto 4rem;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
}

.documents-section article:nth-child(2) {
	animation-delay: 0.1s;
}

.documents-section article:nth-child(3) {
	animation-delay: 0.2s;
}

.documents-section article:nth-child(4) {
	animation-delay: 0.3s;
}

.documents-section article:nth-child(5) {
	animation-delay: 0.4s;
}

.documents-section article:nth-child(6) {
	animation-delay: 0.5s;
}

.documents-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--color-white);
}

.documents-section ul {
	list-style: none;
	padding-left: 0;
}

.documents-section li {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
}

.documents-section li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--color-white);
	font-weight: bold;
}

/* Footer bleu nuit */
.site-footer {
	background-color: var(--color-blue-night);
	color: var(--color-white);
	padding: 4rem 2rem 2rem;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-content p {
	font-size: 16px;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.footer-navigation ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-navigation a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: opacity 0.3s ease;
}

.footer-navigation a:hover {
	opacity: 0.7;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.hero-section {
		padding: 4rem 1rem;
		min-height: 50vh;
	}

	.hero-date {
		font-size: clamp(80px, 30vw, 200px);
	}

	.main-navigation ul {
		gap: 1rem;
		padding: 0 1rem;
	}

	.main-navigation a {
		font-size: 0.75rem;
	}

	.narrative-section {
		padding: 4rem 1rem;
	}

	.quotes-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		overflow-x: auto;
		display: flex;
		scroll-snap-type: x mandatory;
		padding-bottom: 1rem;
	}

	.quote-card {
		min-width: 85%;
		scroll-snap-align: start;
		flex-shrink: 0;
	}

	.hero-image-section {
		margin-top: -3rem;
	}

	.hero-main-image {
		max-height: 50vh;
	}

	.narrative-section:nth-child(even) {
		margin-top: -1rem;
	}

	.section-heading {
		letter-spacing: 2px;
		margin-bottom: 3rem;
	}

	.narrative-content {
		text-align: left;
	}

	.narrative-content p {
		text-align: left;
	}
}

/* Responsive - Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
	.quotes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-date {
		font-size: clamp(150px, 20vw, 300px);
	}
}

/* Animations au scroll - Intersection Observer fallback */
@media (prefers-reduced-motion: no-preference) {

	.narrative-content,
	.quote-card,
	.documents-section article {
		will-change: opacity, transform;
	}
}

/* Accessibilité - Contraste */
@media (prefers-contrast: high) {
	.quote-card {
		border-width: 4px;
	}

	.main-navigation a,
	.footer-navigation a {
		text-decoration: underline;
	}
}

/* Styles pour compatibilité avec les autres pages */
.content-section-black,
.content-black {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 6rem 2rem;
	position: relative;
	margin-top: -3rem;
}

.content-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.content-section-black .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.card {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 2rem;
	margin-bottom: 2rem;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
}

.card h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--color-white);
}

.card p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.card ul {
	margin-left: 1.5rem;
	margin-top: 1rem;
}

.card li {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 0.75rem;
}

.section-header {
	background-color: var(--color-white);
	padding: 6rem 2rem 4rem;
	text-align: center;
}

.section-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 900;
	color: var(--color-black);
	margin-bottom: 1rem;
}

.section-header p {
	font-family: 'Inter', sans-serif;
	font-size: clamp(18px, 2.5vw, 24px);
	color: #666;
}

.fact-check-item {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 2rem;
	margin-bottom: 2rem;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
}

.fact-check-item h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--color-white);
}

.timeline {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.timeline-item {
	background-color: rgba(255, 255, 255, 0.05);
	border-left: 4px solid var(--color-white);
	padding: 1.5rem 2rem;
	margin-bottom: 2rem;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
}

.timeline-time {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.timeline-content h4 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-white);
}

.timeline-content p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 0.75rem;
}

/* Styles pour analyse.html et mensonges.html - Fact-check boxes */
.fact-check-box {
	max-width: 1400px;
	margin: 3rem auto;
	padding: 0 2rem;
	opacity: 0;
	animation: fade-in-up 1s ease-out forwards;
}

/* Dans quotes-grid, ajuster le max-width */
.quotes-grid .fact-check-box {
	max-width: 100%;
	padding: 0;
}

.fact-check-box h3 {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 2rem;
	color: var(--color-white);
	text-align: center;
}

/* Desktop: Layout côte à côte - masquer les flip cards */
.fact-check-box-content {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.fact-check-flip-card {
	display: none;
}

.claim-section {
	flex: 1;
	background: var(--color-white);
	border: 1px solid var(--color-black);
	padding: 2rem;
	min-height: 300px;
	display: flex;
	flex-direction: column;
}

.reality-section {
	flex: 1;
	background: var(--color-black);
	color: var(--color-white);
	border: 1px solid var(--color-white);
	padding: 2rem;
	min-height: 300px;
	display: flex;
	flex-direction: column;
}

.claim-label,
.reality-label {
	font-weight: 700;
	color: var(--color-black);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	font-family: var(--font-sans);
}

.reality-label {
	color: var(--color-white);
}

.claim-section p,
.reality-section p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--color-black);
	flex: 1;
}

.reality-section p {
	color: var(--color-white);
}

.reality-section ul {
	color: var(--color-white);
	margin-left: 1.5rem;
	margin-top: 1rem;
	flex: 1;
}

.reality-section li {
	color: var(--color-white);
	margin-bottom: 0.75rem;
}

.reality-section strong {
	color: var(--color-white);
	font-weight: 600;
}

.reality-section h4 {
	color: var(--color-white);
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.fact-check-flip-card-back h4 {
	color: var(--color-white);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Mobile: Cartes qui se retournent - masquer le layout desktop */
@media (max-width: 768px) {
	.fact-check-box-content {
		display: none !important;
	}

	.fact-check-flip-card {
		display: block !important;
		background-color: transparent;
		width: 100%;
		height: auto;
		perspective: 1000px;
		margin-bottom: 2rem;
		position: relative;
	}

	.fact-check-flip-card-inner {
		position: relative;
		width: 100%;
		height: 100%;
		text-align: center;
		transition: transform 0.6s;
		transform-style: preserve-3d;
		cursor: pointer;
		min-height: 450px;
		will-change: transform;
		transform: translateZ(0);
	}

	.fact-check-flip-card.flipped .fact-check-flip-card-inner {
		transform: rotateY(180deg);
	}

	.fact-check-flip-card-front,
	.fact-check-flip-card-back {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		padding: 2.5rem;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}

	.fact-check-flip-card-front {
		background: var(--color-white);
		border: 1px solid var(--color-black);
		color: var(--color-black);
	}

	.fact-check-flip-card-back {
		background: var(--color-black);
		border: 1px solid var(--color-white);
		color: var(--color-white);
		transform: rotateY(180deg);
	}

	.fact-check-flip-card-front .claim-label,
	.fact-check-flip-card-back .reality-label {
		margin-bottom: 1rem;
		font-weight: 700;
		text-transform: uppercase;
		font-size: 0.75rem;
		letter-spacing: 2px;
		font-family: var(--font-sans);
	}

	.fact-check-flip-card-front .claim-label {
		color: var(--color-black);
	}

	.fact-check-flip-card-back .reality-label {
		color: var(--color-white);
	}

	.fact-check-flip-card-front p,
	.fact-check-flip-card-back p {
		font-size: 14px;
		line-height: 1.7;
		flex: 1;
	}

	.fact-check-flip-card-front p {
		color: var(--color-black);
	}

	.fact-check-flip-card-back p {
		color: var(--color-white);
	}

	.fact-check-flip-card-back ul {
		text-align: left;
		margin-left: 1.5rem;
		margin-top: 1rem;
		color: var(--color-white);
		flex: 1;
	}

	.fact-check-flip-card-back li {
		margin-bottom: 0.75rem;
		color: var(--color-white);
	}

	.fact-check-flip-card-back strong {
		color: var(--color-white);
		font-weight: 600;
	}

	/* Indicateur de retournement */
	.fact-check-flip-card-front::after {
		content: '↻ Appuyer pour retourner';
		position: absolute;
		bottom: 1rem;
		right: 1rem;
		font-size: 0.75rem;
		color: #666;
		pointer-events: none;
		font-family: var(--font-sans);
		z-index: 10;
	}

	.fact-check-flip-card.flipped .fact-check-flip-card-front::after {
		display: none;
	}
}

/* Proclamation box */
.proclamation-box {
	background-color: var(--color-white);
	border: 2px solid var(--color-black);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.proclamation-box h3 {
	font-family: 'Playfair Display', serif;
	color: var(--color-black);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.proclamation-text {
	font-family: 'Playfair Display', serif;
	color: var(--color-black);
	font-size: 18px;
	line-height: 1.8;
}

.proclamation-text p {
	color: var(--color-black);
	margin-bottom: 1rem;
}

.proclamation-text ul {
	color: var(--color-black);
	margin-left: 1.5rem;
	margin-top: 0.5rem;
}

.proclamation-text li {
	color: var(--color-black);
	margin-bottom: 0.5rem;
}

.signature {
	text-align: right;
	margin-top: 2rem;
	font-style: italic;
	color: #666;
}

.signature p {
	color: #666;
}

/* Victims list */
.victims-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

.victim-item {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
	color: var(--color-white);
	line-height: 1.7;
}

.victim-item strong {
	color: var(--color-white);
	font-weight: 600;
	font-size: 1.1rem;
	display: block;
	margin-bottom: 0.5rem;
}

.highlight {
	color: rgba(255, 255, 255, 0.9);
	background-color: rgba(139, 0, 0, 0.3);
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 500;
}

/* Warning box */
.warning-box {
	background-color: rgba(255, 250, 240, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.warning-box h4 {
	color: var(--color-white);
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.warning-box ul {
	color: var(--color-white);
	margin-left: 1.5rem;
}

.warning-box li {
	color: var(--color-white);
	margin-bottom: 0.75rem;
}

.pardon-recidivism {
	background-color: rgba(255, 245, 245, 0.1);
	border: 1px solid rgba(139, 0, 0, 0.3);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.pardon-recidivism p {
	color: var(--color-white);
	margin-bottom: 1rem;
	line-height: 1.7;
}

.pardon-recidivism h4 {
	color: var(--color-white);
	margin-bottom: 1rem;
	margin-top: 1.5rem;
	font-weight: 600;
	font-size: 1.2rem;
}

.pardon-recidivism ul {
	color: var(--color-white);
	margin-left: 1.5rem;
}

.pardon-recidivism li {
	color: var(--color-white);
	margin-bottom: 0.75rem;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 2rem;
	text-align: left;
}

.section-intro {
	font-size: 18px;
	line-height: 1.8;
	color: var(--color-white);
	margin-bottom: 2rem;
}

/* Report quotes */
.report-quotes {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 12px;
	margin: 3rem 0;
}

.report-quotes h3 {
	color: var(--color-white);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.sources-list {
	list-style: none;
	padding: 0;
}

.sources-list li {
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
	color: var(--color-white);
}

.sources-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--color-white);
	font-weight: bold;
}

.sources-list a {
	color: var(--color-white);
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.sources-list a:hover {
	opacity: 0.7;
}

/* Classes utilitaires */
.has-text-align-left {
	text-align: left;
}

.justified {
	text-align: justify;
}

.fade-in-on-scroll {
	opacity: 1;
}

/* Impression */
@media print {

	.site-header,
	.site-footer {
		background-color: var(--color-white);
		color: var(--color-black);
	}

	.narrative-section {
		background-color: var(--color-white);
		color: var(--color-black);
	}

	.quotes-section {
		page-break-inside: avoid;
	}

	.quote-card {
		page-break-inside: avoid;
		border-color: var(--color-black);
	}
}

/* -------------------------------------------------------------------------- */
/*                                10. TABLES                                  */
/* -------------------------------------------------------------------------- */
.data-table-container {
	overflow-x: auto;
	margin: 2rem 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	background: var(--color-white);
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	font-family: var(--font-sans);
}

.data-table th,
.data-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}

.data-table th {
	background-color: var(--color-black);
	color: var(--color-white);
	font-family: var(--font-serif);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	position: relative;
	user-select: none;
}

.data-table th:hover {
	background-color: #333;
}

.data-table th::after {
	content: '↕';
	position: absolute;
	right: 1rem;
	opacity: 0.3;
}

.data-table th.asc::after {
	content: '↑';
	opacity: 1;
}

.data-table th.desc::after {
	content: '↓';
	opacity: 1;
}

.data-table tr:hover {
	background-color: #f9fafb;
}

.data-table td {
	color: var(--color-black);
}

/* Status badges in table */
.table-status {
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/*                               11. PROGRESS                                 */
/* -------------------------------------------------------------------------- */
.stats-container {
	display: grid;
	gap: 2rem;
	margin: 3rem 0;
}

.stat-item {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.stat-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-family: var(--font-serif);
	font-size: 1.2rem;
	color: var(--color-white);
}

.progress-bar-bg {
	width: 100%;
	height: 10px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background: var(--color-white);
	width: 0;
	transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}