/* ------------------------------------------------------------------
   KK Homepage Widget Styles
   ------------------------------------------------------------------ */

.kk-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.kk-section {
	padding: 5rem 0;
}

.kk-section__heading {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 2.2rem;
	color: #5a4630;
	margin: 0 0 1rem;
	font-weight: 600;
}

.kk-section__heading--center {
	text-align: center;
}

.kk-section__subheading {
	text-align: center;
	color: #777;
	font-size: 1.05rem;
	margin: 0 0 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.kk-section__cta {
	text-align: center;
	margin-top: 2.5rem;
}

/* ---------- Buttons ---------- */
.kk-btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.kk-btn--primary {
	background-color: #C5A355;
	color: #fff;
	border-color: #C5A355;
}

.kk-btn--primary:hover {
	background-color: #b08d3e;
	border-color: #b08d3e;
	color: #fff;
}

.kk-btn--outline {
	background: transparent;
	color: #C5A355;
	border-color: #C5A355;
}

.kk-btn--outline:hover {
	background-color: #C5A355;
	color: #fff;
}

.kk-btn--white {
	background: #fff;
	color: #5a4630;
	border-color: #fff;
}

.kk-btn--white:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

/* ============ HERO ============ */
.kk-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	overflow: hidden;
}

.kk-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.kk-hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 2rem 1.5rem;
}

.kk-hero__subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0 0 0.5rem;
}

.kk-hero__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.2;
}

.kk-hero__tagline {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2rem;
	line-height: 1.6;
}

/* ============ ABOUT ============ */
.kk-about {
	background: #fff;
}

.kk-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.kk-about--img-left .kk-about__image {
	order: -1;
}

.kk-about__text p,
.kk-about__body p {
	color: #555;
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
}

.kk-about__image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ============ FEATURES ============ */
.kk-features {
	padding: 5rem 0;
}

.kk-features__grid {
	display: grid;
	gap: 2rem;
}

.kk-feature-card {
	text-align: center;
	padding: 2rem 1.5rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kk-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.kk-feature-card__icon {
	margin: 0 auto 1.25rem;
	font-size: 2.5rem;
}

.kk-feature-card__icon svg {
	width: 56px;
	height: 56px;
}

.kk-feature-card__icon i {
	font-size: 2.5rem;
}

.kk-feature-card h3 {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.75rem;
}

.kk-feature-card p {
	font-size: 0.9rem;
	color: #777;
	margin: 0;
	line-height: 1.6;
}

/* ============ RECIPES ============ */
.kk-recipes-home {
	background: #fff;
}

.kk-recipes-home__grid {
	display: grid;
	gap: 1.5rem;
}

.kk-recipe-card-home {
	display: block;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kk-recipe-card-home:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.kk-recipe-card-home__img {
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: #f0ebe3;
}

.kk-recipe-card-home__img--placeholder {
	background: linear-gradient(135deg, #f0ebe3, #e8ddd0);
}

.kk-recipe-card-home__body {
	padding: 1rem 1.25rem 1.25rem;
}

.kk-recipe-card-home__cat {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #C5A355;
	margin-bottom: 0.4rem;
}

.kk-recipe-card-home__body h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: #333;
	margin: 0;
	line-height: 1.4;
}

.kk-recipe-card-home:hover .kk-recipe-card-home__body h3 {
	color: #C5A355;
}

/* ============ CTA BANNER ============ */
.kk-cta-banner {
	padding: 4rem 0;
	text-align: center;
}

.kk-cta-banner h2 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 2.2rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.75rem;
}

.kk-cta-banner p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.05rem;
	margin: 0 0 2rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
	.kk-hero__title {
		font-size: 2.5rem;
	}

	.kk-about__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.kk-about__image {
		order: -1;
	}

	.kk-features__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.kk-recipes-home__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 575px) {
	.kk-hero {
		min-height: 400px !important;
	}

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

	.kk-section {
		padding: 3rem 0;
	}

	.kk-section__heading {
		font-size: 1.7rem;
	}

	.kk-features__grid {
		grid-template-columns: 1fr !important;
	}

	.kk-recipes-home__grid {
		grid-template-columns: 1fr !important;
	}
}
