/* Colors approximated from the screenshot */
:root {
	--bg: #5b4e77; /* purple background */
	--text-main: #ffffff; /* primary text */
	--line: #a195c8; /* divider (not used anymore, but left for future use) */
}

/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--bg);
	color: var(--text-main);
}

/* Page container */
.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Hero section */
.hero {
	margin-top: 140px; /* adjust up/down to taste */
	text-align: center;
}

/* Avatar */
.avatar-wrapper {
	width: 140px;
	height: 140px;
	margin: 0 auto 40px;
	border-radius: 50%;
	overflow: hidden;
}

.avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Title with spaced letters + brackets */
.title {
	font-size: 32px;
	letter-spacing: 0.35em;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--text-main);
	margin-bottom: 12px; /* smaller now, subtitle sits closer */
}

.subtitle {
	font-size: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.8; /* softer than the name */
	margin-bottom: 40px; /* space before the social icons */
}

.summary {
	max-width: 540px;
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.7;
	margin: 0 auto 40px;
	padding: 0 20px;
	text-align: center;
}

/* Social Icons */
.social-links {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin-bottom: 80px;
}

.social-btn {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border: 3px solid var(--text-main);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--text-main);
	font-size: 26px;
	transition: transform 0.15s ease-out, background-color 0.15s ease-out;
}

.social-btn:hover {
	transform: translateY(-2px);
	background-color: rgba(255, 255, 255, 0.06);
}

/* Mobile tweaks */
@media (max-width: 600px) {
	.hero {
		margin-top: 80px;
	}

	.title {
		font-size: 20px;
		letter-spacing: 0.35em;
	}

	.summary {
		font-size: 14px;
		max-width: 90%;
	}

	.social-links {
		gap: 18px;
	}

	.social-btn {
		width: 56px;
		height: 56px;
		font-size: 22px;
	}
}
