.top-bar {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid #e5e5e5;
	backdrop-filter: blur(6px);
}

.top-bar__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.85rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.top-bar__brand {
	font-weight: 600;
	font-size: 1.1rem;
	color: #1f2933;
	text-decoration: none;
}

.top-bar__nav {
	display: flex;
	gap: 1rem;
	font-size: 0.95rem;
}

.top-bar__nav a {
	color: #374151;
	text-decoration: none;
	padding: 0.35rem 0.5rem;
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease;
}

.top-bar__nav a:hover,
.top-bar__nav a:focus {
	background: #e5e7eb;
	color: #111827;
}

body {
	font-family: 'Open Sans', sans-serif;
}