/*
Theme Name: Brook
Theme URI: https://sbrook.net
Author: sbrook
Author URI: https://sbrook.net
Description: A modern and clean WordPress theme for sbrook.net
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brook
Domain Path: /languages
*/

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

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

a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #005a87;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	margin-bottom: 0.5em;
	font-weight: 700;
}

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

p {
	margin-bottom: 1em;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background-color: #f9f9f9;
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 0;
	margin-bottom: 40px;
}

header .site-title {
	font-size: 1.5em;
	margin: 0;
	color: #000;
}

header .site-description {
	font-size: 0.9em;
	color: #666;
	margin: 0.5em 0 0 0;
}

/* Navigation */
nav {
	margin-top: 20px;
}

nav a {
	display: inline-block;
	margin-right: 20px;
	padding: 8px 0;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease;
}

nav a:hover {
	border-bottom-color: #0073aa;
}

/* Main Content */
main {
	margin-bottom: 60px;
}

article {
	margin-bottom: 40px;
}

.entry-header {
	margin-bottom: 30px;
}

.entry-title {
	margin-bottom: 10px;
}

.entry-meta {
	font-size: 0.9em;
	color: #666;
	margin-bottom: 20px;
}

.entry-content {
	line-height: 1.8;
}

/* Footer */
footer {
	background-color: #f9f9f9;
	border-top: 1px solid #e0e0e0;
	padding: 40px 0;
	margin-top: 60px;
	color: #666;
	font-size: 0.9em;
}

footer a {
	color: #0073aa;
}

footer a:hover {
	color: #005a87;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

.footer-content h3 {
	margin-bottom: 15px;
	color: #000;
}

.footer-content ul {
	list-style: none;
}

.footer-content li {
	margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
	h1 { font-size: 2em; }
	h2 { font-size: 1.5em; }
	h3 { font-size: 1.25em; }
	
	nav a {
		margin-right: 10px;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
