/* Bellora Links — minimal link-in-bio page. */

.bellora-links {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding-block: clamp(3rem, 8vh, 5rem);
	background: var(--bellora-color-surface-cream);
}

.bellora-links__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 420px;
	padding-inline: var(--bellora-layout-container-pad);
	text-align: center;
}

.bellora-links__logo {
	font-family: var(--bellora-font-display);
	font-size: var(--bellora-size-xl);
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: var(--bellora-color-heading);
}

.bellora-links__portrait {
	width: 128px;
	height: 128px;
	margin: clamp(1.5rem, 4vh, 2.25rem) 0 0;
	overflow: hidden;
	border-radius: 50%;
}

.bellora-links__portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bellora-links__tagline {
	margin: clamp(1rem, 2.4vh, 1.5rem) 0 0;
	font-family: var(--bellora-font-ui);
	font-size: 12px;
	font-weight: var(--bellora-weight-medium);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bellora-color-text-muted);
}

.bellora-links__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	width: 100%;
	margin-top: clamp(2rem, 5vh, 2.75rem);
}

.bellora-links__button {
	justify-content: center;
	width: 100%;
}

.bellora-links__socials {
	display: flex;
	justify-content: center;
	gap: 0.875rem;
	margin: clamp(2rem, 5vh, 2.75rem) 0 0;
	padding: 0;
	list-style: none;
}

.bellora-links__social {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--bellora-color-border);
	border-radius: 50%;
	font-family: var(--bellora-font-ui);
	font-size: 10px;
	font-weight: var(--bellora-weight-medium);
	letter-spacing: 0.02em;
	text-decoration: none;
	color: var(--bellora-color-heading-soft);
	transition: background var(--bellora-motion-base) var(--bellora-motion-easing),
		color var(--bellora-motion-base) var(--bellora-motion-easing),
		border-color var(--bellora-motion-base) var(--bellora-motion-easing);
}

.bellora-links__social:hover,
.bellora-links__social:focus-visible {
	background: var(--bellora-color-primary);
	border-color: var(--bellora-color-primary);
	color: var(--bellora-color-on-primary);
}
