/*
Theme Name: Kadence Child
Author: 
Description: Your description goes here
Version: 1.0
Template: kadence

This is the child theme for Kadence theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

/* Start Here Page CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.learning-path-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Hero Section */
.php-hero-section {
	background: linear-gradient(135deg, rgba(92, 107, 192, 0.95), rgba(108, 92, 231, 0.95));
	color: white;
	padding: 80px 40px;
	text-align: center;
	border-radius: 12px;
	margin-bottom: 60px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.php-hero-section h1 {
	font-size: 3em;
	margin-bottom: 20px;
	font-weight: 700;
}

.php-hero-section p {
	font-size: 1.2em;
	opacity: 0.95;
	max-width: 700px;
	margin: 0 auto;
}

/* Target Audience Section */
.php-target-audience {
	background: #f8f9fa;
	padding: 50px 40px;
	border-radius: 12px;
	margin-bottom: 60px;
}

.php-target-audience h2 {
	font-size: 2.2em;
	margin-bottom: 30px;
	color: #2c3e50;
}

.php-audience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.php-audience-card {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 4px solid #5c6bc0;
}

.php-audience-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.php-audience-card-icon {
	font-size: 2em;
	margin-bottom: 15px;
}

.php-audience-card h3 {
	color: #2c3e50;
	margin-bottom: 10px;
	font-size: 1.3em;
}

.php-audience-card p {
	color: #666;
	font-size: 0.95em;
}

/* Learning Path Steps */
.php-learning-steps {
	margin-bottom: 60px;
}

.php-learning-steps > h2 {
	font-size: 2.2em;
	text-align: center;
	margin-bottom: 50px;
	color: #2c3e50;
}

.php-step-card {
	background: white;
	padding: 40px;
	margin-bottom: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	border-left: 6px solid #5c6bc0;
	transition: all 0.3s ease;
}

.php-step-card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	transform: translateX(5px);
}

.php-step-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.php-step-number {
	background: linear-gradient(135deg, #5c6bc0, #6c5ce7);
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2em;
	margin-right: 20px;
	flex-shrink: 0;
}

.php-step-card h3 {
	font-size: 1.6em;
	color: #2c3e50;
}

.php-step-subtitle {
	color: #666;
	font-size: 1em;
	margin-bottom: 15px;
	font-weight: 600;
}

.php-step-card ul {
	list-style: none;
	margin: 20px 0;
}

.php-step-card li {
	padding: 8px 0 8px 30px;
	position: relative;
	color: #555;
}

.php-step-card li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #5c6bc0;
	font-weight: bold;
	font-size: 1.2em;
}

.php-cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #5c6bc0, #6c5ce7);
	color: white;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(92, 107, 192, 0.3);
}

.php-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(92, 107, 192, 0.4);
	color: white;
}

/* Tips Section */
.php-tips-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 50px 40px;
	border-radius: 12px;
	margin-bottom: 40px;
}

.php-tips-section h2 {
	font-size: 2em;
	margin-bottom: 25px;
}

.php-tips-section ul {
	list-style: none;
}

.php-tips-section li {
	padding: 12px 0 12px 35px;
	position: relative;
	font-size: 1.1em;
}

.php-tips-section li:before {
	content: "💡";
	position: absolute;
	left: 0;
	font-size: 1.3em;
}

/* Ready Section */
.php-ready-section {
	text-align: center;
	padding: 60px 40px;
	background: #f8f9fa;
	border-radius: 12px;
}

.php-ready-section h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #2c3e50;
}

.php-ready-section p {
	font-size: 1.2em;
	color: #666;
	margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.php-hero-section h1 {
		font-size: 2em;
	}

	.php-hero-section {
		padding: 50px 25px;
	}

	.php-step-card {
		padding: 25px;
	}

	.php-step-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.php-step-number {
		margin-bottom: 15px;
	}

	.php-audience-grid {
		grid-template-columns: 1fr;
	}
}

/* Post Tutorial Main Category Page CSS */
.tutorial-archive {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.tutorial-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.tutorial-description {
  color: #555;
  max-width: 700px;
}

.tutorial-post-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.tutorial-post-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: 0.2s ease;
}

.tutorial-post-item:hover {
  border-color: #667eea;
}

.lesson-title {
  font-weight: 600;
  color: #333;
}
