/**
 * Base Styles
 *
 * Base styles for the PLS HTML theme.
 * These styles are always loaded.
 *
 * @package PLS_HTML
 * @since 0.1.0
 */

/* Reset and Base */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	line-height: 1.6;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	color: #333;
	background: #fff;
}

/* Site Structure */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	padding: 2rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* Header */
.site-header {
	padding: 1rem 2rem;
	background: #fff;
	border-bottom: 1px solid #eee;
}

.site-branding {
	margin-bottom: 1rem;
}

.site-title {
	font-size: 2rem;
	font-weight: 700;
}

.site-title a {
	color: #333;
	text-decoration: none;
}

.site-title a:hover {
	color: #2271b1;
}

/* Navigation */
.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.main-navigation a {
	color: #555;
	text-decoration: none;
	font-weight: 500;
}

.main-navigation a:hover {
	color: #2271b1;
}

/* Content */
.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.entry-meta {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1rem;
}

.entry-meta span {
	margin-right: 1rem;
}

.entry-content {
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.entry-content h1 { font-size: 2rem; }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }
.entry-content h5 { font-size: 1.1rem; }
.entry-content h6 { font-size: 1rem; }

.entry-content ul,
.entry-content ol {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #eee;
	font-size: 0.9rem;
	color: #666;
}

.entry-footer span {
	margin-right: 1rem;
}

/* Footer */
.site-footer {
	padding: 2rem;
	background: #f5f5f5;
	border-top: 1px solid #eee;
	text-align: center;
	color: #666;
	font-size: 0.9rem;
}

/* Links */
a {
	color: #2271b1;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.site-header {
		padding: 1rem;
	}

	.site-main {
		padding: 1rem;
	}

	.entry-title {
		font-size: 2rem;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 1rem;
	}
}

