/* ============================================
   Fullscreen Hero Widget Styles
   ============================================ */

.fullscreen-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Subtle overlay for better text readability */
.fullscreen-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
}

/* Content container */
.hero-content-wrapper {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
}

.hero-content-wrapper.position-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	animation: fadeInCenter 1.2s ease-out forwards;
}

.hero-content-wrapper.position-bottom {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	animation: fadeInBottom 1.2s ease-out forwards;
}

/* Heading styles */
.hero-heading {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	margin: 0;
}

/* Social Icons */
.social-icons-wrapper {
	display: flex;
	gap: 0;
	justify-content: center;
	align-items: center;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
	backdrop-filter: blur(10px);
}

.social-icon:hover {
	transform: translateY(-3px);
}

.social-icon i,
.social-icon svg {
	transition: all 0.3s ease;
}

/* Floating Shapes - Subtle, moon-like floating elements */
.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 3;
	pointer-events: none;
}

.floating-shape {
	position: absolute;
	--shape-blur: 2px;
	filter: blur(var(--shape-blur));
	border-radius: 50%;
}

/* Circular bokeh - Large */
.floating-shape.shape-1 {
	width: 288px;
	height: 288px;
	top: 8%;
	left: 12%;
	background: 
		radial-gradient(circle at center, 
			rgba(255, 255, 255, 0.7) 0%, 
			rgba(255, 255, 255, 0.5) 15%,
			rgba(255, 255, 255, 0.5) 40%,
			rgba(255, 255, 255, 0.9) 70%,
			rgba(255, 255, 255, 1) 85%,
			rgba(255, 255, 255, 0.5) 92%,
			transparent 100%);
	animation: float1 35s ease-in-out infinite, flare1 8s ease-in-out infinite;
	transform-origin: center;
}

/* Circular bokeh - Medium */
.floating-shape.shape-2 {
	width: 216px;
	height: 216px;
	top: 58%;
	right: 15%;
	background: 
		radial-gradient(circle at center, 
			rgba(255, 255, 255, 0.7) 0%, 
			rgba(255, 255, 255, 0.5) 15%,
			rgba(255, 255, 255, 0.5) 40%,
			rgba(255, 255, 255, 0.9) 70%,
			rgba(255, 255, 255, 1) 85%,
			rgba(255, 255, 255, 0.5) 92%,
			transparent 100%);
	animation: float2 40s ease-in-out infinite, flare2 10s ease-in-out infinite;
	animation-delay: -12s, -4s;
}

/* Circular bokeh - Medium-Large */
.floating-shape.shape-3 {
	width: 252px;
	height: 252px;
	bottom: 12%;
	left: 8%;
	background: 
		radial-gradient(circle at center, 
			rgba(255, 255, 255, 0.7) 0%, 
			rgba(255, 255, 255, 0.5) 25%,
			rgba(255, 255, 255, 0.5) 45%,
			rgba(255, 255, 255, 0.85) 70%,
			rgba(255, 255, 255, 1) 85%,
			rgba(255, 255, 255, 0.55) 92%,
			transparent 100%);
	animation: float3 38s ease-in-out infinite, flare3 9s ease-in-out infinite;
	animation-delay: -20s, -6s;
}

/* Circular bokeh - Small */
.floating-shape.shape-4 {
	width: 162px;
	height: 162px;
	top: 25%;
	right: 8%;
	background: 
		radial-gradient(circle at center, 
			rgba(255, 255, 255, 0.6) 0%, 
			rgba(255, 255, 255, 0.4) 15%,
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.85) 70%,
			rgba(255, 255, 255, 1) 85%,
			rgba(255, 255, 255, 0.45) 92%,
			transparent 100%);
	animation: float1 42s ease-in-out infinite, flare1 7s ease-in-out infinite;
	animation-delay: -8s, -2s;
}

/* Circular bokeh - Extra Large */
.floating-shape.shape-5 {
	width: 324px;
	height: 324px;
	top: 45%;
	left: 35%;
	background: 
		radial-gradient(circle at center, 
			rgba(255, 255, 255, 0.65) 0%, 
			rgba(255, 255, 255, 0.45) 15%,
			rgba(255, 255, 255, 0.45) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			rgba(255, 255, 255, 0.95) 85%,
			rgba(255, 255, 255, 0.5) 92%,
			transparent 100%);
	animation: float2 45s ease-in-out infinite, flare2 11s ease-in-out infinite;
	animation-delay: -25s, -7s;
}

