/* Font: Chewy by Font Diner - Apache License 2.0 (https://shiroko.cloud/Fonts/Chewy/LICENSE.txt) */
@font-face {
	font-family: 'Chewy';
	src: url('Fonts/Chewy/Chewy-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, a {
	font-family: "Chewy", system-ui;
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 2px 2px 4px rgba(30, 144, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.5);
}

body {
	background: linear-gradient(to bottom, #87CEEB, #B0E2FF);
	min-height: 100vh;
	overflow-x: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content {
	text-align: center;
	position: relative;
	z-index: 10;
	padding: 20px;
	max-width: 90%;
}

.logo {
	width: 200px;
	height: 200px;
	margin: 0 auto 30px;
	border-radius: 50%;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 5px solid white;
	position: relative;
	overflow: hidden;
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

h1 {
	font-size: 4rem;
	color: #1E90FF;
	text-shadow:
	3px 3px 0 #B0E2FF,
	6px 6px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
	letter-spacing: 2px;
	animation: bounce 2s ease infinite;
}

.tagline {
	font-size: 1.5rem;
	color: #4682B4;
	margin-bottom: 20px;
	text-shadow: 1px 1px 0 white;
}

/* Cloud styles and animations */
.cloud {
	position: absolute;
	background: white;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
	z-index: 1;
}

.cloud:before,
.cloud:after {
	content: '';
	position: absolute;
	background: white;
	border-radius: 50%;
}

.cloud1 {
	width: 120px;
	height: 40px;
	top: 15%;
	left: -150px;
	animation: float 35s linear infinite;
}

.cloud1:before {
	width: 50px;
	height: 50px;
	top: -20px;
	left: 15px;
}

.cloud1:after {
	width: 70px;
	height: 70px;
	top: -30px;
	left: 40px;
}

.cloud2 {
	width: 180px;
	height: 60px;
	top: 25%;
	left: -200px;
	animation: float 45s linear infinite 5s;
}

.cloud2:before {
	width: 70px;
	height: 70px;
	top: -30px;
	left: 20px;
}

.cloud2:after {
	width: 90px;
	height: 90px;
	top: -40px;
	left: 60px;
}

.cloud3 {
	width: 150px;
	height: 50px;
	top: 40%;
	left: -180px;
	animation: float 40s linear infinite 10s;
}

.cloud3:before {
	width: 60px;
	height: 60px;
	top: -25px;
	left: 15px;
}

.cloud3:after {
	width: 80px;
	height: 80px;
	top: -35px;
	left: 50px;
}

.cloud4 {
	width: 100px;
	height: 35px;
	top: 60%;
	left: -130px;
	animation: float 30s linear infinite 15s;
}

.cloud4:before {
	width: 40px;
	height: 40px;
	top: -15px;
	left: 10px;
}

.cloud4:after {
	width: 60px;
	height: 60px;
	top: -25px;
	left: 35px;
}

.cloud5 {
	width: 200px;
	height: 70px;
	top: 75%;
	left: -220px;
	animation: float 50s linear infinite 20s;
}

.cloud5:before {
	width: 80px;
	height: 80px;
	top: -35px;
	left: 25px;
}

.cloud5:after {
	width: 100px;
	height: 100px;
	top: -45px;
	left: 70px;
}

@keyframes float {
	0% {
		transform: translateX(0) translateY(0);
	}
	25% {
		transform: translateX(calc(25vw + 100px)) translateY(-10px);
	}
	50% {
		transform: translateX(calc(50vw + 200px)) translateY(0);
	}
	75% {
		transform: translateX(calc(75vw + 300px)) translateY(10px);
	}
	100% {
		transform: translateX(calc(100vw + 400px)) translateY(0);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.site-name {
		font-size: 2.5rem;
	}

	.tagline {
		font-size: 1.2rem;
	}

	.logo {
		width: 150px;
		height: 150px;
	}
}

.contact-items {
	position: relative;
	z-index: 20;
	text-align: center;
	margin-top: 40px;
}

.contact-item {
	margin: 15px 0;
	padding: 8px 20px;
	display: inline-block;
	animation: float-text 4s ease-in-out infinite;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	text-decoration: none;
	position: relative;
}

.contact-item:hover {
	transform: scale(1.15) !important;
	text-shadow:
	3px 3px 12px rgba(30, 144, 255, 0.7),
	0 0 40px rgba(255, 255, 255, 1),
	0 0 60px rgba(173, 216, 230, 0.8);
	text-shadow: 0 0 20px;
}



/* Stagger the animations for visual interest */
.contact-item:nth-child(1) { animation-delay: 0s; }
.contact-item:nth-child(2) { animation-delay: 0.5s; }
.contact-item:nth-child(3) { animation-delay: 1s; }
.contact-item:nth-child(4) { animation-delay: 1.5s; }
.contact-item:nth-child(5) { animation-delay: 2s; }

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

@media (max-width: 768px) {
	.contact-item {
		font-size: 1.2rem;
		margin: 12px 0;
		padding: 6px 15px;
	}
}

/* Friend's Contact Section */
.friend-label {
	position: absolute;
	inset-inline-start: -2rem;
	font-size: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow:
	2px 2px 8px rgba(30, 144, 255, 0.4),
	0 0 25px rgba(255, 255, 255, 0.6);
	transform: rotate(-20deg);
}

.friend-section {
	display: inline-block;
	margin-top: 3rem;
	margin-left: auto;
	margin-right: auto;
}

.friend-label span {
	display: inline-block;
	animation: float-letter 6s ease-in-out infinite;
}

/* Stagger the letter animations */
.friend-label span:nth-child(1) { animation-delay: 0.1s; }
.friend-label span:nth-child(2) { animation-delay: 0.2s; }
.friend-label span:nth-child(3) { animation-delay: 0.3s; }
.friend-label span:nth-child(4) { animation-delay: 0.4s; }
.friend-label span:nth-child(5) { animation-delay: 0.5s; }
.friend-label span:nth-child(6) { animation-delay: 0.6s; }
.friend-label span:nth-child(7) { animation-delay: 0.7s; }
.friend-label span:nth-child(8) { animation-delay: 0.8s; }
.friend-label span:nth-child(9) { animation-delay: 0.9s; }

@keyframes float-letter {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-rem) rotate(-0.5deg);
	}
	50% {
		transform: translateY(2px) rotate(0.5deg);
	}
	75% {
		transform: translateY(-2px) rotate(-0.3deg);
	}
}
