/* ------------------------------------------------------------------
   KK Pesach Landing Page
   ------------------------------------------------------------------ */

/* ============ VIDEO HERO ============ */
.kk-pesach-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: #1a0a2e;
}

.kk-pesach-hero__video,
.kk-pesach-hero__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.kk-pesach-hero__video {
	opacity: 1;
	transition: opacity 5s ease;
}

.kk-pesach-hero__poster {
	background-size: cover;
	background-position: center;
}

.kk-pesach-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		/* Lighter overlay so the video remains visible behind CTAs */
		rgba(26, 10, 46, 0.28) 0%,
		rgba(26, 10, 46, 0.18) 50%,
		rgba(26, 10, 46, 0.38) 100%
	);
	transition: opacity 5s ease;
}

.kk-pesach-hero--video-faded .kk-pesach-hero__video {
	opacity: 0;
}

.kk-pesach-hero--video-faded .kk-pesach-hero__overlay {
	opacity: 0;
}

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

.kk-pesach-hero__kicker {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #C5A355;
	margin: 0 0 0.75rem;
	font-weight: 600;
}

.kk-pesach-hero__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 4.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.kk-pesach-hero__tagline {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 2.5rem;
	line-height: 1.6;
}

.kk-pesach-hero__ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.kk-pesach-hero__ctas .kk-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.kk-btn--lg {
	padding: 0.9rem 2.2rem;
	font-size: 0.95rem;
}

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

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

.kk-pesach-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: rgba(255, 255, 255, 0.5);
	animation: kk-bounce 2s infinite;
}

@keyframes kk-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40%  { transform: translateX(-50%) translateY(-8px); }
	60%  { transform: translateX(-50%) translateY(-4px); }
}

/* ============ SECTIONS ============ */
.kk-pesach-section {
	padding: 4.5rem 0 3.5rem;
	background: #fff;
}

.kk-pesach-section--alt {
	background: #faf8f4;
}

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

.kk-pesach-section__heading em {
	font-style: normal; /* template uses <em>, keep typography consistent */
}

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

.kk-pesach-section__sub {
	color: #888;
	font-size: 1.05rem;
	margin: 0 0 2rem;
}

.kk-pesach-section__heading--center + .kk-pesach-section__sub {
	text-align: center;
}

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

/* ============ INFINITE CAROUSEL ============ */
.kk-carousel {
	overflow: hidden;
	padding: 0.5rem 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.kk-carousel__track {
	display: flex;
	gap: 1.25rem;
	width: max-content;
	will-change: transform;
}

.kk-carousel__track.is-paused {
	animation-play-state: paused !important;
}

/* ── Card base ── */
.kk-carousel__card {
	flex: 0 0 280px;
	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;
}

/* Pesach carousel wrapper: hosts the standard KK card components. */
.kk-pesach .kk-carousel-item {
	flex: 0 0 280px;
	width: 280px;
	display: block;
}

.kk-pesach .kk-carousel-item > .kk-rcard,
.kk-pesach .kk-carousel-item > .kk-ocard {
	width: 100%;
}

.kk-pesach .kk-carousel-item > .kk-rcard .kk-rcard__img-wrap {
	overflow: hidden;
}

.kk-carousel__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.kk-carousel__card-img {
	height: 190px;
	background-size: cover;
	background-position: center;
	background-color: #f0ebe3;
}

.kk-carousel__card-img--empty {
	background: linear-gradient(135deg, #f0ebe3, #e8ddd0);
}

.kk-carousel__card-img--wine {
	height: 220px;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #faf8f4;
}

.kk-carousel__card-body {
	padding: 0.9rem 1.1rem 1.1rem;
}

.kk-carousel__card-tag {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #C5A355;
	margin-bottom: 0.3rem;
}

.kk-carousel__card-body h3 {
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-carousel__card:hover h3 {
	color: #C5A355;
}

.kk-carousel__card-price {
	display: block;
	margin-top: 0.4rem;
	font-size: 1rem;
	font-weight: 700;
	color: #5a4630;
}

/* offer cards on alt bg */
.kk-pesach-section--alt .kk-carousel__card {
	background: #fff;
}

/* ============ TESTIMONIALS ============ */
.kk-pesach-section--testimonials {
	background: #faf8f4;
	padding: 5rem 0;
}

.kk-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}

.kk-testimonial {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 2rem 1.75rem 1.5rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	margin: 0;
	border-left: 3px solid #C5A355;
}

.kk-testimonial__quote {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	color: #C5A355;
}

.kk-testimonial__text {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.7;
	margin: 0 0 1.25rem;
	font-style: italic;
}

.kk-testimonial__footer {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.kk-testimonial__name {
	font-style: normal;
	font-weight: 700;
	font-size: 0.9rem;
	color: #333;
}

.kk-testimonial__location {
	font-size: 0.8rem;
	color: #999;
}

/* ============ CTA BANNER ============ */
.kk-pesach-cta {
	padding: 4.5rem 0;
	text-align: center;
	background: linear-gradient(135deg, #5a4630 0%, #3a2a1a 100%);
}

.kk-pesach-cta 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-pesach-cta h2 em {
	font-style: normal;
}

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

.kk-pesach-cta__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

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

	.kk-testimonials {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 575px) {
	.kk-pesach-hero {
		min-height: 90vh;
	}

	.kk-pesach-hero__title {
		font-size: 2.5rem;
	}

	.kk-pesach-hero__tagline {
		font-size: 1rem;
	}

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

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

	.kk-carousel__card {
		flex: 0 0 240px;
	}

	.kk-pesach .kk-carousel-item {
		flex: 0 0 240px;
		width: 240px;
	}

	.kk-pesach-cta h2 {
		font-size: 1.7rem;
	}
}
