/* Welcome Page Styles for ShortcodeGlut */

/* Hide default WP title and add custom header */
.shortcodeglut-welcome-page > h1 {
	display: none;
}

.scg-welcome-wrapper {
	max-width: 1000px;
	margin: 20px auto;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.scg-welcome-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 50px 40px;
	text-align: center;
	color: #ffffff;
}

.scg-welcome-logo {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scg-welcome-logo svg {
	width: 70px;
	height: 70px;
}

.scg-welcome-header h1 {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 10px 0;
	letter-spacing: -0.5px;
	color: #ffffff;
	display: block !important;
}

.scg-welcome-subtitle {
	font-size: 18px;
	opacity: 0.95;
	font-weight: 400;
}

.scg-welcome-content {
	padding: 40px;
}

.scg-welcome-thank-you {
	text-align: center;
	margin-bottom: 40px;
}

.scg-welcome-thank-you h2 {
	font-size: 24px;
	color: #1d2327;
	margin: 0 0 12px 0;
	font-weight: 600;
}

.scg-welcome-thank-you p {
	font-size: 15px;
	color: #475569;
	line-height: 1.6;
	max-width: 550px;
	margin: 0 auto;
}

.scg-welcome-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.scg-welcome-feature {
	text-align: center;
	padding: 24px 16px;
	background: #f8fafc;
	border-radius: 12px;
	transition: all 0.2s ease;
	border: 1px solid #e2e8f0;
}

.scg-welcome-feature:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

.scg-welcome-feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scg-welcome-feature-icon .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
	color: #ffffff;
}

.scg-welcome-feature h3 {
	font-size: 16px;
	color: #1d2327;
	margin: 0 0 8px 0;
	font-weight: 600;
}

.scg-welcome-feature p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

.scg-welcome-quick-start {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 30px;
}

.scg-welcome-quick-start h3 {
	font-size: 18px;
	color: #92400e;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.scg-welcome-quick-start h3 .dashicons {
	font-size: 22px;
}

.scg-welcome-quick-start ol {
	margin: 0 0 0 20px;
	padding: 0;
}

.scg-welcome-quick-start li {
	font-size: 14px;
	color: #78350f;
	margin-bottom: 10px;
	line-height: 1.5;
}

.scg-welcome-quick-start li:last-child {
	margin-bottom: 0;
}

.scg-welcome-quick-start code {
	background: #fffbeb;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 12px;
	color: #b45309;
	border: 1px solid #fde68a;
}

.scg-welcome-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.scg-welcome-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.scg-welcome-btn--primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.scg-welcome-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.scg-welcome-btn--secondary {
	background: #f1f5f9;
	color: #475569;
	border: 1px solid #e2e8f0;
}

.scg-welcome-btn--secondary:hover {
	background: #e2e8f0;
	border-color: #cbd5e1;
}

.scg-welcome-btn .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

@media (max-width: 1200px) {
	.scg-welcome-wrapper {
		margin: 0;
		border-radius: 0;
	}
}

@media (max-width: 782px) {
	.scg-welcome-features {
		grid-template-columns: 1fr;
	}

	.scg-welcome-header {
		padding: 40px 24px;
	}

	.scg-welcome-content {
		padding: 24px;
	}

	.scg-welcome-header h1 {
		font-size: 28px;
	}

	.scg-welcome-actions {
		flex-direction: column;
	}

	.scg-welcome-btn {
		width: 100%;
		justify-content: center;
	}
}
