/* 
 * KitView Hero Section Styles
 * Phong cách: Shadcn UI (Centered, Borderless, Cinematic)
 * Optimized: Condensed typography & tight spacing
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
	--sh-background: #000000;
	--sh-foreground: #ffffff;
	--sh-accent: #3b82f6;
	--sh-muted: rgba(255, 255, 255, 0.6);
	--sh-radius: 0.5rem;
}

.sh-hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--sh-foreground);
	background: var(--sh-background);
	overflow: hidden;
	padding: 80px 24px;
	text-align: center;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sh-hero * {
	box-sizing: border-box;
}

/* Video Background */
.sh-video-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	filter: brightness(0.4) grayscale(0.2);
}

.sh-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}

/* Content Area */
.sh-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
	width: 100%;
	text-align: center;
}

.sh-kicker {
	color: var(--sh-accent);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
	text-align: center !important;
	width: 100% !important;
	display: block !important;
}

.sh-title {
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 24px;
	text-align: center !important;
}

.sh-description {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 600px;
	margin-inline: auto;
	text-align: center !important;
}

.sh-description p {
	margin-bottom: 1em;
}

/* Actions */
.sh-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--sh-radius);
	font-size: 14px;
	font-weight: 500;
	height: 44px;
	padding: 0 32px;
	transition: all 0.2s;
	text-decoration: none;
	cursor: pointer;
}

.sh-btn-primary {
	background-color: var(--sh-foreground);
	color: var(--sh-background);
}

.sh-btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.sh-btn-outline {
	background-color: transparent;
	color: var(--sh-foreground);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.sh-btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-1px);
}

/* Bottom Features */
.sh-features {
	position: absolute;
	bottom: 60px;
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	z-index: 10;
	padding: 0 24px;
}

.sh-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1 1 200px;
	max-width: 280px;
}

.sh-feature-num {
	font-size: 12px;
	font-weight: 700;
	color: var(--sh-accent);
}

.sh-feature-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.sh-feature-desc {
	font-size: 13px;
	color: var(--sh-muted);
	line-height: 1.4;
	margin: 0;
}

/* Animations */
.sh-animate {
	animation: sh-fade-up 0.5s ease-out forwards;
	opacity: 0;
}

@keyframes sh-fade-up {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
	.sh-features {
		position: relative;
		bottom: auto;
		flex-direction: column;
		align-items: center;
		margin-top: 60px;
		gap: 32px;
		padding: 0 24px;
	}
	.sh-hero {
		padding: 100px 24px;
		height: auto;
		min-height: 100vh;
	}
	.sh-title {
		font-size: 2.5rem;
	}
}
