/* Kebaberie hero — interactive circular slider inspired by the original site. */

.lk-hero {
	--lk-primary: #0a7968;
	--lk-blue: #007aff;
	--lk-yellow: #ffcc00;
	--lk-pink: #ffd3e0;
	--lk-size: 250px;
	position: relative;
	display: flex;
	min-height: 100svh;
	padding: clamp(104px, 12vh, 150px) 20px clamp(54px, 7vh, 80px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	isolation: isolate;
	background: #0c0c0c;
	color: #fff;
}

.lk-bg-layer {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: translateZ(0) scale(1.01);
	backface-visibility: hidden;
	will-change: opacity;
	transition: opacity 700ms ease;
}
.lk-bg-layer::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 35%, rgba(10, 121, 104, 0.18), transparent 32%),
		linear-gradient(rgba(12, 12, 12, 0.64), rgba(12, 12, 12, 0.88));
}
.lk-bg-layer.is-active {
	opacity: 1;
}

.lk-slides-wrap {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(100%, 1200px);
	align-items: center;
}

.lk-slide {
	grid-area: 1 / 1;
	width: 100%;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 14px, 0);
	backface-visibility: hidden;
	contain: layout paint style;
	will-change: opacity, transform;
	transition: opacity 440ms ease, visibility 440ms ease, transform 440ms ease;
}
.lk-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
}

.lk-title {
	max-width: 980px;
	margin: 0 auto 50px;
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(30px, 5vw, 62px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
	text-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}
.lk-slide.is-yellow .lk-title { color: var(--lk-yellow); }

.lk-circles-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 44px);
	flex-wrap: wrap;
}

.lk-item-wrap {
	position: relative;
	width: var(--lk-size);
	height: var(--lk-size);
	cursor: pointer;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	transition: transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0ms;
}
.lk-item-wrap:hover,
.lk-item-wrap:focus-within {
	z-index: 5;
	transform: translate3d(0, 0, 0) scale(1.07);
}

.lk-img-circle {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	background: #000;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
	transform: translateZ(0);
	backface-visibility: hidden;
	contain: paint;
	transition: border-color 300ms ease, box-shadow 300ms ease;
}
.lk-item-wrap:hover .lk-img-circle,
.lk-item-wrap:focus-within .lk-img-circle {
	border-color: var(--lk-primary);
	box-shadow: 0 0 38px rgba(10, 121, 104, 0.42), 0 28px 80px rgba(0, 0, 0, 0.38);
}
.lk-slide.is-yellow .lk-item-wrap:hover .lk-img-circle,
.lk-slide.is-yellow .lk-item-wrap:focus-within .lk-img-circle {
	border-color: var(--lk-yellow);
	box-shadow: 0 0 38px rgba(255, 204, 0, 0.42), 0 28px 80px rgba(0, 0, 0, 0.38);
}

.lk-img-circle img,
.lk-img-circle video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lk-img-circle img {
	transform: scale(1.02);
}

.lk-progress-ring {
	position: absolute;
	inset: -13px;
	z-index: 2;
	border-radius: 50%;
	border: 2px solid var(--lk-primary);
	opacity: 0.92;
	pointer-events: none;
}
.lk-slide.is-yellow .lk-progress-ring {
	border-color: var(--lk-yellow);
}

.lk-badge {
	position: absolute;
	top: -10px;
	left: -15px;
	z-index: 4;
	width: 82px;
	height: auto;
	filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
	pointer-events: none;
	transform: rotate(-12deg);
}

.lk-bubble {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 20px);
	z-index: 8;
	width: min(280px, 80vw);
	padding: 16px 20px;
	border-radius: 12px;
	background: var(--lk-pink);
	color: #0b0b0b;
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.58);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(8px) scale(0.88);
	transition: opacity 220ms ease, visibility 220ms ease, transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lk-bubble::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top-color: inherit;
}
.lk-bubble.is-dark {
	background: var(--lk-primary);
	color: #fff;
}
.lk-slide.is-yellow .lk-bubble.is-dark {
	background: #000;
	color: var(--lk-yellow);
}
.lk-bubble strong {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.18;
}
.lk-bubble span {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.42;
	text-transform: uppercase;
}
.lk-bubble.is-dark span { color: rgba(255, 255, 255, 0.88); }
.lk-item-wrap:hover .lk-bubble,
.lk-item-wrap:focus-within .lk-bubble {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0) scale(1);
}

.lk-subtitle {
	max-width: 720px;
	margin: 40px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(16px, 1.7vw, 20px);
	line-height: 1.5;
}

.lk-inline-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 34px;
	padding: 14px 34px;
	border-radius: 999px;
	background: var(--lk-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 16px 34px rgba(10, 121, 104, 0.34);
	transition: transform 220ms ease, filter 220ms ease;
}
.lk-inline-cta:hover,
.lk-inline-cta:focus-visible {
	transform: translateY(-3px);
	filter: brightness(1.08);
}

.lk-footer {
	position: relative;
	z-index: 2;
	display: flex;
	margin-top: 58px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.lk-reserve,
.lk-command {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 38px;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.lk-reserve {
	background: var(--lk-blue);
	box-shadow: 0 12px 24px rgba(0, 122, 255, 0.28);
}
.lk-command {
	background: var(--lk-primary);
}
.lk-reserve:hover,
.lk-reserve:focus-visible,
.lk-command:hover,
.lk-command:focus-visible {
	transform: translateY(-3px);
	filter: brightness(1.08);
}
.lk-controls {
	display: flex;
	align-items: center;
	gap: 14px;
}
.lk-arrow {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
.lk-arrow:hover,
.lk-arrow:focus-visible {
	background: var(--lk-primary);
	border-color: var(--lk-primary);
	transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
	.lk-bg-layer,
	.lk-slide,
	.lk-item-wrap,
	.lk-img-circle,
	.lk-inline-cta,
	.lk-reserve,
	.lk-command,
	.lk-arrow,
	.lk-bubble {
		transition: none;
	}
}

@media (max-width: 780px) {
	.lk-hero {
		--lk-size: 220px;
		min-height: 92svh;
		padding-top: 92px;
	}
	.lk-circles-row {
		flex-direction: column;
		gap: 42px;
	}
	.lk-item-wrap:not(.is-main) {
		display: none;
	}
	.lk-title {
		margin-bottom: 38px;
		font-size: clamp(31px, 9vw, 42px);
	}
	.lk-badge {
		width: 66px;
		top: -5px;
		left: -10px;
	}
	.lk-bubble {
		bottom: calc(100% + 16px);
	}
	.lk-footer {
		margin-top: 44px;
	}
	.lk-reserve,
	.lk-command {
		min-height: 50px;
		padding-inline: 28px;
	}
	.lk-arrow {
		width: 50px;
		height: 50px;
	}
}