/* Floating animations with more alien movement */
@keyframes float1 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	15% {
		transform: translate(80px, -60px) rotate(25deg) scale(1.2);
	}
	30% {
		transform: translate(-50px, 90px) rotate(-18deg) scale(0.85);
	}
	45% {
		transform: translate(100px, 30px) rotate(30deg) scale(1.1);
	}
	60% {
		transform: translate(-70px, -50px) rotate(-22deg) scale(0.9);
	}
	75% {
		transform: translate(60px, 70px) rotate(12deg) scale(1.15);
	}
	90% {
		transform: translate(-40px, -20px) rotate(-15deg) scale(0.95);
	}
}

@keyframes float2 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	12% {
		transform: translate(-90px, 70px) rotate(-28deg) scale(1.25);
	}
	28% {
		transform: translate(60px, -80px) rotate(35deg) scale(0.82);
	}
	44% {
		transform: translate(-40px, 50px) rotate(-20deg) scale(1.12);
	}
	58% {
		transform: translate(85px, -35px) rotate(26deg) scale(0.9);
	}
	72% {
		transform: translate(-65px, 45px) rotate(-32deg) scale(1.18);
	}
	86% {
		transform: translate(50px, -60px) rotate(15deg) scale(0.95);
	}
}

@keyframes float3 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	18% {
		transform: translate(70px, 85px) rotate(22deg) scale(0.88);
	}
	35% {
		transform: translate(-85px, -40px) rotate(-30deg) scale(1.22);
	}
	52% {
		transform: translate(95px, -70px) rotate(28deg) scale(0.92);
	}
	68% {
		transform: translate(-60px, 60px) rotate(-25deg) scale(1.14);
	}
	82% {
		transform: translate(55px, -45px) rotate(18deg) scale(1.05);
	}
}

/* Optical flare pulsing animations */
@keyframes flare1 {
	0%, 100% {
		filter: blur(var(--shape-blur));
	}
	50% {
		filter: blur(calc(var(--shape-blur) + 1px));
	}
}

@keyframes flare2 {
	0%, 100% {
		filter: blur(var(--shape-blur));
	}
	50% {
		filter: blur(calc(var(--shape-blur) + 2px));
	}
}

@keyframes flare3 {
	0%, 100% {
		filter: blur(var(--shape-blur));
	}
	50% {
		filter: blur(calc(var(--shape-blur) + 1.5px));
	}
}

@keyframes fadeInCenter {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 40px));
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@keyframes fadeInBottom {
	from {
		opacity: 0;
		transform: translate(-50%, 40px);
	}
	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.fullscreen-hero {
		min-height: 500px;
	}
	
	.hero-content-wrapper {
		padding: 1.5rem;
	}
	
	.hero-content-wrapper.position-bottom {
		bottom: 40px;
	}
	
	.social-icons-wrapper {
		flex-wrap: wrap;
		max-width: 90%;
		margin: 0 auto;
		row-gap: 15px;
	}
	
	.floating-shape.shape-1 {
		width: 198px;
		height: 198px;
	}
	
	.floating-shape.shape-2 {
		width: 153px;
		height: 153px;
	}
	
	.floating-shape.shape-3 {
		width: 180px;
		height: 180px;
	}
	
	.floating-shape.shape-4 {
		width: 117px;
		height: 117px;
	}
	
	.floating-shape.shape-5 {
		width: 234px;
		height: 234px;
	}
}

@media (max-width: 480px) {
	.fullscreen-hero {
		min-height: 400px;
	}
	
	.hero-content-wrapper.position-bottom {
		bottom: 30px;
	}
	
	.floating-shape.shape-1 {
		width: 144px;
		height: 144px;
	}
	
	.floating-shape.shape-2 {
		width: 117px;
		height: 117px;
	}
	
	.floating-shape.shape-3 {
		width: 135px;
		height: 135px;
	}
	
	.floating-shape.shape-4 {
		width: 90px;
		height: 90px;
	}
	
	.floating-shape.shape-5 {
		width: 171px;
		height: 171px;
	}
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	.hero-content-wrapper {
		animation: none;
	}
	
	.social-icon,
	.floating-shape {
		transition: none;
		animation: none;
	}
}