
:root {
	--card-bg: rgba(255, 250, 246, 0.95);
	--muted: #6b6b6b;
	--shadow: 0 10px 25px rgba(15, 15, 15, 0.12);
	--radius: 20px;
	--accent: #111;
	--glass: rgba(255, 255, 255, 0.35);
	--max-width: 900px;
}

body {
	margin: 0;
	/* font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--accent);
	/* background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 230, 230, 0.18), transparent 8%),
	radial-gradient(1000px 500px at 95% 88%, rgba(200, 230, 255, 0.18), transparent 10%),
	linear-gradient(180deg, #f6e7ff 0%, #fff0e6 40%, #efe9ff 100%); */
	display: flex;
	justify-content: center;
	padding: 48px 20px;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('./background.jpg') no-repeat center center;
	background-size: cover;
	filter: blur(10px);
	z-index: -1;
}

.card {
	width: 100%;
	max-width: var(--max-width);
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	padding: 2%;
	border-radius: var(--radius);
}

.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

h1 {
	font-size: 28px;
	margin: 0;
	font-weight: 700
}

p.subtitle {
	margin: 0;
	color: var(--muted);
	font-weight: 600
}

/* link list */
.links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 6px;
}

.link-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	box-shadow: var(--shadow);
	justify-content: space-between;
	text-decoration: none;
	color: inherit;
	transition: transform .14s ease, box-shadow .14s ease;
	position: relative;
	height: 58px;
}

.link-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(12, 12, 12, 0.14)
}

.left {
	display: flex;
	align-items: center;
	gap: 12px
}

.icon-sq {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
	box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.03);
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.icon-sq i {
	font-size: 30px;
	color: var(--accent);
}

.contact-icons i {
	font-size: 30px;
	color: var(--accent);
}

.label {
	font-weight: 600;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.kebab {
	opacity: .5
}

.contact {
	margin-top: 22px;
	color: var(--muted);
	font-weight: 700
}

.contact-icons {
	display: flex;
	gap: 22px;
	justify-content: center;
	margin-top: 12px
}

.contact-icons a {
	color: inherit;
	text-decoration: none;
	opacity: 0.95
}

/* responsive */
@media (max-width:420px) {
	:root {
	--max-width: 380px
	}
}

.hidden {
	display: none;
}

/* Banner styling: constrain width, make responsive and readable */
.banner {
	width: 100%;
	max-width: 60vw;
	/* limit banner width on large screens */
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(12, 12, 12, 0.18);
	object-fit: cover;
	display: block;
	margin: 0 auto 6px auto;
}

@media (max-width: 420px) {  /* very small screens */
	.banner {
	max-width: 340px;
	/* smaller max width on very small screens */
	}
}