/**
 * Styly pro tematické stránky (TemaPresenter)
 * Používá se pro stránky jako: Celostní přístup, Obnova energie, Podpora imunity, atd.
 */

/* Reveal animace při scrollování */
body.lp-reveal .lp-section {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
	will-change: opacity, transform;
}

body.lp-reveal .lp-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	body.lp-reveal .lp-section {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Problémové symptomy (červené boxy) */
.lp-problem-symptom {
	display: inline-block;
	padding: .4rem .9rem;
	margin: .3rem;
	background: linear-gradient(135deg, #ffe5e5, #ffcccc);
	border-left: 3px solid #d9534f;
	border-radius: 6px;
	font-size: .95rem;
	color: #c62828;
	font-weight: 500;
	box-shadow: 0 2px 4px rgba(217, 83, 79, 0.1);
}

/* Zvýraznění řešení (zelený box) */
.lp-solution-highlight {
	background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
	border: 2px solid #81c784;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

/* Barevné sekce s gradienty */
.lp-section-prirodni {
	background: linear-gradient(135deg, #fff8f0, #ffe8d6);
	border-radius: 16px;
	padding: 3.5rem 2.5rem;
	margin-bottom: 3rem;
}

.lp-section-individualni {
	background: linear-gradient(135deg, #f3e5f5, #e1bee7);
	border-radius: 16px;
	padding: 3.5rem 2.5rem;
	margin-bottom: 3rem;
}

.lp-section-sluzby {
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	border-radius: 16px;
	padding: 3.5rem 2.5rem;
	margin-bottom: 3rem;
}

.lp-section-oaza {
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	border-radius: 16px;
	padding: 3.5rem 2.5rem;
	margin-bottom: 3rem;
}

/* Responzivní odsazení pro menší obrazovky */
@media (max-width: 768px) {
	.lp-section-prirodni,
	.lp-section-individualni,
	.lp-section-sluzby,
	.lp-section-oaza {
		padding: 2rem 1.5rem;
		margin-bottom: 2rem;
	}
}

/* Value karty */
.lp-value-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.lp-value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.lp-value-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff9800, #f57c00);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 1rem;
	box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

/* Product items */
.lp-product-item {
	background: #ffffff;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all .3s ease;
}

.lp-product-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateX(4px);
}

.lp-product-icon {
	background: linear-gradient(135deg, #4caf50, #388e3c);
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-right: 1rem;
	flex-shrink: 0;
	box-shadow: 0 3px 6px rgba(76, 175, 80, 0.3);
}
