/* Dev Session Page Specific Styles */

.dev-session-main {
	padding: 40px 0 80px;
	background-color: #1a1a1a;
	min-height: 100vh;
}

.dev-hero {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.dev-title {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.1;
}

.dev-text {
	color: #ff00ff;
}

.session-text {
	color: white;
}

.dev-subtitle {
	font-size: 1.5rem;
	color: #ccc;
	margin-bottom: 0;
}

.dev-content {
	max-width: 900px;
	margin: 0 auto;
}

.dev-section {
	margin-bottom: 60px;
	padding: 40px;
	background: #222;
	border-radius: 12px;
	border-left: 4px solid #ff00ff;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 30px;
	color: white;
}

.section-content {
	color: #ccc;
	line-height: 1.7;
}

.section-content p {
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.feature-highlight {
	background: #2a2a2a;
	padding: 25px;
	border-radius: 8px;
	margin: 30px 0;
	border: 1px solid #444;
}

.feature-highlight h3 {
	color: #ff00ff;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.feature-highlight ul {
	list-style: none;
	padding: 0;
}

.feature-highlight li {
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

.feature-highlight li::before {
	content: "⚡";
	position: absolute;
	left: 0;
	color: #ffd700;
}

.feature-highlight strong {
	color: #ffd700;
}

.design-principles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 30px 0;
}

.principle {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #444;
}

.principle h4 {
	color: #ff00ff;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.principle p {
	margin: 0;
	font-size: 1rem;
}

.challenge {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	border: 1px solid #444;
}

.challenge h4 {
	color: #ffd700;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.challenge p {
	margin: 0;
}

.art-process {
	background: #2a2a2a;
	padding: 25px;
	border-radius: 8px;
	margin: 30px 0;
	border: 1px solid #444;
}

.art-process h4 {
	color: #ff00ff;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.art-process ul {
	list-style: none;
	padding: 0;
}

.art-process li {
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

.art-process li::before {
	content: "🎨";
	position: absolute;
	left: 0;
}

.art-process strong {
	color: #ffd700;
}

.roadmap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 30px 0;
}

.roadmap-item {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #444;
}

.roadmap-item h4 {
	color: #ff00ff;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.roadmap-item p {
	margin: 0;
	font-size: 1rem;
}

.community-highlight {
	background: linear-gradient(135deg, #2a2a2a, #333);
	padding: 30px;
	border-radius: 12px;
	margin: 30px 0;
	border: 2px solid #ff00ff;
	text-align: center;
}

.community-highlight p {
	font-size: 1.2rem;
	margin-bottom: 25px;
}

.community-highlight strong {
	color: #ffd700;
}

.community-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Navigation Active State */
.nav-link.active {
	color: #ff00ff;
	font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
	.dev-session-main {
		padding: 20px 0 60px;
	}
	
	.dev-hero {
		padding: 30px 0;
		margin-bottom: 40px;
	}
	
	.dev-title {
		font-size: 2.2rem;
		line-height: 1.2;
		margin-bottom: 15px;
	}
	
	.dev-subtitle {
		font-size: 1.1rem;
	}
	
	.dev-section {
		padding: 20px;
		margin-bottom: 30px;
	}
	
	.section-title {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	
	.section-content p {
		font-size: 1rem;
		margin-bottom: 15px;
	}
	
	.feature-highlight {
		padding: 20px;
		margin: 20px 0;
	}
	
	.feature-highlight h3 {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}
	
	.feature-highlight li {
		margin-bottom: 10px;
		padding-left: 18px;
	}
	
	.design-principles,
	.roadmap {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.principle,
	.roadmap-item {
		padding: 18px;
	}
	
	.principle h4,
	.roadmap-item h4 {
		font-size: 1.1rem;
		margin-bottom: 8px;
	}
	
	.principle p,
	.roadmap-item p {
		font-size: 0.95rem;
	}
	
	.challenge {
		padding: 18px;
		margin: 15px 0;
	}
	
	.challenge h4 {
		font-size: 1.1rem;
		margin-bottom: 8px;
	}
	
	.art-process {
		padding: 20px;
		margin: 20px 0;
	}
	
	.art-process h4 {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}
	
	.art-process li {
		margin-bottom: 10px;
		padding-left: 18px;
	}
	
	.community-highlight {
		padding: 20px;
		margin: 20px 0;
	}
	
	.community-highlight p {
		font-size: 1.1rem;
		margin-bottom: 20px;
	}
	
	.community-buttons {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	
	.community-buttons .btn {
		width: 100%;
		max-width: 250px;
		padding: 15px 24px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.dev-title {
		font-size: 1.8rem;
	}
	
	.dev-subtitle {
		font-size: 1rem;
	}
	
	.dev-section {
		padding: 15px;
		margin-bottom: 25px;
	}
	
	.section-title {
		font-size: 1.2rem;
	}
	
	.feature-highlight,
	.art-process {
		padding: 15px;
		margin: 15px 0;
	}
	
	.principle,
	.roadmap-item,
	.challenge {
		padding: 15px;
	}
	
	.community-highlight {
		padding: 15px;
		margin: 15px 0;
	}
	
	.community-highlight p {
		font-size: 1rem;
		margin-bottom: 15px;
	}
	
	.community-buttons .btn {
		padding: 12px 20px;
		font-size: 15px;
	}
}
