/*
Theme Name: UlightS
Theme URI: https://example.com/ulights
Author: Your Name
Author URI: https://example.com
Description: The most lightweight WordPress theme – ultra minimal, fast, and accessible.
Version: 1.0
License: GPL v2 or later
Text Domain: ulights
*/

/* ---------- Tiny Reset ---------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Responsive images */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ---------- Layout ---------- */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: #222;
	background: #fff;
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- Header & Footer ---------- */
.site-header,
.site-footer {
	padding: 1.5rem 0;
	background: #f8f8f8;
	text-align: center;
}

.site-header h1 {
	font-size: 2rem;
	font-weight: normal;
}

.site-header a {
	color: #222;
	text-decoration: none;
}

/* ---------- Logo ---------- */
.custom-logo {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto 0.5rem;
}

/* ---------- Navigation ---------- */
.site-nav {
	margin-top: 1rem;
}
.site-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
.site-nav a {
	color: #222;
	text-decoration: none;
	padding: 0.25rem 0.5rem;
}
.site-nav a:hover {
	text-decoration: underline;
}

/* ---------- Posts & Pages ---------- */
.entry-title {
	font-size: 1.8rem;
	margin: 1rem 0 0.5rem;
}

.entry-meta {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1rem;
}

.entry-content {
	margin-bottom: 2rem;
}

/* ---------- Pagination ---------- */
.pagination {
	margin: 2rem 0;
	text-align: center;
}
.pagination a,
.pagination span {
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 0 0.25rem;
	border: 1px solid #ddd;
	text-decoration: none;
	color: #222;
}
.pagination .current {
	background: #222;
	color: #fff;
	border-color: #222;
}