/* ============================================
   Стили для хлебных крошек (Breadcrumbs)
   ============================================ */

.breadcrumbs-wrapper {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	margin: 15px 0;
	padding: 0 15px;
	backdrop-filter: blur(5px);
}

.breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	line-height: 1.6;
}

/* Ссылки в хлебных крошках */
.breadcrumbs a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
}

.breadcrumbs a:hover {
	color: #bfdb04;
}

.breadcrumbs a:hover::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 1px;
	background: #bfdb04;
}

/* Разделитель */
.breadcrumbs span {
	color: #666;
	margin: 0 4px;
}

/* Текущая страница */
.breadcrumbs strong {
	color: #bfdb04;
	font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
	.breadcrumbs-wrapper {
		padding: 0 10px;
		margin: 10px 0;
	}

	.breadcrumbs {
		font-size: 13px;
		gap: 6px;
	}

	.breadcrumbs span {
		margin: 0 2px;
	}
}

@media (max-width: 480px) {
	.breadcrumbs {
		font-size: 12px;
	}
}

/* Hover эффект для всего блока */
.breadcrumbs-wrapper:hover {
	background: rgba(0, 0, 0, 0.4);
}

/* Анимация появления */
.breadcrumbs-wrapper {
	animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Микроразметка (скрыть meta теги если они видны) */
.breadcrumbs meta {
	display: none;
}

/* Улучшение для screen readers */
.breadcrumbs-wrapper[aria-label] {
	position: relative;
}

/* Иконка домика для главной (опционально) */
.breadcrumbs a[href="/"]::before,
.breadcrumbs a[href="https://lordffilm.net/"]::before {
	content: "🏠 ";
	margin-right: 4px;
}
