/*
 Theme Name:  Lilith
 Theme URI:   https://example.com/lilith
 Description: A simple, clean WordPress theme with header, content area, and footer.
 Author:      Lilith
 Version:     1.0.0
 Text Domain: lilith
*/

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

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

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

/* Header Styles */
.site-header {
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 0;
}

.site-header .site-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo img {
	max-height: 60px;
	width: auto;
	display: block;
}

/* Main Content */
.site-main {
	min-height: calc(100vh - 200px);
	padding: 10px 0;
}

/* Content Styles */
.entry-header {
	margin-bottom: 30px;
}

.entry-title {
	font-size: 2em;
	margin-bottom: 10px;
}

.entry-title a {
	text-decoration: none;
	color: inherit;
}

.entry-title a:hover {
	opacity: 0.8;
}

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

.entry-meta span {
	margin-right: 15px;
}

.entry-content,
.entry-summary {
	margin-bottom: 30px;
}

.entry-content p,
.entry-summary p {
	margin-bottom: 1em;
}

.post-thumbnail {
	margin-bottom: 30px;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.entry-footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
	font-size: 0.9em;
	color: #666;
}

.entry-footer span {
	margin-right: 20px;
}

.page-header {
	margin-bottom: 40px;
}

.page-title {
	font-size: 2.5em;
	margin-bottom: 10px;
}

.archive-description {
	color: #666;
	margin-bottom: 30px;
}

/* Navigation */
.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

.main-navigation a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.main-navigation a:hover {
	opacity: 0.7;
}

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

a:hover {
	text-decoration: underline;
}

/* Footer */
.site-footer {
	background-color: #f5f5f5;
	border-top: 1px solid #e0e0e0;
	padding: 30px 0;
	margin-top: 40px;
	text-align: center;
	color: #666;
}

/* Responsive */
@media (max-width: 768px) {
	.site-header .site-container {
		flex-direction: column;
		gap: 20px;
	}
	
	.site-main {
		padding: 20px 0;
	}
}