/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* PDC test copy: subtle animated clinical background accents */
:root {
	--pdc-animation-teal: rgba(39, 170, 178, 0.22);
	--pdc-animation-blue: rgba(44, 91, 155, 0.16);
	--pdc-animation-line: rgba(39, 170, 178, 0.13);
}

body {
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

body::before {
	background:
		radial-gradient(circle at 10% 20%, var(--pdc-animation-teal), transparent 24%),
		radial-gradient(circle at 88% 26%, var(--pdc-animation-blue), transparent 27%),
		radial-gradient(circle at 20% 82%, rgba(39, 170, 178, 0.16), transparent 23%),
		linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 100%);
	filter: blur(1px);
	animation: pdc-soft-drift 18s ease-in-out infinite alternate;
}

body::after {
	opacity: 0.62;
	background-image:
		linear-gradient(120deg, transparent 0 47%, var(--pdc-animation-line) 48%, transparent 50% 100%),
		radial-gradient(circle, rgba(39, 170, 178, 0.18) 1.2px, transparent 1.9px);
	background-size: 112px 112px, 30px 30px;
	background-position: 0 0, 0 0;
	animation: pdc-data-flow 28s linear infinite;
}

/* Keep page content naturally stacked; the animation itself never captures events. */
.elementor-location-header,
.elementor-location-header .elementor-widget-nav-menu {
	overflow: visible !important;
}

.elementor-location-header .elementor-widget-nav-menu {
	position: relative;
	z-index: 9999 !important;
}

.elementor-location-header .sub-menu,
.elementor-location-header .elementor-nav-menu--dropdown {
	z-index: 10000 !important;
}

@keyframes pdc-soft-drift {
	0% { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: 0.72; }
	50% { transform: translate3d(1%, 1.4%, 0) scale(1.035); opacity: 0.95; }
	100% { transform: translate3d(1.7%, -0.8%, 0) scale(1.015); opacity: 0.78; }
}

@keyframes pdc-data-flow {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 260px 260px, 68px 68px; }
}

@media (prefers-reduced-motion: reduce) {
	body::before,
	body::after {
		animation: none;
	}
}
