/**
 * K&K Consulting Site - Home Page Styles
 *
 * Full viewport, no scroll. Everything visible on one screen.
 */

/* Force home page to fill exactly one viewport, no scroll. */
#kk-page-home {
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	margin-bottom: -200px;
}

/* ============================================
   Hero Section — fills available space
   ============================================ */
.kk-hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	padding: 0 var(--kk-gutter) 60px;
	overflow: hidden;
	text-align: center;
	background: #000000;
}

/* Background — pure black, no glow */
.kk-hero__bg-glow {
	display: none;
}

/* Hero content */
.kk-hero__content {
	position: relative;
	z-index: var(--kk-z-content);
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: var(--kk-max-width-narrow);
	width: 100%;
}

/* Logo */
.kk-hero__logo-wrap {
	margin-bottom: 40px;
}

.kk-hero__logo {
	width: 220px;
	height: 220px;
	object-fit: contain;
}

/* Title */
.kk-hero__title {
	font-family: var(--kk-font-heading);
	font-size: 3.5rem;
	font-weight: 300;
	color: var(--kk-gold);
	letter-spacing: 2px;
	line-height: 1.2;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Description */
.kk-hero__description {
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--kk-text-muted);
	max-width: 800px;
	margin-bottom: 40px;
}

/* Actions */
.kk-hero__actions {
	display: flex;
	align-items: center;
	gap: var(--kk-space-lg);
	flex-wrap: wrap;
	justify-content: center;
}

.kk-hero__actions .kk-btn {
	min-width: 240px;
	justify-content: center;
	text-align: center;
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
	.kk-hero {
		padding-bottom: 40px;
	}

	.kk-hero__logo {
		width: 160px;
		height: 160px;
	}

	.kk-hero__logo-wrap {
		margin-bottom: 24px;
	}

	.kk-hero__title {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}

	.kk-hero__description {
		font-size: 1rem;
		margin-bottom: 28px;
		padding: 0 10px;
	}
}

@media (max-width: 480px) {
	.kk-hero {
		padding-bottom: 30px;
	}

	.kk-hero__logo {
		width: 140px;
		height: 140px;
	}

	.kk-hero__title {
		font-size: 1.8rem;
	}

	.kk-hero__description {
		font-size: 0.9rem;
	}

	.kk-hero__actions {
		flex-direction: column;
		gap: 0.75rem;
	}
}
