/*
Theme Name: Course Starter
Theme URI: https://simplemedia.au/course-starter
Author: Simple Media Australia
Author URI: https://simplemedia.au
Description: A minimal, performance-focused starter theme for Course Calendar Pro. Provides working examples of course archive and single course templates with clean, unstyled layouts. Designed as a developer reference and blank canvas for customization.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://simplemedia.au/license
Text Domain: course-starter
Tags: courses, education, minimal, starter-theme
*/

/**
 * Course Starter Theme
 * 
 * This is an intentionally minimal theme that demonstrates Course Calendar Pro
 * functionality without imposing design opinions. Use it as a starting point
 * for your own custom theme, or build custom templates in your page builder.
 * 
 * Version: 0.1.0
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background: #fff;
	margin: 0;
	padding: 0;
}

.site {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

a {
	color: #0073aa;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Course Styles (Minimal)
   ========================================================================== */

.course-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.course-card {
	border: 1px solid #ddd;
	padding: 1.5rem;
	border-radius: 4px;
}

.course-card h3 {
	margin-top: 0;
}

.course-meta {
	color: #666;
	font-size: 0.9rem;
	margin: 0.5rem 0;
}

.course-excerpt {
	margin: 1rem 0;
}

.course-link {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #0073aa;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
}

.course-link:hover {
	background: #005177;
	text-decoration: none;
}

/* ==========================================================================
   Version Footer
   ========================================================================== */

.theme-version {
	margin-top: 3rem;
	padding-top: 1rem;
	border-top: 1px solid #ddd;
	text-align: center;
	font-size: 0.75rem;
	color: #999;
}
