/**
 * Global heading scroll animations
 * Applies subtle fade-in to h2–h6 in main content areas.
 * Respects prefers-reduced-motion for accessibility.
 */

/* Scoped to main content only (excludes header, footer, nav) */
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4,
.wp-block-post-content h5,
.wp-block-post-content h6,
.entry-summary h2,
.entry-summary h3,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6 {
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.5s ease-out,
		transform 0.5s ease-out;
}

.entry-content h2.is-visible,
.entry-content h3.is-visible,
.entry-content h4.is-visible,
.entry-content h5.is-visible,
.entry-content h6.is-visible,
.wp-block-post-content h2.is-visible,
.wp-block-post-content h3.is-visible,
.wp-block-post-content h4.is-visible,
.wp-block-post-content h5.is-visible,
.wp-block-post-content h6.is-visible,
.entry-summary h2.is-visible,
.entry-summary h3.is-visible,
.entry-summary h4.is-visible,
.entry-summary h5.is-visible,
.entry-summary h6.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Disable animations when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.wp-block-post-content h2,
	.wp-block-post-content h3,
	.wp-block-post-content h4,
	.wp-block-post-content h5,
	.wp-block-post-content h6,
	.entry-summary h2,
	.entry-summary h3,
	.entry-summary h4,
	.entry-summary h5,
	.entry-summary h6 {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
