/*
 * Starter Theme — Main Stylesheet
 *
 * Add your custom CSS here. This file is enqueued via wp_enqueue_scripts
 * in functions.php and loads after style.css.
 *
 * DO NOT add @import rules for external resources. Use wp_enqueue_style()
 * in functions.php for any additional stylesheets.
 */

/* -----------------------------------------------------------------------
   Base resets (minimal)
   ----------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #ffffff;
}

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

a {
	color: inherit;
}

/* -----------------------------------------------------------------------
   Layout
   ----------------------------------------------------------------------- */

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
	width: 100%;
}

/* -----------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------- */

.site-header {
	padding: 1rem;
	border-bottom: 1px solid #e5e7eb;
}

/* -----------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */

.site-footer {
	padding: 1rem;
	border-top: 1px solid #e5e7eb;
	text-align: center;
	font-size: 0.875rem;
	color: #6b7280;
}
