/* EduKaczka Hero Mascot Block — frontend + editor styles */

.edukaczka-hero-mascot {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ehm-illustration {
	position: relative;
	width: 100%;
	height: 500px;
}

/* Floating cards */
.ehm-floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: #35334A;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	font-weight: 600;
	font-size: 0.9rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	animation: ehm-float 4s ease-in-out infinite;
	z-index: 2;
}

.ehm-floating-card--1 { top: 10%; right: 10%; animation-delay: 0s; }
.ehm-floating-card--2 { top: 45%; left: 5%; animation-delay: 1s; }
.ehm-floating-card--3 { bottom: 15%; right: 15%; animation-delay: 2s; }

.ehm-card-emoji { font-size: 1.5rem; }

@keyframes ehm-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

/* Mascot */
.ehm-mascot-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.ehm-mascot {
	font-size: 10rem;
	line-height: 1;
	animation: ehm-bounce 3s ease-in-out infinite;
	filter: drop-shadow(0 0 30px rgba(245, 184, 149, 0.4));
}

.ehm-mascot-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(135, 206, 235, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	animation: ehm-glow-pulse 3s ease-in-out infinite;
	z-index: 0;
}

@keyframes ehm-bounce {
	0%, 100% { transform: scale(1) rotate(-5deg); }
	50% { transform: scale(1.05) rotate(5deg); }
}

@keyframes ehm-glow-pulse {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Responsive — hide on mobile (same as prototype) */
@media (max-width: 768px) {
	.edukaczka-hero-mascot {
		display: none;
	}
}
