/* style.css */
.theme-wrapper {
	background-color: #f0f2f5;
	color: #2b3035;
	min-height: 100vh;
}

.hero-banner {
	border-top: 4px solid var(--bs-primary) !important;
}

.profile-avatar {
	width: 130px;
	height: 130px;
	object-fit: cover;
	z-index: 2;
}

.icon-wrapper {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.social-btn {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.social-btn:hover {
	background-color: var(--bs-primary);
	color: white !important;
	transform: translateY(-3px);
}

.social-btn:hover i {
	color: white !important;
}

.transition-hover {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transition-hover:hover {
	transform: translateY(-2px);
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}