/* Shared navbar styles for all pages using includes/common-navbar.html */
.navbar {
	background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(201, 75, 126, 0.28) 100%);
	box-shadow: 0 4px 26px rgba(255, 107, 157, 0.25);
	padding: 18px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-content,
.navbar-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand,
.navbar-brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.brand img,
.navbar img {
	height: 46px;
	width: auto;
	background: rgba(255,255,255,0.75);
	padding: 8px;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(201, 75, 126, 0.2);
	backdrop-filter: blur(8px);
}

.brand span,
.brand-name {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: white;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 9px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.16);
	box-shadow: 0 10px 26px rgba(0,0,0,0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
	transform: translateY(-2px) scale(1.01);
	background: rgba(255, 255, 255, 0.28);
	box-shadow: 0 14px 30px rgba(201, 75, 126, 0.2);
}

.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #1f2937;
	color: #fff;
	text-decoration: none;
	padding: 9px 15px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.94rem;
	letter-spacing: 0.2px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.download-btn .download-icon {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	flex: 0 0 20px;
}

.download-btn .download-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.download-btn .download-label {
	display: inline-block;
	line-height: 1.2;
}

.download-btn:hover {
	transform: translateY(-2px);
	background: #111827;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.download-btn:active {
	transform: translateY(0);
}

@media (max-width: 640px) {
	.nav-content,
	.navbar-content {
		padding: 0 18px;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}

	.download-btn {
		width: 100%;
	}
}
