/* MARCH TOWARD JUSTICE SPECIFIC STYLES */

.section {
	width: 100vw;
	height: 100vh;
	position: relative;
	flex-shrink: 0;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.history-section {
	background: #222;
	color: #f0f0f0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.year-huge {
	font-family: 'Oswald', sans-serif;
	font-size: 30vw;
	opacity: 0.05;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	z-index: 1;
	pointer-events: none;
}

.march-interaction-layer {
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: opacity 0.5s;
	position: absolute;
}
.march-interaction-layer.hidden {
	opacity: 0;
	pointer-events: none;
}

.history-footprints {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.mini-fp {
	font-size: 2rem;
	opacity: 0.2;
	transform: rotate(90deg);
	transition: opacity 0.3s;
}
.mini-fp.active {
	opacity: 1;
	color: var(--reflection-accent);
}

.mini-step-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid var(--reflection-accent);
	color: white;
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.1s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mini-step-btn:active {
	transform: scale(0.95);
	background: rgba(138, 14, 14, 0.2);
}
.mini-step-btn:hover {
	background: rgba(138, 14, 14, 0.1);
}

.history-card {
	width: 400px;
	max-width: calc(100vw - 48px);
	background: white;
	color: black;
	padding: 40px;
	z-index: 20;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	opacity: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% + 20px)) scale(0.95);
	transition: all 0.5s ease;
	position: absolute;
	pointer-events: none;
}
.history-card.visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	pointer-events: auto;
}

.sec-1968 {
	background: #1a1a1a;
	color: #eee;
}
.sec-2020 {
	background: #f0f0f0;
	color: #111;
}

.crowd-section {
	background: #8aa;
	overflow: hidden;
}
.crowd-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.cl-1 {
	opacity: 0.4;
	transform: scale(1.1);
}
.cl-2 {
	opacity: 0.6;
	mix-blend-mode: multiply;
	transform: translateX(100px);
}

.crowd-content {
	position: absolute;
	left: clamp(2rem, 7vw, 6rem);
	right: clamp(2rem, 7vw, 6rem);
	bottom: clamp(2.5rem, 9vh, 6rem);
	z-index: 20;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2.5rem;
}
.crowd-body {
	display: grid;
	gap: 1.5rem;
	max-width: 560px;
}
.crowd-kicker {
	font-family: 'Oswald', sans-serif;
	font-size: 0.95rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.86);
}
.crowd-text {
	font-size: clamp(1.75rem, 3.4vw, 2.6rem);
	line-height: 1.18;
	background: rgba(255,255,255,0.94);
	padding: clamp(1.5rem, 3vw, 2.2rem);
	color: #111;
	box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.crowd-cta {
	flex: none;
	align-self: flex-end;
	white-space: nowrap;
	background: var(--reflection-accent);
	color: #fff;
	border: none;
	padding: 18px 44px;
	font-family: 'Oswald', sans-serif;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	cursor: pointer;
}

/* March template: all buttons are square (border-radius 0). */
.reci-reflection-page button,
.reci-reflection-page .start-btn,
.reci-reflection-page a[class*="rounded"] {
	border-radius: 0 !important;
}

@media (max-width: 900px) {
	.history-card {
		padding: 28px;
	}
	.crowd-content {
		left: 24px;
		right: 24px;
		bottom: 32px;
		flex-direction: column;
		align-items: stretch;
	}
	.crowd-text {
		font-size: 1.35rem;
	}
	.crowd-cta {
		align-self: stretch;
		text-align: center;
	}
}
