/* custom.css */
.reveal .fragment.dim::after {
	opacity: 0.2;
	visibility: visible;
	transition: opacity 0.4s ease;
}

.reveal h2 {
	color: #002d72;
	font-size: 1.8em;
	margin-bottom: 25px;
	text-align: left;
	letter-spacing: 0.5px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.reveal h2::after {
	content: '';
	background: #002d72;
	display: block;
	width: 200px;
	height: 9px;
	margin-top: 10px;
	border-radius: 2px;
	background: linear-gradient(90deg, #002d72, #ffffff);
}

.slide-logo {
	position: fixed;
	bottom: 0px; /* 👈 moves it ABOVE the slide border */
	left: 33%;

	width: 30%;
	height: auto;

	z-index: 9999;
	pointer-events: none;

	/* optional polish */
	background: transparent;
}

.reveal .slides section {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	width: 1920px;
	height: 1080px;
}
.reveal ul {
	list-style: none; /* removes default bullets */
	padding-left: 0;
	margin-left: 0;
}

.reveal ul li {
	position: relative;
	padding-left: 55px;
	margin-bottom: 20px;
}

@font-face {
	font-family: 'NerdFont';
	src: url('fonts/NF.woff2') format('woff2');
}

.reveal ul li::before {
	font-family: 'NerdFont';
	content: '';
	position: absolute;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	left: 0;
	color: #3360a5; /* matches your theme */
	font-size: 0.85em;
	line-height: 1;
	margin-top: 10px;
}

.reveal ol.roman {
	list-style-type: lower-roman;
	position: absolute;
	left: 0;
}

.reveal ol.roman li::marker {
	color: #3360a5;
	font-weight: bold;
	font-size: 0.85em;
}

.reveal ol.roman li::before {
}
.reveal ol li {
	padding-left: 55px;
	margin-bottom: 20px;
}
.reveal p.bar-left::after {
	content: '';
	display: block;
	width: 20%;
	height: 9px;
	margin-top: 50px;
	border-radius: 2px;
	background: linear-gradient(90deg, #002d72, #ffffff);
}
.reveal p.bar-right::after {
	content: '';
	display: block;
	width: 20%;
	height: 9px;
	margin-top: 50px;
	border-radius: 2px;
	background: linear-gradient(90deg, #ffffff, #002d72);
}

.reveal .section-indicator {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);

	font-size: 0.5em;
	font-style: italic;
	font-weight: 700;
	color: #333333;

	padding: 0.2em 0.8em;

	z-index: 1000;
	pointer-events: none;
}

.reveal .slide-number {
	bottom: 20px;
	right: 20px;

	font-size: 0.5em;
	color: #333333;
	font-style: italic;
	background: transparent;
}

.blue-nf {
	font-family: 'NerdFont';
	color: #3360a5; /* matches your theme */
}

.fig-caption {
	font-size: 23px;
	text-align: left;
}

.sub-title-slide {
	font-size: 50px;
	font-weight: 600;
}

.shadow-img {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

ul.results li::before {
	font-family: 'NerdFont';
	content: '';
	position: absolute;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	left: 0;
	color: #f1b434; /* matches your theme */
	font-size: 0.7em;
	line-height: 1;
	margin-top: 10px;
	margin-bottom: 10px;
}
ul.results li {
	margin: 0;
}
.nice-box {
	background: linear-gradient(145deg, #ffffff, #f8fafc);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 16px;
	padding: 20px;
	box-shadow:
		0 10px 25px rgba(15, 23, 42, 0.08),
		0 4px 10px rgba(15, 23, 42, 0.04);
	transition: all 0.3s ease;
}

/* Optional hover effect */
.nice-box:hover {
	transform: translateY(-4px);
	box-shadow:
		0 16px 35px rgba(15, 23, 42, 0.12),
		0 6px 14px rgba(15, 23, 42, 0.06);
}

.split2 {
	display: flex;
	overflow: hidden;
	margin-top: 2px;
}
