body { background-color: #201E1D; color: #ffffff; font-family: 'Inria Sans', sans-serif; }
a { color: inherit; }
/* Override Bootstrap's default 0.5 modal backdrop opacity: */
.modal-backdrop { opacity: 0.85 !important; }
.modal { cursor: zoom-out; }
.modal-content { cursor: default; }

p {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 15px;
	margin-bottom: 0.8rem;
}

h1 {
	font-size: clamp(1.6rem, 5vw, 2.2rem);
	color: #ffffff;
	font-weight: 700;
}

h2 {
	color: #ffffff;
	font-weight: 700;
}

/* Big poster-style page headline (home page, zone index): */
.home-hero-title {
	margin: 0;
	font-family: 'Archivo', sans-serif;
	color: #ffffff;
	font-variation-settings: 'wdth' 125, 'wght' 900;
	font-size: clamp(2.25rem, 9vw, 64px);
	line-height: 0.8;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	text-wrap: balance;
	text-shadow: 4.2px 4.8px 0 #f47500;
}

h3 {
	font-size: 1.3rem;
	font-weight: 700;
}

.neon-header {
	font-family: 'Vibur', cursive;
	color: #FFFFFF;
	text-transform: uppercase;
	text-shadow:
		0 0 2px #FFCCAA,
		0 0 4px #FF8866,
		0 0 8px #FF8866,
		0 0 16px #FA585F,
		0 0 32px #FA585F;
}

.search-widget-dropdown a:hover {
	background: var(--bs-tertiary-bg, #f0f0f0);
}

.suggest-btn {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1030;
	padding: 7px 15px;
	background-color: rgba(25, 0, 0, 0.25);
	backdrop-filter: blur(15px);
	border-top-left-radius: 1rem;
	user-select: none;
	cursor: pointer;
}
.suggest-btn img {
	transition: filter 0.1s ease-in-out;
}
.suggest-btn:hover img {
	filter: drop-shadow(0 0 8px rgba(255, 223, 200, 0.9)) drop-shadow(0 0 16px rgba(255, 180, 40, 0.6));
}

/* Capsule breadcrumbs — see breadcrumb_implementation.md. Sits below the navbar and
   scrolls away with the page; the bar's own spacing is Bootstrap's (py-1 mb-3) in
   base.html. The arrow separator rides the <li>, not the pill: the pill has a
   background and clips its overflow. */
.nav-crumbs {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}
.nav-crumbs li {
	display: flex;
	align-items: center;
	min-width: 0;
}
.nav-crumbs li::before {
	content: "\27A4";
	display: flex;
	align-items: center;
	line-height: 1;
	font-size: 0.7rem;
	padding: 0 0.5rem;
	color: #ffffff;
}
/* Home opens the trail, so nothing precedes it: */
.nav-crumbs li:first-child::before {
	content: none;
}

.nav-crumb {
	display: inline-block;
	padding: 0 0.75rem;
	border-radius: 999px;
	background-color: #ffbf1a;
	color: #131114;
	font-family: 'Anton', sans-serif;
	font-weight: 400;
	/* Anton is condensed and tightly fitted; a little tracking keeps it legible small: */
	letter-spacing: 0.03em;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 12rem;
}
a.nav-crumb:hover {
	background-color: #ffcf4d;
	color: #131114;
}
/* .nav-crumb-current carries no styling of its own — the current page looks like the
   rest of the trail by choice. Kept as a hook (and aria-current marks it for AT). */

/* Home + two pills and their arrows have to fit at 375px: */
@media (max-width: 767.98px) {
	.nav-crumb {
		max-width: 9rem;
	}
}

