/* css/blog.css - BLOG-SPECIFIC STYLES */

/* Blog Container */
.blog-container {
	display: flex;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.blog-main {
	flex: 0 0 70%;
}

.blog-sidebar {
	flex: 0 0 30%;
}

/* Blog Posts */
.blog-post {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 50px;
	border: 1px solid #eaeaea;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 25px;
	color: #666;
	font-size: 0.9rem;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.post-date,
.post-category,
.read-time,
.word-count {
	display: flex;
	align-items: center;
	gap: 5px;
}

.post-title {
	color:#2c3e50;
	margin-bottom: 25px;
	font-size: 2.4rem;
	line-height: 1.3;
	font-family: 'Merriweather', serif;
}

.featured-image {
	margin: 30px 0;
	text-align: center;
}

.featured-image img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
	text-align: center;
	font-style: italic;
	color: #666;
	margin-top: 10px;
	font-size: 0.9rem;
}

/* Headings */
h2 {
	color: white;
	margin: 35px 0 20px 0;
	font-size: 1.8rem;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

h3 {
	color: #34495e;
	margin: 30px 0 15px 0;
	font-size: 1.5rem;
}

h4 {
	color: #7f8c8d;
	margin: 25px 0 10px 0;
	font-size: 1.2rem;
}

/* FAQ Items */
.faq-item {
	background: #f8f9fa;
	padding: 25px;
	margin: 20px 0;
	border-radius: 10px;
	border-left: 4px solid #3498db;
}

.faq-item h3 {
	color: #2c3e50;
	margin-top: 0;
}

/* Scripture Box */
.scripture-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px;
	border-radius: 10px;
	margin: 40px 0;
}

.scripture-box h3 {
	color: white;
	margin-top: 0;
}

.scripture-box ul {
	list-style: none;
	padding-left: 0;
}

.scripture-box li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.scripture-box li:before {
	content: '📖';
	position: absolute;
	left: 0;
}

/* Social Sharing */
.social-sharing {
	margin: 40px 0;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 10px;
	text-align: center;
}

.share-btn {
	margin: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.share-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.facebook {
	background: #1877f2;
	color: white;
}
.twitter {
	background: #1da1f2;
	color: white;
}
.whatsapp {
	background: #25d366;
	color: white;
}
.copy {
	background: #6c757d;
	color: white;
}

/* Forms */
.question-submission,
.newsletter-signup {
	background: white;
	padding: 40px;
	border-radius: 15px;
	margin: 50px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid #eaeaea;
}

.question-submission h2,
.newsletter-signup h3 {
	margin-top: 0;
}

textarea,
input[type='text'],
input[type='email'] {
	width: 100%;
	padding: 15px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
}

textarea {
	min-height: 150px;
	resize: vertical;
}

.form-row {
	display: flex;
	gap: 15px;
	margin: 15px 0;
}

.submit-btn {
	background: #2ecc71;
	color: white;
	padding: 15px 35px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background: #27ae60;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.privacy-note,
.small-text {
	font-size: 0.9rem;
	color: #666;
	margin-top: 15px;
}

/* Sidebar Widgets */
.sidebar-widget {
	background: white;
	padding: 25px;
	margin-bottom: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #eaeaea;
}

.sidebar-widget h4 {
	margin-top: 0;
	color: #2c3e50;
}

.search-box {
	display: flex;
	gap: 10px;
}

.search-box input {
	flex: 1;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
}

.search-box button {
	background: #3498db;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 6px;
	cursor: pointer;
}

.topic-list,
.popular-posts {
	list-style: none;
	padding-left: 0;
}

.topic-list li,
.popular-posts li {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
}

.topic-list a,
.popular-posts a {
	text-decoration: none;
	color: #3498db;
	display: block;
	padding: 5px 0;
}

.topic-list a:hover,
.popular-posts a:hover {
	color: #2980b9;
	padding-left: 5px;
}

.daily-verse {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin: 15px 0;
}

.verse-text {
	font-style: italic;
	color: #2c3e50;
	line-height: 1.6;
}

.verse-ref {
	text-align: right;
	color: #666;
	margin-top: 10px;
}

.verse-link {
	display: inline-block;
	margin-top: 15px;
	color: #3498db;
	text-decoration: none;
}

.affiliate-btn {
	display: block;
	background: #f39c12;
	color: white;
	text-align: center;
	padding: 12px;
	border-radius: 6px;
	text-decoration: none;
	margin: 10px 0;
	transition: all 0.3s ease;
}

.affiliate-btn:hover {
	background: #e67e22;
	transform: translateY(-2px);
}

.social-follow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.social-btn {
	padding: 12px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

.youtube {
	background: #ff0000;
	color: white;
}
.facebook {
	background: #1877f2;
	color: white;
}
.instagram {
	background: #e4405f;
	color: white;
}
.twitter {
	background: #1da1f2;
	color: white;
}

/* Footer */
.blog-footer {
	background: #2c3e50;
	color: white;
	padding: 50px 0 20px;
	margin-top: 50px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-section {
	flex: 1;
	min-width: 250px;
}

.footer-section h5 {
	color: white;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.footer-section a {
	display: block;
	color: #bdc3c7;
	text-decoration: none;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.contact-btn {
	display: inline-block;
	background: #3498db;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	margin-top: 10px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #34495e;
	color: #95a5a6;
	font-size: 0.9rem;
}

img {
	height: 120px;
	width: auto;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
	.blog-container {
		flex-direction: column;
		padding: 10px;
	}

	.blog-main,
	.blog-sidebar {
		flex: 0 0 100%;
	}

	.blog-post {
		padding: 25px;
	}

	.post-title {
		font-size: 1.8rem;
	}

	.form-row {
		flex-direction: column;
		gap: 10px;
	}

	.footer-content {
		flex-direction: column;
	}

	.social-follow {
		grid-template-columns: 1fr;
	}
}

/* Countdown Banner */
.countdown-banner {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
	text-align: center;
}

/* Christmas Banner */
.christmas-banner {
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
	color: white;
	padding: 25px;
	border-radius: 10px;
	margin-bottom: 40px;
	text-align: center;
}

.christmas-banner h3 {
	color: white;
	margin-top: 0;
}
