/*
Theme Name: Hello Biz Child
Theme URI: https://github.com/elementor/hello-biz-child/
Description: Hello Biz Child is a child theme of Hello Biz, created by Elementor team
Author: Elementor Team
Template: hello-biz
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Version: 1.0.0
Stable tag: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-biz-child
Tags: flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready, style-variations
*/

/* Add your custom styles here */
#new-seria {
	position: relative;
	overflow: visible !important;
	animation: strongPulse 1.6s infinite ease-in-out;
	transition: all 0.3s ease;
	z-index: 1;
}

/* Silnejší glow okolo */
#new-seria::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 999px;
	border: 2px solid rgba(56, 189, 248, 0.6);
	box-shadow:
			0 0 12px rgba(56, 189, 248, 0.6),
			0 0 25px rgba(56, 189, 248, 0.4),
			0 0 40px rgba(56, 189, 248, 0.2);
	animation: strongRing 1.6s infinite ease-out;
	pointer-events: none;
	z-index: -1;
}

/* Pulzovanie (väčší scale + glow) */
@keyframes strongPulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 rgba(56, 189, 248, 0);
	}
	50% {
		transform: scale(1.08);
		box-shadow:
				0 0 20px rgba(56, 189, 248, 0.6),
				0 0 40px rgba(56, 189, 248, 0.3);
	}
}

/* Rozpínajúci sa kruh */
@keyframes strongRing {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.25);
		opacity: 0;
	}
}