/**
 * Footer backup-power marquee bar.
 *
 * Animated ticker shown above the footer announcing the hotel's
 * uninterrupted electricity service. Originally inline in footer.php.
 *
 * @package mirak-hotel
 */

.footer__backup__power__bar {
	width: 100%;
	background: var(--btn-1, #AB8A62);
	color: #fff;
	padding: 14px 0;
	font-size: 14px;
	font-weight: 600;
	overflow: hidden;
	position: relative;
	z-index: 5;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer__bp__marquee {
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
	        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.footer__bp__track {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	animation: bp-marquee 40s linear infinite;
	will-change: transform;
}
.footer__bp__track:hover { animation-play-state: paused; }
@keyframes bp-marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(50%); }
}

.footer__bp__item {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	color: #fff !important;
	flex-shrink: 0;
}
.footer__bp__item svg {
	flex-shrink: 0;
	fill: #fff;
	color: #fff;
	width: 18px;
	height: 18px;
	animation: bp-bolt-spark 1.5s ease-in-out infinite;
}
@keyframes bp-bolt-spark {
	0%, 100% { transform: rotate(0) scale(1); filter: drop-shadow(0 0 0 rgba(255,215,0,0)); }
	50%      { transform: rotate(-5deg) scale(1.15); filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)); }
}

.footer__bp__sep {
	color: rgba(255,255,255,0.6);
	font-size: 12px;
	flex-shrink: 0;
	animation: bp-sep-spin 4s linear infinite;
	display: inline-block;
}
@keyframes bp-sep-spin {
	from { transform: rotate(0); }
	to   { transform: rotate(360deg); }
}

@media (max-width: 768px) {
	.footer__backup__power__bar { font-size: 12px; padding: 10px 0; }
	.footer__bp__track { animation-duration: 25s; gap: 20px; }
	.footer__bp__item svg { width: 14px; height: 14px; }
}
