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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: radial-gradient(ellipse 150% 300% at 72% 50%, #ffa69e 0%, #ffa69e 5%, #fee885 28%, #fff9de 100%);
	min-height: 100vh;
	overflow: hidden;
}

.container {
	display: flex;
	height: 100vh;
	width: 100%;
}

.left-column {
	flex: 1;
	background: transparent;
	backdrop-filter: blur(10px);
	overflow-y: auto;
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.right-column {
	flex: 1;
	background: transparent;
	backdrop-filter: blur(20px);
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	/* box-shadow: -10px 0 30px rgba(17, 181, 167, 0.3); */
	position: relative;
}

.right-column::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}


.greeting {
	font-size: 3rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.greeting-line {
	display: block;
	color: #861657;
	font-size: 3rem;
	font-family: 'Annie Use Your Telescope', cursive;
	font-weight: 400;
	padding-left: 4px;
}

.greeting-name {
	margin-top: 1.2rem;
	margin-bottom: 0.4rem;
	font-size: 6.5rem;
	line-height: 0.8;
	background: linear-gradient(135deg, #45062e 0%, #861657 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-family: 'Annie Use Your Telescope', cursive;
	font-weight: 600;
}

.subtitle {
	font-size: 2.2rem;
	color: #861657;
	margin-bottom: 3rem;
	line-height: 1.5;
	position: relative;
	z-index: 2;
	font-family: 'Annie Use Your Telescope', cursive;
	padding-left: 4px;
	font-weight: 500;
}

.social-links {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: flex-start;
	width: 100%;
	position: relative;
	z-index: 2;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	background: rgba(134, 22, 87, 0.1);
	color: #861657;
	text-decoration: none;
	border-radius: 50%;
	transition: all 0.3s ease;
	border: 1px solid rgba(134, 22, 87, 0.3);
	width: 48px;
	height: 48px;
}

.social-link:hover {
	transform: translateY(-2px);
	background: rgba(134, 22, 87, 0.2);
	border-color: rgba(134, 22, 87, 0.5);
}

.social-icon {
	width: 20px;
	height: 20px;
}

.language-selector {
	position: absolute;
	top: 2rem;
	right: 2rem;
	display: flex;
	background: rgba(134, 22, 87, 0.1);
	border-radius: 25px;
	padding: 4px;
	border: 1px solid rgba(134, 22, 87, 0.3);
	z-index: 10;
}

.lang-btn {
	padding: 0.3rem 0.7rem;
	background: transparent;
	border: none;
	color: rgba(134, 22, 87, 0.7);
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.8rem;
}

.lang-btn:hover {
	color: #861657;
}

.lang-btn.active {
	background: rgba(134, 22, 87, 0.2);
	color: #861657;
}

.placeholder {
	color: rgba(134, 22, 87, 0.7);
	font-size: 1.5rem;
	text-align: center;
	font-style: italic;
}

@media (max-width: 768px) {
	body {
		background: radial-gradient(ellipse 300% 300% at 50% 30%, #ffa69e 0%, #ffa69e 5%, #fee885 28%, #fff9de 100%);
	}
	
	.container {
		flex-direction: column;
	}
	
	/* Right column appears first on mobile */
	.right-column {
		order: 1;
		flex: 1;
		height: auto;
		padding: 2rem 1rem;
	}
	
	.left-column {
		order: 2;
		flex: 1;
		padding: 1rem;
	}
	
	.greeting {
		font-size: 2rem;
		margin-top: 6rem;
	}
	
	.language-selector {
		top: 1rem;
		right: 1rem;
	}
}
