/**
 * Public-facing styles for KingdomConnect Pro
 */

.kc-sermon-ai-content {
	margin: 40px 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.kc-sermon-tabs {
	display: flex;
	border-bottom: 2px solid #ddd;
	background: #f9f9f9;
}

.kc-tab-button {
	flex: 1;
	padding: 15px 20px;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	transition: all 0.3s ease;
	text-align: center;
}

.kc-tab-button:hover {
	background: #f0f0f0;
	color: #333;
}

.kc-tab-button.active {
	color: #0073aa;
	border-bottom-color: #0073aa;
	background: #fff;
}

.kc-sermon-tab-content {
	padding: 30px;
	background: #fff;
}

.kc-tab-panel {
	display: none;
	animation: fadeIn 0.3s ease;
}

.kc-tab-panel.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Devotional styling */
.kc-devotional-day {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.kc-devotional-day:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.kc-devotional-day h3 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #0073aa;
	font-size: 24px;
}

.kc-devotional-content {
	line-height: 1.8;
	color: #333;
}

.kc-devotional-content p {
	margin-bottom: 15px;
}

.kc-devotional-content p:last-child {
	margin-bottom: 0;
}

/* Discussion guide styling */
.kc-discussion-questions {
	margin: 0;
	padding-left: 30px;
	line-height: 1.8;
}

.kc-discussion-questions li {
	margin-bottom: 20px;
	color: #333;
	font-size: 16px;
}

.kc-discussion-questions li:last-child {
	margin-bottom: 0;
}

/* Summary styling */
#kc-tab-summary {
	line-height: 1.8;
	color: #333;
	font-size: 16px;
}

#kc-tab-summary p {
	margin-bottom: 15px;
}

#kc-tab-summary p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.kc-sermon-tabs {
		flex-direction: column;
	}

	.kc-tab-button {
		border-bottom: 1px solid #ddd;
		border-right: none;
	}

	.kc-tab-button.active {
		border-bottom-color: #0073aa;
		border-left: 3px solid #0073aa;
	}

	.kc-sermon-tab-content {
		padding: 20px;
	}

	.kc-devotional-day h3 {
		font-size: 20px;
	}
}
